@@ -14602,7 +14602,7 @@ NULL baz</literallayout>(3 rows)</entry>
14602
14602
<entry>No</entry>
14603
14603
<entry>input arrays concatenated into array of one higher dimension
14604
14604
(inputs must all have same dimensionality,
14605
- and cannot be empty or NULL )</entry>
14605
+ and cannot be empty or null )</entry>
14606
14606
</row>
14607
14607
14608
14608
<row>
@@ -14626,7 +14626,7 @@ NULL baz</literallayout>(3 rows)</entry>
14626
14626
otherwise the same as the argument data type
14627
14627
</entry>
14628
14628
<entry>Yes</entry>
14629
- <entry>the average (arithmetic mean) of all input values</entry>
14629
+ <entry>the average (arithmetic mean) of all non-null input values</entry>
14630
14630
</row>
14631
14631
14632
14632
<row>
@@ -14754,7 +14754,7 @@ NULL baz</literallayout>(3 rows)</entry>
14754
14754
<type>json</type>
14755
14755
</entry>
14756
14756
<entry>No</entry>
14757
- <entry>aggregates values as a JSON array</entry>
14757
+ <entry>aggregates values, including nulls, as a JSON array</entry>
14758
14758
</row>
14759
14759
14760
14760
<row>
@@ -14771,7 +14771,7 @@ NULL baz</literallayout>(3 rows)</entry>
14771
14771
<type>jsonb</type>
14772
14772
</entry>
14773
14773
<entry>No</entry>
14774
- <entry>aggregates values as a JSON array</entry>
14774
+ <entry>aggregates values, including nulls, as a JSON array</entry>
14775
14775
</row>
14776
14776
14777
14777
<row>
@@ -14788,7 +14788,8 @@ NULL baz</literallayout>(3 rows)</entry>
14788
14788
<type>json</type>
14789
14789
</entry>
14790
14790
<entry>No</entry>
14791
- <entry>aggregates name/value pairs as a JSON object</entry>
14791
+ <entry>aggregates name/value pairs as a JSON object; values can be
14792
+ null, but not names</entry>
14792
14793
</row>
14793
14794
14794
14795
<row>
@@ -14805,7 +14806,8 @@ NULL baz</literallayout>(3 rows)</entry>
14805
14806
<type>jsonb</type>
14806
14807
</entry>
14807
14808
<entry>No</entry>
14808
- <entry>aggregates name/value pairs as a JSON object</entry>
14809
+ <entry>aggregates name/value pairs as a JSON object; values can be
14810
+ null, but not names</entry>
14809
14811
</row>
14810
14812
14811
14813
<row>
@@ -14821,7 +14823,7 @@ NULL baz</literallayout>(3 rows)</entry>
14821
14823
<entry>Yes</entry>
14822
14824
<entry>
14823
14825
maximum value of <replaceable
14824
- class="parameter">expression</replaceable> across all input
14826
+ class="parameter">expression</replaceable> across all non-null input
14825
14827
values
14826
14828
</entry>
14827
14829
</row>
@@ -14839,7 +14841,7 @@ NULL baz</literallayout>(3 rows)</entry>
14839
14841
<entry>Yes</entry>
14840
14842
<entry>
14841
14843
minimum value of <replaceable
14842
- class="parameter">expression</replaceable> across all input
14844
+ class="parameter">expression</replaceable> across all non-null input
14843
14845
values
14844
14846
</entry>
14845
14847
</row>
@@ -14861,7 +14863,7 @@ NULL baz</literallayout>(3 rows)</entry>
14861
14863
same as argument types
14862
14864
</entry>
14863
14865
<entry>No</entry>
14864
- <entry>input values concatenated into a string, separated by delimiter</entry>
14866
+ <entry>non-null input values concatenated into a string, separated by delimiter</entry>
14865
14867
</row>
14866
14868
14867
14869
<row>
@@ -14884,7 +14886,8 @@ NULL baz</literallayout>(3 rows)</entry>
14884
14886
argument data type
14885
14887
</entry>
14886
14888
<entry>Yes</entry>
14887
- <entry>sum of <replaceable class="parameter">expression</replaceable> across all input values</entry>
14889
+ <entry>sum of <replaceable class="parameter">expression</replaceable>
14890
+ across all non-null input values</entry>
14888
14891
</row>
14889
14892
14890
14893
<row>
@@ -14901,7 +14904,8 @@ NULL baz</literallayout>(3 rows)</entry>
14901
14904
<type>xml</type>
14902
14905
</entry>
14903
14906
<entry>No</entry>
14904
- <entry>concatenation of XML values (see also <xref linkend="functions-xml-xmlagg"/>)</entry>
14907
+ <entry>concatenation of non-null XML values
14908
+ (see also <xref linkend="functions-xml-xmlagg"/>)</entry>
14905
14909
</row>
14906
14910
</tbody>
14907
14911
</tgroup>
0 commit comments