11\set VERBOSITY terse
22-- is pathman (caches, in particular) strong enough to carry out this?
33SET 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
49-- wobble with create-drop ext: tests cached relids sanity
510CREATE EXTENSION pg_pathman;
611SET pg_pathman.enable = f;
@@ -14,11 +19,6 @@ CREATE EXTENSION pg_pathman;
1419DROP EXTENSION pg_pathman;
1520-- create it for further tests
1621CREATE 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
2222-- 079797e0d5
2323CREATE TABLE part_test(val serial);
2424INSERT INTO part_test SELECT generate_series(1, 30);