From 2d24fd942c7010247c5b7b54b416acf7f4592a4e Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 8 Oct 2024 13:52:14 -0400 Subject: Add min and max aggregates for bytea type. Similar to a0f1fce80, although we chose to duplicate logic rather than invoke byteacmp, primarily to avoid repeat detoasting. Marat Buharov, Aleksander Alekseev Discussion: https://postgr.es/m/CAPCEVGXiASjodos4P8pgyV7ixfVn-ZgG9YyiRZRbVqbGmfuDyg@mail.gmail.com --- doc/src/sgml/func.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/src') diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 7b4fbb50471..b26db3b04b0 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -22125,7 +22125,7 @@ SELECT NULLIF(value, '(none)') ... Computes the maximum of the non-null input values. Available for any numeric, string, date/time, or enum type, - as well as inet, interval, + as well as bytea, inet, interval, money, oid, pg_lsn, tid, xid8, and also arrays and composite types containing sortable data types. @@ -22144,7 +22144,7 @@ SELECT NULLIF(value, '(none)') ... Computes the minimum of the non-null input values. Available for any numeric, string, date/time, or enum type, - as well as inet, interval, + as well as bytea, inet, interval, money, oid, pg_lsn, tid, xid8, and also arrays and composite types containing sortable data types. -- cgit v1.2.3