File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
\set VERBOSITY terse
2
2
-- is pathman (caches, in particular) strong enough to carry out this?
3
3
SET search_path = 'public';
4
+ -- make sure nothing breaks on disable/enable when nothing was initialized yet
5
+ SET pg_pathman.enable = false;
6
+ NOTICE: RuntimeAppend, RuntimeMergeAppend and PartitionFilter nodes and some other options have been disabled
7
+ SET pg_pathman.enable = true;
8
+ NOTICE: RuntimeAppend, RuntimeMergeAppend and PartitionFilter nodes and some other options have been enabled
4
9
-- wobble with create-drop ext: tests cached relids sanity
5
10
CREATE EXTENSION pg_pathman;
6
11
SET pg_pathman.enable = f;
@@ -14,11 +19,6 @@ CREATE EXTENSION pg_pathman;
14
19
DROP EXTENSION pg_pathman;
15
20
-- create it for further tests
16
21
CREATE EXTENSION pg_pathman;
17
- -- make sure nothing breaks on disable/enable
18
- SET pg_pathman.enable = false;
19
- NOTICE: RuntimeAppend, RuntimeMergeAppend and PartitionFilter nodes and some other options have been disabled
20
- SET pg_pathman.enable = true;
21
- NOTICE: RuntimeAppend, RuntimeMergeAppend and PartitionFilter nodes and some other options have been enabled
22
22
-- 079797e0d5
23
23
CREATE TABLE part_test(val serial);
24
24
INSERT INTO part_test SELECT generate_series(1, 30);
Original file line number Diff line number Diff line change 3
3
4
4
SET search_path = ' public' ;
5
5
6
+ -- make sure nothing breaks on disable/enable when nothing was initialized yet
7
+ SET pg_pathman .enable = false;
8
+ SET pg_pathman .enable = true;
9
+
6
10
-- wobble with create-drop ext: tests cached relids sanity
7
11
CREATE EXTENSION pg_pathman;
8
12
SET pg_pathman .enable = f;
@@ -16,10 +20,6 @@ DROP EXTENSION pg_pathman;
16
20
-- create it for further tests
17
21
CREATE EXTENSION pg_pathman;
18
22
19
- -- make sure nothing breaks on disable/enable
20
- SET pg_pathman .enable = false;
21
- SET pg_pathman .enable = true;
22
-
23
23
-- 079797e0d5
24
24
CREATE TABLE part_test (val serial );
25
25
INSERT INTO part_test SELECT generate_series(1 , 30 );
You can’t perform that action at this time.
0 commit comments