repo.or.cz
/
PostgreSQL.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix obsolete comment regarding FSM truncation.
[PostgreSQL.git]
/
src
/
test
/
regress
/
expected
/
select_into.out
blob
503efe04fc224305c4659456bbd3affc5a0637e9
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;