From 4390b0bfbe2641ff26a35372184880348a19919e Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 2 Feb 1999 03:45:56 +0000 Subject: Add TEMP tables/indexes. Add COPY pfree(). Other cleanups. --- src/test/regress/sql/select_into.sql | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/test/regress/sql/select_into.sql') diff --git a/src/test/regress/sql/select_into.sql b/src/test/regress/sql/select_into.sql index 61569b0fe0f..8bb90b4f045 100644 --- a/src/test/regress/sql/select_into.sql +++ b/src/test/regress/sql/select_into.sql @@ -1,14 +1,14 @@ SELECT * - INTO TABLE temp1 - FROM temp + INTO TABLE tmp1 + FROM tmp WHERE onek.unique1 < 2; -DROP TABLE temp1; +DROP TABLE tmp1; SELECT * - INTO TABLE temp1 - FROM temp + INTO TABLE tmp1 + FROM tmp WHERE onek2.unique1 < 2; -DROP TABLE temp1; +DROP TABLE tmp1; -- cgit v1.2.3