summaryrefslogtreecommitdiff
path: root/src/test/regress/expected/select_into.out
blob: 7bdc6cae2891b1069a3f97f0d19564da6ba9f93b (plain)
1
2
3
4
5
6
7
8
9
10
QUERY: SELECT *
   INTO TABLE temp1
   FROM temp
   WHERE onek.unique1 < 2;
QUERY: DROP TABLE temp1;
QUERY: SELECT *
   INTO TABLE temp1
   FROM temp
   WHERE onek2.unique1 < 2;
QUERY: DROP TABLE temp1;