Re: [PATCH] Add min/max aggregate functions to BYTEA

Поиск
Список
Период
Сортировка
От Marat Bukharov
Тема Re: [PATCH] Add min/max aggregate functions to BYTEA
Дата
Msg-id CAPCEVGVi5A65V5chbdwyh9jtsFWuz1eUR__mkPbkHL3MJtpTzA@mail.gmail.com
обсуждение исходный текст
Ответ на Re: [PATCH] Add min/max aggregate functions to BYTEA  (Aleksander Alekseev <aleksander@timescale.com>)
Список pgsql-hackers
V5 patch. I've added more tests with different bytea sizes

--

With best regards,
Marat Bukharov

чт, 4 июл. 2024 г. в 15:29, Aleksander Alekseev <aleksander@timescale.com>:
>
> 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

Вложения

В списке pgsql-hackers по дате отправления:

Предыдущее
От: Andreas Karlsson
Дата:
Сообщение: Re: Convert sepgsql tests to TAP
Следующее
От: Marat Bukharov
Дата:
Сообщение: Re: [PATCH] Add min/max aggregate functions to BYTEA