]> granicus.if.org Git - postgresql/blob - src/test/regress/expected/select_into.out
Remove useless whitespace at end of lines
[postgresql] / src / test / regress / expected / select_into.out
1 --
2 -- SELECT_INTO
3 --
4 SELECT *
5    INTO TABLE tmp1
6    FROM onek
7    WHERE onek.unique1 < 2;
8 DROP TABLE tmp1;
9 SELECT *
10    INTO TABLE tmp1
11    FROM onek2
12    WHERE onek2.unique1 < 2;
13 DROP TABLE tmp1;