@@ -14604,7 +14604,7 @@ NULL baz</literallayout>(3 rows)</entry>
14604
14604
<entry>No</entry>
14605
14605
<entry>input arrays concatenated into array of one higher dimension
14606
14606
(inputs must all have same dimensionality,
14607
- and cannot be empty or NULL )</entry>
14607
+ and cannot be empty or null )</entry>
14608
14608
</row>
14609
14609
14610
14610
<row>
@@ -14628,7 +14628,7 @@ NULL baz</literallayout>(3 rows)</entry>
14628
14628
otherwise the same as the argument data type
14629
14629
</entry>
14630
14630
<entry>Yes</entry>
14631
- <entry>the average (arithmetic mean) of all input values</entry>
14631
+ <entry>the average (arithmetic mean) of all non-null input values</entry>
14632
14632
</row>
14633
14633
14634
14634
<row>
@@ -14756,7 +14756,7 @@ NULL baz</literallayout>(3 rows)</entry>
14756
14756
<type>json</type>
14757
14757
</entry>
14758
14758
<entry>No</entry>
14759
- <entry>aggregates values as a JSON array</entry>
14759
+ <entry>aggregates values, including nulls, as a JSON array</entry>
14760
14760
</row>
14761
14761
14762
14762
<row>
@@ -14773,7 +14773,7 @@ NULL baz</literallayout>(3 rows)</entry>
14773
14773
<type>jsonb</type>
14774
14774
</entry>
14775
14775
<entry>No</entry>
14776
- <entry>aggregates values as a JSON array</entry>
14776
+ <entry>aggregates values, including nulls, as a JSON array</entry>
14777
14777
</row>
14778
14778
14779
14779
<row>
@@ -14790,7 +14790,8 @@ NULL baz</literallayout>(3 rows)</entry>
14790
14790
<type>json</type>
14791
14791
</entry>
14792
14792
<entry>No</entry>
14793
- <entry>aggregates name/value pairs as a JSON object</entry>
14793
+ <entry>aggregates name/value pairs as a JSON object; values can be
14794
+ null, but not names</entry>
14794
14795
</row>
14795
14796
14796
14797
<row>
@@ -14807,7 +14808,8 @@ NULL baz</literallayout>(3 rows)</entry>
14807
14808
<type>jsonb</type>
14808
14809
</entry>
14809
14810
<entry>No</entry>
14810
- <entry>aggregates name/value pairs as a JSON object</entry>
14811
+ <entry>aggregates name/value pairs as a JSON object; values can be
14812
+ null, but not names</entry>
14811
14813
</row>
14812
14814
14813
14815
<row>
@@ -14823,7 +14825,7 @@ NULL baz</literallayout>(3 rows)</entry>
14823
14825
<entry>Yes</entry>
14824
14826
<entry>
14825
14827
maximum value of <replaceable
14826
- class="parameter">expression</replaceable> across all input
14828
+ class="parameter">expression</replaceable> across all non-null input
14827
14829
values
14828
14830
</entry>
14829
14831
</row>
@@ -14841,7 +14843,7 @@ NULL baz</literallayout>(3 rows)</entry>
14841
14843
<entry>Yes</entry>
14842
14844
<entry>
14843
14845
minimum value of <replaceable
14844
- class="parameter">expression</replaceable> across all input
14846
+ class="parameter">expression</replaceable> across all non-null input
14845
14847
values
14846
14848
</entry>
14847
14849
</row>
@@ -14863,7 +14865,7 @@ NULL baz</literallayout>(3 rows)</entry>
14863
14865
same as argument types
14864
14866
</entry>
14865
14867
<entry>No</entry>
14866
- <entry>input values concatenated into a string, separated by delimiter</entry>
14868
+ <entry>non-null input values concatenated into a string, separated by delimiter</entry>
14867
14869
</row>
14868
14870
14869
14871
<row>
@@ -14886,7 +14888,8 @@ NULL baz</literallayout>(3 rows)</entry>
14886
14888
argument data type
14887
14889
</entry>
14888
14890
<entry>Yes</entry>
14889
- <entry>sum of <replaceable class="parameter">expression</replaceable> across all input values</entry>
14891
+ <entry>sum of <replaceable class="parameter">expression</replaceable>
14892
+ across all non-null input values</entry>
14890
14893
</row>
14891
14894
14892
14895
<row>
@@ -14903,7 +14906,8 @@ NULL baz</literallayout>(3 rows)</entry>
14903
14906
<type>xml</type>
14904
14907
</entry>
14905
14908
<entry>No</entry>
14906
- <entry>concatenation of XML values (see also <xref linkend="functions-xml-xmlagg"/>)</entry>
14909
+ <entry>concatenation of non-null XML values
14910
+ (see also <xref linkend="functions-xml-xmlagg"/>)</entry>
14907
14911
</row>
14908
14912
</tbody>
14909
14913
</tgroup>
0 commit comments