@@ -135,7 +135,6 @@ SELECT pathman.create_range_partitions('test.range_rel', 'dt', '2015-01-01'::DAT
135135ERROR: partitioning key "dt" must be marked NOT NULL
136136ALTER TABLE test.range_rel ALTER COLUMN dt SET NOT NULL;
137137SELECT pathman.create_range_partitions('test.range_rel', 'DT', '2015-01-01'::DATE, '1 month'::INTERVAL);
138- NOTICE: sequence "range_rel_seq" does not exist, skipping
139138 create_range_partitions
140139-------------------------
141140 4
@@ -157,7 +156,6 @@ CREATE TABLE test.num_range_rel (
157156idSERIAL PRIMARY KEY,
158157txtTEXT);
159158SELECT pathman.create_range_partitions('test.num_range_rel', 'id', 0, 1000, 4);
160- NOTICE: sequence "num_range_rel_seq" does not exist, skipping
161159 create_range_partitions
162160-------------------------
163161 4
@@ -193,7 +191,6 @@ SELECT COUNT(*) FROM ONLY test.num_range_rel;
193191CREATE TABLE test.improved_dummy (id BIGSERIAL, name TEXT NOT NULL);
194192INSERT INTO test.improved_dummy (name) SELECT md5(g::TEXT) FROM generate_series(1, 100) as g;
195193SELECT pathman.create_range_partitions('test.improved_dummy', 'id', 1, 10);
196- NOTICE: sequence "improved_dummy_seq" does not exist, skipping
197194 create_range_partitions
198195-------------------------
199196 10
@@ -336,7 +333,6 @@ NOTICE: drop cascades to 2 other objects
336333CREATE TABLE test.insert_into_select(val int NOT NULL);
337334INSERT INTO test.insert_into_select SELECT generate_series(1, 100);
338335SELECT pathman.create_range_partitions('test.insert_into_select', 'val', 1, 20);
339- NOTICE: sequence "insert_into_select_seq" does not exist, skipping
340336 create_range_partitions
341337-------------------------
342338 5
@@ -394,7 +390,6 @@ NOTICE: drop cascades to 5 other objects
394390CREATE TABLE test.insert_date_test(val DATE NOT NULL);
395391SELECT pathman.create_partitions_from_range('test.insert_date_test', 'val',
396392date '20161001', date '20170101', interval '1 month');
397- NOTICE: sequence "insert_date_test_seq" does not exist, skipping
398393 create_partitions_from_range
399394------------------------------
400395 4
@@ -1425,7 +1420,6 @@ CREATE TABLE test.zero(
14251420valueINT NOT NULL);
14261421INSERT INTO test.zero SELECT g, g FROM generate_series(1, 100) as g;
14271422SELECT pathman.create_range_partitions('test.zero', 'value', 50, 10, 0);
1428- NOTICE: sequence "zero_seq" does not exist, skipping
14291423 create_range_partitions
14301424-------------------------
14311425 0
@@ -1754,7 +1748,6 @@ CREATE TABLE test."RangeRel" (
17541748INSERT INTO test."RangeRel" (dt, txt)
17551749SELECT g, md5(g::TEXT) FROM generate_series('2015-01-01', '2015-01-03', '1 day'::interval) as g;
17561750SELECT pathman.create_range_partitions('test."RangeRel"', 'dt', '2015-01-01'::DATE, '1 day'::INTERVAL);
1757- NOTICE: sequence "RangeRel_seq" does not exist, skipping
17581751 create_range_partitions
17591752-------------------------
17601753 3
@@ -2061,7 +2054,6 @@ NOTICE: drop cascades to 3 other objects
20612054CREATE TABLE test.special_case_1_ind_o_s(val serial, comment text);
20622055INSERT INTO test.special_case_1_ind_o_s SELECT generate_series(1, 200), NULL;
20632056SELECT create_range_partitions('test.special_case_1_ind_o_s', 'val', 1, 50);
2064- NOTICE: sequence "special_case_1_ind_o_s_seq" does not exist, skipping
20652057 create_range_partitions
20662058-------------------------
20672059 4
@@ -2119,7 +2111,6 @@ CREATE TABLE test.index_on_childs(c1 integer not null, c2 integer);
21192111CREATE INDEX ON test.index_on_childs(c2);
21202112INSERT INTO test.index_on_childs SELECT i, (random()*10000)::integer FROM generate_series(1, 10000) i;
21212113SELECT create_range_partitions('test.index_on_childs', 'c1', 1, 1000, 0, false);
2122- NOTICE: sequence "index_on_childs_seq" does not exist, skipping
21232114 create_range_partitions
21242115-------------------------
21252116 0
@@ -2202,6 +2193,6 @@ ORDER BY partition;
22022193DROP TABLE test.provided_part_names CASCADE;
22032194NOTICE: drop cascades to 2 other objects
22042195DROP SCHEMA test CASCADE;
2205- NOTICE: drop cascades to47 other objects
2196+ NOTICE: drop cascades to38 other objects
22062197DROP EXTENSION pg_pathman CASCADE;
22072198DROP SCHEMA pathman CASCADE;