mirror of
https://github.com/postgres/postgres.git
synced 2025-12-12 02:37:31 +03: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)
5 lines
216 B
Plaintext
5 lines
216 B
Plaintext
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;
|