@@ -13371,7 +13371,7 @@ NULL baz</literallayout>(3 rows)</entry>
13371
13371
<entry>No</entry>
13372
13372
<entry>input arrays concatenated into array of one higher dimension
13373
13373
(inputs must all have same dimensionality,
13374
- and cannot be empty orNULL )</entry>
13374
+ and cannot be empty ornull )</entry>
13375
13375
</row>
13376
13376
13377
13377
<row>
@@ -13395,7 +13395,7 @@ NULL baz</literallayout>(3 rows)</entry>
13395
13395
otherwise the same as the argument data type
13396
13396
</entry>
13397
13397
<entry>Yes</entry>
13398
- <entry>the average (arithmetic mean) of all input values</entry>
13398
+ <entry>the average (arithmetic mean) of allnon-null input values</entry>
13399
13399
</row>
13400
13400
13401
13401
<row>
@@ -13523,7 +13523,7 @@ NULL baz</literallayout>(3 rows)</entry>
13523
13523
<type>json</type>
13524
13524
</entry>
13525
13525
<entry>No</entry>
13526
- <entry>aggregates values as a JSON array</entry>
13526
+ <entry>aggregates values, including nulls, as a JSON array</entry>
13527
13527
</row>
13528
13528
13529
13529
<row>
@@ -13540,7 +13540,7 @@ NULL baz</literallayout>(3 rows)</entry>
13540
13540
<type>jsonb</type>
13541
13541
</entry>
13542
13542
<entry>No</entry>
13543
- <entry>aggregates values as a JSON array</entry>
13543
+ <entry>aggregates values, including nulls, as a JSON array</entry>
13544
13544
</row>
13545
13545
13546
13546
<row>
@@ -13557,7 +13557,8 @@ NULL baz</literallayout>(3 rows)</entry>
13557
13557
<type>json</type>
13558
13558
</entry>
13559
13559
<entry>No</entry>
13560
- <entry>aggregates name/value pairs as a JSON object</entry>
13560
+ <entry>aggregates name/value pairs as a JSON object; values can be
13561
+ null, but not names</entry>
13561
13562
</row>
13562
13563
13563
13564
<row>
@@ -13574,7 +13575,8 @@ NULL baz</literallayout>(3 rows)</entry>
13574
13575
<type>jsonb</type>
13575
13576
</entry>
13576
13577
<entry>No</entry>
13577
- <entry>aggregates name/value pairs as a JSON object</entry>
13578
+ <entry>aggregates name/value pairs as a JSON object; values can be
13579
+ null, but not names</entry>
13578
13580
</row>
13579
13581
13580
13582
<row>
@@ -13590,7 +13592,7 @@ NULL baz</literallayout>(3 rows)</entry>
13590
13592
<entry>Yes</entry>
13591
13593
<entry>
13592
13594
maximum value of <replaceable
13593
- class="parameter">expression</replaceable> across all input
13595
+ class="parameter">expression</replaceable> across allnon-null input
13594
13596
values
13595
13597
</entry>
13596
13598
</row>
@@ -13608,7 +13610,7 @@ NULL baz</literallayout>(3 rows)</entry>
13608
13610
<entry>Yes</entry>
13609
13611
<entry>
13610
13612
minimum value of <replaceable
13611
- class="parameter">expression</replaceable> across all input
13613
+ class="parameter">expression</replaceable> across allnon-null input
13612
13614
values
13613
13615
</entry>
13614
13616
</row>
@@ -13630,7 +13632,7 @@ NULL baz</literallayout>(3 rows)</entry>
13630
13632
same as argument types
13631
13633
</entry>
13632
13634
<entry>No</entry>
13633
- <entry>input values concatenated into a string, separated by delimiter</entry>
13635
+ <entry>non-null input values concatenated into a string, separated by delimiter</entry>
13634
13636
</row>
13635
13637
13636
13638
<row>
@@ -13653,7 +13655,8 @@ NULL baz</literallayout>(3 rows)</entry>
13653
13655
argument data type
13654
13656
</entry>
13655
13657
<entry>Yes</entry>
13656
- <entry>sum of <replaceable class="parameter">expression</replaceable> across all input values</entry>
13658
+ <entry>sum of <replaceable class="parameter">expression</replaceable>
13659
+ across all non-null input values</entry>
13657
13660
</row>
13658
13661
13659
13662
<row>
@@ -13670,7 +13673,8 @@ NULL baz</literallayout>(3 rows)</entry>
13670
13673
<type>xml</type>
13671
13674
</entry>
13672
13675
<entry>No</entry>
13673
- <entry>concatenation of XML values (see also <xref linkend="functions-xml-xmlagg">)</entry>
13676
+ <entry>concatenation of non-null XML values
13677
+ (see also <xref linkend="functions-xml-xmlagg">)</entry>
13674
13678
</row>
13675
13679
</tbody>
13676
13680
</tgroup>