summaryrefslogtreecommitdiff
path: root/src/test/regress/expected/select_distinct.out
diff options
context:
space:
mode:
authorPeter Eisentraut2009-07-11 21:15:32 +0000
committerPeter Eisentraut2009-07-11 21:15:32 +0000
commit23d830bd9aa6fd78d6b5a51433c94d4e30a1fb84 (patch)
treee68aff7af1e029c79f7742b8b3effeda0aee130f /src/test/regress/expected/select_distinct.out
parentc95db342e72f6c746e6c0b66726da8e418d8cc62 (diff)
Alter some gratuitous uses of "ANSI" when "SQL standard" might have been
meant or the reference to a standard was unnecessary.
Diffstat (limited to 'src/test/regress/expected/select_distinct.out')
-rw-r--r--src/test/regress/expected/select_distinct.out2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/expected/select_distinct.out b/src/test/regress/expected/select_distinct.out
index 3b5200b17a9..38107a04133 100644
--- a/src/test/regress/expected/select_distinct.out
+++ b/src/test/regress/expected/select_distinct.out
@@ -195,7 +195,7 @@ SELECT null IS DISTINCT FROM null as "no";
f
(1 row)
--- ANSI SQL 2003 form
+-- negated form
SELECT 1 IS NOT DISTINCT FROM 2 as "no";
no
----