Skip to content
Snippets Groups Projects
Commit f2f6c67a authored by Mario Wenzel's avatar Mario Wenzel
Browse files

renamed pg par columns

parent 0301f743
No related branches found
No related tags found
No related merge requests found
......@@ -4,9 +4,9 @@ drop table if exists par;
SET work_mem TO '1 GB';
create TEMPORARY table par(x integer not null, y integer not null);
create TEMPORARY table par(a integer not null, b integer not null);
\echo 'LOAD DATA'
\copy par from 'INSTANCE';
create index par_y on par(y);
create index par_b on par(b);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment