diff options
Diffstat (limited to 'src/test/regress/expected/select_into.out')
-rw-r--r-- | src/test/regress/expected/select_into.out | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/test/regress/expected/select_into.out b/src/test/regress/expected/select_into.out index bdc0f327af6..aa157c9eeda 100644 --- a/src/test/regress/expected/select_into.out +++ b/src/test/regress/expected/select_into.out @@ -1,10 +1,13 @@ -QUERY: SELECT * +-- +-- SELECT_INTO +-- +SELECT * INTO TABLE tmp1 FROM tmp WHERE onek.unique1 < 2; -QUERY: DROP TABLE tmp1; -QUERY: SELECT * +DROP TABLE tmp1; +SELECT * INTO TABLE tmp1 FROM tmp WHERE onek2.unique1 < 2; -QUERY: DROP TABLE tmp1; +DROP TABLE tmp1; |