File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ SELECT (COUNT(*) = (SELECT relpages FROM pg_class WHERE relname = 'test2')) AS r
109
109
DROP TABLE test1;
110
110
DROP TABLE test2;
111
111
-- Test that parallel index build produces the same BRIN index as serial build.
112
- CREATE TEMPORARY TABLE brin_parallel_test (a int, b text, c bigint) WITH (fillfactor=40);
112
+ CREATE TABLE brin_parallel_test (a int, b text, c bigint) WITH (fillfactor=40);
113
113
-- Generate a table with a mix of NULLs and non-NULL values (and data suitable
114
114
-- for the different opclasses we build later).
115
115
INSERT INTO brin_parallel_test
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ DROP TABLE test1;
56
56
DROP TABLE test2;
57
57
58
58
-- Test that parallel index build produces the same BRIN index as serial build.
59
- CREATE TEMPORARY TABLE brin_parallel_test (a int , b text , c bigint ) WITH (fillfactor= 40 );
59
+ CREATE TABLE brin_parallel_test (a int , b text , c bigint ) WITH (fillfactor= 40 );
60
60
61
61
-- Generate a table with a mix of NULLs and non-NULL values (and data suitable
62
62
-- for the different opclasses we build later).
You can’t perform that action at this time.
0 commit comments