Skip to content

Commit 72b1af0

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 060aff9 commit 72b1af0

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
@@ -13734,7 +13734,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
1373413734
subquery row (including the case where the subquery returns no
1373513735
rows).
1373613736
The result is NULL if no comparison with a subquery row returns true,
13737-
and it returns NULL for at least one row.
13737+
and at least one comparison returns NULL.
1373813738
</para>
1373913739

1374013740
<para>
@@ -13760,7 +13760,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
1376013760
(including the case where the subquery returns no rows).
1376113761
The result is <quote>false</> if any false result is found.
1376213762
The result is NULL if no comparison with a subquery row returns false,
13763-
and it returns NULL for at least one row.
13763+
and at least one comparison returns NULL.
1376413764
</para>
1376513765

1376613766
<para>
@@ -13790,7 +13790,7 @@ WHERE EXISTS (SELECT 1 FROM tab2 WHERE col2 = tab1.col2);
1379013790
The result is <quote>false</> if the comparison returns false for any
1379113791
subquery row.
1379213792
The result is NULL if no comparison with a subquery row returns false,
13793-
and it returns NULL for at least one row.
13793+
and at least one comparison returns NULL.
1379413794
</para>
1379513795

1379613796
<para>

0 commit comments

Comments
 (0)