mirror of
https://github.com/postgres/postgres.git
synced 2026-02-18 10:09:35 -05:00
- change temp -> temp_bench ("temp" is now a reserved word)
- fix bugs in queries
- add -B 256 option to run the postgres command
(without this, postgres seems to fail with hashjoin)
4 lines
216 B
Text
4 lines
216 B
Text
select * into table temp_bench from tenk1 where (unique2 > 301) and (unique2 < 402);
|
|
drop table temp_bench;
|
|
select * into table temp_bench from tenk1 where (unique2 > 301) and (unique2 < 402);
|
|
drop table temp_bench;
|