@@ -135,7 +135,6 @@ SELECT pathman.create_range_partitions('test.range_rel', 'dt', '2015-01-01'::DAT
135
135
ERROR: partitioning key "dt" must be marked NOT NULL
136
136
ALTER TABLE test.range_rel ALTER COLUMN dt SET NOT NULL;
137
137
SELECT 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
139
138
create_range_partitions
140
139
-------------------------
141
140
4
@@ -157,7 +156,6 @@ CREATE TABLE test.num_range_rel (
157
156
id SERIAL PRIMARY KEY,
158
157
txt TEXT);
159
158
SELECT pathman.create_range_partitions('test.num_range_rel', 'id', 0, 1000, 4);
160
- NOTICE: sequence "num_range_rel_seq" does not exist, skipping
161
159
create_range_partitions
162
160
-------------------------
163
161
4
@@ -193,7 +191,6 @@ SELECT COUNT(*) FROM ONLY test.num_range_rel;
193
191
CREATE TABLE test.improved_dummy (id BIGSERIAL, name TEXT NOT NULL);
194
192
INSERT INTO test.improved_dummy (name) SELECT md5(g::TEXT) FROM generate_series(1, 100) as g;
195
193
SELECT pathman.create_range_partitions('test.improved_dummy', 'id', 1, 10);
196
- NOTICE: sequence "improved_dummy_seq" does not exist, skipping
197
194
create_range_partitions
198
195
-------------------------
199
196
10
@@ -336,7 +333,6 @@ NOTICE: drop cascades to 2 other objects
336
333
CREATE TABLE test.insert_into_select(val int NOT NULL);
337
334
INSERT INTO test.insert_into_select SELECT generate_series(1, 100);
338
335
SELECT pathman.create_range_partitions('test.insert_into_select', 'val', 1, 20);
339
- NOTICE: sequence "insert_into_select_seq" does not exist, skipping
340
336
create_range_partitions
341
337
-------------------------
342
338
5
@@ -394,7 +390,6 @@ NOTICE: drop cascades to 5 other objects
394
390
CREATE TABLE test.insert_date_test(val DATE NOT NULL);
395
391
SELECT pathman.create_partitions_from_range('test.insert_date_test', 'val',
396
392
date '20161001', date '20170101', interval '1 month');
397
- NOTICE: sequence "insert_date_test_seq" does not exist, skipping
398
393
create_partitions_from_range
399
394
------------------------------
400
395
4
@@ -1425,7 +1420,6 @@ CREATE TABLE test.zero(
1425
1420
value INT NOT NULL);
1426
1421
INSERT INTO test.zero SELECT g, g FROM generate_series(1, 100) as g;
1427
1422
SELECT pathman.create_range_partitions('test.zero', 'value', 50, 10, 0);
1428
- NOTICE: sequence "zero_seq" does not exist, skipping
1429
1423
create_range_partitions
1430
1424
-------------------------
1431
1425
0
@@ -1754,7 +1748,6 @@ CREATE TABLE test."RangeRel" (
1754
1748
INSERT INTO test."RangeRel" (dt, txt)
1755
1749
SELECT g, md5(g::TEXT) FROM generate_series('2015-01-01', '2015-01-03', '1 day'::interval) as g;
1756
1750
SELECT pathman.create_range_partitions('test."RangeRel"', 'dt', '2015-01-01'::DATE, '1 day'::INTERVAL);
1757
- NOTICE: sequence "RangeRel_seq" does not exist, skipping
1758
1751
create_range_partitions
1759
1752
-------------------------
1760
1753
3
@@ -2061,7 +2054,6 @@ NOTICE: drop cascades to 3 other objects
2061
2054
CREATE TABLE test.special_case_1_ind_o_s(val serial, comment text);
2062
2055
INSERT INTO test.special_case_1_ind_o_s SELECT generate_series(1, 200), NULL;
2063
2056
SELECT 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
2065
2057
create_range_partitions
2066
2058
-------------------------
2067
2059
4
@@ -2119,7 +2111,6 @@ CREATE TABLE test.index_on_childs(c1 integer not null, c2 integer);
2119
2111
CREATE INDEX ON test.index_on_childs(c2);
2120
2112
INSERT INTO test.index_on_childs SELECT i, (random()*10000)::integer FROM generate_series(1, 10000) i;
2121
2113
SELECT create_range_partitions('test.index_on_childs', 'c1', 1, 1000, 0, false);
2122
- NOTICE: sequence "index_on_childs_seq" does not exist, skipping
2123
2114
create_range_partitions
2124
2115
-------------------------
2125
2116
0
@@ -2202,6 +2193,6 @@ ORDER BY partition;
2202
2193
DROP TABLE test.provided_part_names CASCADE;
2203
2194
NOTICE: drop cascades to 2 other objects
2204
2195
DROP SCHEMA test CASCADE;
2205
- NOTICE: drop cascades to 47 other objects
2196
+ NOTICE: drop cascades to 38 other objects
2206
2197
DROP EXTENSION pg_pathman CASCADE;
2207
2198
DROP SCHEMA pathman CASCADE;
0 commit comments