From: | Marat Bukharov <marat(dot)buharov(at)gmail(dot)com> |
---|---|
To: | Aleksander Alekseev <aleksander(at)timescale(dot)com> |
Cc: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: [PATCH] Add min/max aggregate functions to BYTEA |
Date: | 2024-07-05 19:43:56 |
Message-ID: | CAPCEVGXahAzUWq875T2ZnDYP=dkf+sKo7Ph74F03ZpNZvv-EiA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
What part of commitfest should I put the current patch to: "SQL
Commands", "Miscellaneous" or something else? I can't figure it out.
--
With best regards,
Marat Bukharov
> Hi Marat,
>
> > V4 path with fixed usage PG_GETARG_BYTEA_PP instead of PG_GETARG_TEXT_PP
>
> Thanks for the patch.
>
> Please add it to the nearest open commitfest [1].
>
> ```
> +select min(v) from bytea_test_table;
> + min
> +------
> + \xaa
> +(1 row)
> +
> +select max(v) from bytea_test_table;
> + max
> +------
> + \xff
> +(1 row)
> ```
>
> If I understand correctly, all the v's are of the same size. If this
> is the case you should add more test cases.
>
> [1]: https://commitfest.postgresql.org/
>
> --
> Best regards,
> Aleksander Alekseev
From | Date | Subject | |
---|---|---|---|
Next Message | Matthias van de Meent | 2024-07-05 19:45:31 | Re: Parallel CREATE INDEX for GIN indexes |
Previous Message | feichanghong | 2024-07-05 19:39:41 | Re: Optimize commit performance with a large number of 'on commit delete rows' temp tables |