mirror of
https://github.com/postgres/postgres.git
synced 2026-02-20 00:10:16 -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
218 B
Text
4 lines
218 B
Text
select * into table temp_bench from tenk1 where (unique1 > 647) and (unique1 < 1648);
|
|
drop table temp_bench;
|
|
select * into table temp_bench from tenk1 where (unique1 > 647) and (unique1 < 1648);
|
|
drop table temp_bench;
|