Skip to content

Commit beceb87

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 5463deb commit beceb87

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
@@ -15050,7 +15050,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
1505015050
subquery row (including the case where the subquery returns no
1505115051
rows).
1505215052
The result is NULL if no comparison with a subquery row returns true,
15053-
and it returns NULL for at least one row.
15053+
and at least one comparison returns NULL.
1505415054
</para>
1505515055

1505615056
<para>
@@ -15076,7 +15076,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
1507615076
(including the case where the subquery returns no rows).
1507715077
The result is <quote>false</> if any false result is found.
1507815078
The result is NULL if no comparison with a subquery row returns false,
15079-
and it returns NULL for at least one row.
15079+
and at least one comparison returns NULL.
1508015080
</para>
1508115081

1508215082
<para>
@@ -15106,7 +15106,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
1510615106
The result is <quote>false</> if the comparison returns false for any
1510715107
subquery row.
1510815108
The result is NULL if no comparison with a subquery row returns false,
15109-
and it returns NULL for at least one row.
15109+
and at least one comparison returns NULL.
1511015110
</para>
1511115111

1511215112
<para>

0 commit comments

Comments
 (0)