mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-07 02:57:41 +08: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
164 B
Plaintext
5 lines
164 B
Plaintext
select min(unique2) as x into table temp_bench from tenk1;
|
|
drop table temp_bench;
|
|
select min(unique2) as x into table temp_bench from tenk1;
|
|
drop table temp_bench;
|