summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorBruce Momjian2002-10-30 01:15:51 +0000
committerBruce Momjian2002-10-30 01:15:51 +0000
commit9e90d118100147c474060972026558b806eabbe3 (patch)
tree5b52328e0c94c5eb821c5e72deb3be84efb48e29 /src/test
parent6d8c3d4eb3bcd7ffe55af60e02e2c64a35b5f91a (diff)
Remove /src/utils. Is final cleanup of getopt.c resurection.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/regress/expected/join.out4
-rw-r--r--src/test/regress/sql/join.sql4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/test/regress/expected/join.out b/src/test/regress/expected/join.out
index fdb6ceac999..ec40303f61c 100644
--- a/src/test/regress/expected/join.out
+++ b/src/test/regress/expected/join.out
@@ -1788,7 +1788,7 @@ SELECT '' AS "xxx", *
SELECT '' AS "xxx", *
FROM J1_TBL FULL OUTER JOIN J2_TBL USING (i)
- ORDER BY i;
+ ORDER BY i, t;
xxx | i | j | t | k
-----+---+---+-------+----
| 0 | | zero |
@@ -1810,7 +1810,7 @@ SELECT '' AS "xxx", *
SELECT '' AS "xxx", *
FROM J1_TBL FULL JOIN J2_TBL USING (i)
- ORDER BY i;
+ ORDER BY i, t;
xxx | i | j | t | k
-----+---+---+-------+----
| 0 | | zero |
diff --git a/src/test/regress/sql/join.sql b/src/test/regress/sql/join.sql
index a4df5c04ae4..98c94ac34e6 100644
--- a/src/test/regress/sql/join.sql
+++ b/src/test/regress/sql/join.sql
@@ -181,11 +181,11 @@ SELECT '' AS "xxx", *
SELECT '' AS "xxx", *
FROM J1_TBL FULL OUTER JOIN J2_TBL USING (i)
- ORDER BY i;
+ ORDER BY i, t;
SELECT '' AS "xxx", *
FROM J1_TBL FULL JOIN J2_TBL USING (i)
- ORDER BY i;
+ ORDER BY i, t;
SELECT '' AS "xxx", *
FROM J1_TBL LEFT JOIN J2_TBL USING (i) WHERE (k = 1);