diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 0417f2a2f65..6d7c2afe8fc 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -12467,7 +12467,7 @@ NULL baz(3 rows) input arrays concatenated into array of one higher dimension (inputs must all have same dimensionality, - and cannot be empty or NULL) + and cannot be empty or null) @@ -12490,7 +12490,7 @@ NULL baz(3 rows) double precision for a floating-point argument, otherwise the same as the argument data type - the average (arithmetic mean) of all input values + the average (arithmetic mean) of all non-null input values @@ -12610,7 +12610,7 @@ NULL baz(3 rows) json - aggregates values as a JSON array + aggregates values, including nulls, as a JSON array @@ -12626,7 +12626,7 @@ NULL baz(3 rows) jsonb - aggregates values as a JSON array + aggregates values, including nulls, as a JSON array @@ -12642,7 +12642,8 @@ NULL baz(3 rows) json - aggregates name/value pairs as a JSON object + aggregates name/value pairs as a JSON object; values can be + null, but not names @@ -12658,7 +12659,8 @@ NULL baz(3 rows) jsonb - aggregates name/value pairs as a JSON object + aggregates name/value pairs as a JSON object; values can be + null, but not names @@ -12673,7 +12675,7 @@ NULL baz(3 rows) same as argument type maximum value of expression across all input + class="parameter">expression across all non-null input values @@ -12690,7 +12692,7 @@ NULL baz(3 rows) same as argument type minimum value of expression across all input + class="parameter">expression across all non-null input values @@ -12711,7 +12713,7 @@ NULL baz(3 rows) same as argument types - input values concatenated into a string, separated by delimiter + non-null input values concatenated into a string, separated by delimiter @@ -12733,7 +12735,8 @@ NULL baz(3 rows) bigint arguments, otherwise the same as the argument data type - sum of expression across all input values + sum of expression + across all non-null input values @@ -12749,7 +12752,8 @@ NULL baz(3 rows) xml - concatenation of XML values (see also ) + concatenation of non-null XML values + (see also )