Skip to content

Commit 471ae73

Browse files
committed
docs: adjust simpler language for NULL return from ANY/ALL
Adjustment to commit 8610c97. Reported-by: Tom Lane Discussion: https://postgr.es/m/17406.1541168421@sss.pgh.pa.us Backpatch-through: 9.3
1 parent 7fc0c4c commit 471ae73

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/src/sgml/func.sgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12849,7 +12849,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
1284912849
subquery row (including the case where the subquery returns no
1285012850
rows).
1285112851
The result is NULL if no comparison with a subquery row returns true,
12852-
and it returns NULL for at least one row.
12852+
and at least one comparison returns NULL.
1285312853
</para>
1285412854

1285512855
<para>
@@ -12875,7 +12875,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
1287512875
(including the case where the subquery returns no rows).
1287612876
The result is <quote>false</> if any false result is found.
1287712877
The result is NULL if no comparison with a subquery row returns false,
12878-
and it returns NULL for at least one row.
12878+
and at least one comparison returns NULL.
1287912879
</para>
1288012880

1288112881
<para>
@@ -12905,7 +12905,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
1290512905
The result is <quote>false</> if the comparison returns false for any
1290612906
subquery row.
1290712907
The result is NULL if no comparison with a subquery row returns false,
12908-
and it returns NULL for at least one row.
12908+
and at least one comparison returns NULL.
1290912909
</para>
1291012910

1291112911
<para>

0 commit comments

Comments
 (0)