1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-26 23:43:30 +03:00

Remove /src/utils. Is final cleanup of getopt.c resurection.

This commit is contained in:
Bruce Momjian
2002-10-30 01:15:51 +00:00
parent 6d8c3d4eb3
commit 9e90d11810
4 changed files with 4 additions and 130 deletions

View File

@@ -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 |

View File

@@ -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);