Skip to content

Commit f35187b

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 2a279b6 commit f35187b

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
@@ -14621,7 +14621,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
1462114621
subquery row (including the case where the subquery returns no
1462214622
rows).
1462314623
The result is NULL if no comparison with a subquery row returns true,
14624-
and it returns NULL for at least one row.
14624+
and at least one comparison returns NULL.
1462514625
</para>
1462614626

1462714627
<para>
@@ -14647,7 +14647,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
1464714647
(including the case where the subquery returns no rows).
1464814648
The result is <quote>false</> if any false result is found.
1464914649
The result is NULL if no comparison with a subquery row returns false,
14650-
and it returns NULL for at least one row.
14650+
and at least one comparison returns NULL.
1465114651
</para>
1465214652

1465314653
<para>
@@ -14677,7 +14677,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
1467714677
The result is <quote>false</> if the comparison returns false for any
1467814678
subquery row.
1467914679
The result is NULL if no comparison with a subquery row returns false,
14680-
and it returns NULL for at least one row.
14680+
and at least one comparison returns NULL.
1468114681
</para>
1468214682

1468314683
<para>

0 commit comments

Comments
 (0)