@@ -13513,7 +13513,7 @@ NULL baz</literallayout>(3 rows)</entry>
13513
13513
<entry>No</entry>
13514
13514
<entry>input arrays concatenated into array of one higher dimension
13515
13515
(inputs must all have same dimensionality,
13516
- and cannot be empty orNULL )</entry>
13516
+ and cannot be empty ornull )</entry>
13517
13517
</row>
13518
13518
13519
13519
<row>
@@ -13537,7 +13537,7 @@ NULL baz</literallayout>(3 rows)</entry>
13537
13537
otherwise the same as the argument data type
13538
13538
</entry>
13539
13539
<entry>Yes</entry>
13540
- <entry>the average (arithmetic mean) of all input values</entry>
13540
+ <entry>the average (arithmetic mean) of allnon-null input values</entry>
13541
13541
</row>
13542
13542
13543
13543
<row>
@@ -13665,7 +13665,7 @@ NULL baz</literallayout>(3 rows)</entry>
13665
13665
<type>json</type>
13666
13666
</entry>
13667
13667
<entry>No</entry>
13668
- <entry>aggregates values as a JSON array</entry>
13668
+ <entry>aggregates values, including nulls, as a JSON array</entry>
13669
13669
</row>
13670
13670
13671
13671
<row>
@@ -13682,7 +13682,7 @@ NULL baz</literallayout>(3 rows)</entry>
13682
13682
<type>jsonb</type>
13683
13683
</entry>
13684
13684
<entry>No</entry>
13685
- <entry>aggregates values as a JSON array</entry>
13685
+ <entry>aggregates values, including nulls, as a JSON array</entry>
13686
13686
</row>
13687
13687
13688
13688
<row>
@@ -13699,7 +13699,8 @@ NULL baz</literallayout>(3 rows)</entry>
13699
13699
<type>json</type>
13700
13700
</entry>
13701
13701
<entry>No</entry>
13702
- <entry>aggregates name/value pairs as a JSON object</entry>
13702
+ <entry>aggregates name/value pairs as a JSON object; values can be
13703
+ null, but not names</entry>
13703
13704
</row>
13704
13705
13705
13706
<row>
@@ -13716,7 +13717,8 @@ NULL baz</literallayout>(3 rows)</entry>
13716
13717
<type>jsonb</type>
13717
13718
</entry>
13718
13719
<entry>No</entry>
13719
- <entry>aggregates name/value pairs as a JSON object</entry>
13720
+ <entry>aggregates name/value pairs as a JSON object; values can be
13721
+ null, but not names</entry>
13720
13722
</row>
13721
13723
13722
13724
<row>
@@ -13732,7 +13734,7 @@ NULL baz</literallayout>(3 rows)</entry>
13732
13734
<entry>Yes</entry>
13733
13735
<entry>
13734
13736
maximum value of <replaceable
13735
- class="parameter">expression</replaceable> across all input
13737
+ class="parameter">expression</replaceable> across allnon-null input
13736
13738
values
13737
13739
</entry>
13738
13740
</row>
@@ -13750,7 +13752,7 @@ NULL baz</literallayout>(3 rows)</entry>
13750
13752
<entry>Yes</entry>
13751
13753
<entry>
13752
13754
minimum value of <replaceable
13753
- class="parameter">expression</replaceable> across all input
13755
+ class="parameter">expression</replaceable> across allnon-null input
13754
13756
values
13755
13757
</entry>
13756
13758
</row>
@@ -13772,7 +13774,7 @@ NULL baz</literallayout>(3 rows)</entry>
13772
13774
same as argument types
13773
13775
</entry>
13774
13776
<entry>No</entry>
13775
- <entry>input values concatenated into a string, separated by delimiter</entry>
13777
+ <entry>non-null input values concatenated into a string, separated by delimiter</entry>
13776
13778
</row>
13777
13779
13778
13780
<row>
@@ -13795,7 +13797,8 @@ NULL baz</literallayout>(3 rows)</entry>
13795
13797
argument data type
13796
13798
</entry>
13797
13799
<entry>Yes</entry>
13798
- <entry>sum of <replaceable class="parameter">expression</replaceable> across all input values</entry>
13800
+ <entry>sum of <replaceable class="parameter">expression</replaceable>
13801
+ across all non-null input values</entry>
13799
13802
</row>
13800
13803
13801
13804
<row>
@@ -13812,7 +13815,8 @@ NULL baz</literallayout>(3 rows)</entry>
13812
13815
<type>xml</type>
13813
13816
</entry>
13814
13817
<entry>No</entry>
13815
- <entry>concatenation of XML values (see also <xref linkend="functions-xml-xmlagg"/>)</entry>
13818
+ <entry>concatenation of non-null XML values
13819
+ (see also <xref linkend="functions-xml-xmlagg"/>)</entry>
13816
13820
</row>
13817
13821
</tbody>
13818
13822
</tgroup>