Skip to content

Commit 9e90d11

Browse files
committed
Remove /src/utils. Is final cleanup of getopt.c resurection.
1 parent 6d8c3d4 commit 9e90d11

File tree

4 files changed

+4
-130
lines changed

4 files changed

+4
-130
lines changed

src/test/regress/expected/join.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1788,7 +1788,7 @@ SELECT '' AS "xxx", *
17881788

17891789
SELECT '' AS "xxx", *
17901790
FROM J1_TBL FULL OUTER JOIN J2_TBL USING (i)
1791-
ORDER BY i;
1791+
ORDER BY i, t;
17921792
xxx | i | j | t | k
17931793
-----+---+---+-------+----
17941794
| 0 | | zero |
@@ -1810,7 +1810,7 @@ SELECT '' AS "xxx", *
18101810

18111811
SELECT '' AS "xxx", *
18121812
FROM J1_TBL FULL JOIN J2_TBL USING (i)
1813-
ORDER BY i;
1813+
ORDER BY i, t;
18141814
xxx | i | j | t | k
18151815
-----+---+---+-------+----
18161816
| 0 | | zero |

src/test/regress/sql/join.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,11 +181,11 @@ SELECT '' AS "xxx", *
181181

182182
SELECT '' AS "xxx", *
183183
FROM J1_TBL FULL OUTER JOIN J2_TBL USING (i)
184-
ORDER BY i;
184+
ORDER BY i, t;
185185

186186
SELECT '' AS "xxx", *
187187
FROM J1_TBL FULL JOIN J2_TBL USING (i)
188-
ORDER BY i;
188+
ORDER BY i, t;
189189

190190
SELECT '' AS "xxx", *
191191
FROM J1_TBL LEFT JOIN J2_TBL USING (i) WHERE (k = 1);

src/utils/Makefile

Lines changed: 0 additions & 18 deletions
This file was deleted.

src/utils/dllinit.c

Lines changed: 0 additions & 108 deletions
This file was deleted.

0 commit comments

Comments
 (0)