summaryrefslogtreecommitdiff
path: root/src/test/regress/expected/join.out
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-01-15 19:18:24 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-01-15 19:18:24 +0000
commit5e6004135b5bdcd4197ff0275d77ca2a3b08e8c7 (patch)
tree25dcc58c86fce1606638d7b3ee29401f0e58065a /src/test/regress/expected/join.out
parent6ce5e0abb67add892c5d726a5fdfe7aed686c1af (diff)
downloadpostgresql-5e6004135b5bdcd4197ff0275d77ca2a3b08e8c7.tar.gz
Now that new psql is fflush()'ing properly, it emerges that several
regress test expected outputs were committed with NOTICEs appearing out of order. Update to correct results.
Diffstat (limited to 'src/test/regress/expected/join.out')
-rw-r--r--src/test/regress/expected/join.out8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/regress/expected/join.out b/src/test/regress/expected/join.out
index 1245847a96..2a3fb1b68b 100644
--- a/src/test/regress/expected/join.out
+++ b/src/test/regress/expected/join.out
@@ -127,20 +127,20 @@ ERROR: JOIN expressions are not yet implemented
-- Outer joins
--
SELECT '' AS "xxx", *
-NOTICE: OUTER JOIN not yet implemented
FROM JOIN1_TBL OUTER JOIN JOIN2_TBL USING (i);
+NOTICE: OUTER JOIN not yet implemented
ERROR: JOIN expressions are not yet implemented
SELECT '' AS "xxx", *
-NOTICE: LEFT OUTER JOIN not yet implemented
FROM JOIN1_TBL LEFT OUTER JOIN JOIN2_TBL USING (i);
+NOTICE: LEFT OUTER JOIN not yet implemented
ERROR: JOIN expressions are not yet implemented
SELECT '' AS "xxx", *
-NOTICE: RIGHT OUTER JOIN not yet implemented
FROM JOIN1_TBL RIGHT OUTER JOIN JOIN2_TBL USING (i);
+NOTICE: RIGHT OUTER JOIN not yet implemented
ERROR: JOIN expressions are not yet implemented
SELECT '' AS "xxx", *
-NOTICE: FULL OUTER JOIN not yet implemented
FROM JOIN1_TBL FULL OUTER JOIN JOIN2_TBL USING (i);
+NOTICE: FULL OUTER JOIN not yet implemented
ERROR: JOIN expressions are not yet implemented
--
-- More complicated constructs