diff options
author | Bruce Momjian | 1999-02-02 03:45:56 +0000 |
---|---|---|
committer | Bruce Momjian | 1999-02-02 03:45:56 +0000 |
commit | 4390b0bfbe2641ff26a35372184880348a19919e (patch) | |
tree | 52ab7a8a528648da52a995b86aac321e6602698f /src/test/regress/sql/select_into.sql | |
parent | 7fc75517df6b8f70c57b95e879fd9696935c22fd (diff) |
Add TEMP tables/indexes. Add COPY pfree(). Other cleanups.
Diffstat (limited to 'src/test/regress/sql/select_into.sql')
-rw-r--r-- | src/test/regress/sql/select_into.sql | 12 |
1 files changed, 6 insertions, 6 deletions
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; |