@@ -257,7 +257,7 @@ EXPLAIN (COSTS OFF) SELECT * FROM test.improved_dummy WHERE id = 101 OR id = 5 A
257257(5 rows)
258258
259259DROP TABLE test.improved_dummy CASCADE;
260- NOTICE: drop cascades to11 other objects
260+ NOTICE: drop cascades to12 other objects
261261/* since rel_1_4_beta: check create_range_partitions(bounds array) */
262262CREATE TABLE test.improved_dummy (val INT NOT NULL);
263263SELECT pathman.create_range_partitions('test.improved_dummy', 'val',
@@ -328,7 +328,7 @@ ORDER BY partition;
328328(2 rows)
329329
330330DROP TABLE test.improved_dummy CASCADE;
331- NOTICE: drop cascades to2 other objects
331+ NOTICE: drop cascades to3 other objects
332332/* Test pathman_rel_pathlist_hook() with INSERT query */
333333CREATE TABLE test.insert_into_select(val int NOT NULL);
334334INSERT INTO test.insert_into_select SELECT generate_series(1, 100);
@@ -385,7 +385,7 @@ SELECT count(*) FROM test.insert_into_select_copy;
385385(1 row)
386386
387387DROP TABLE test.insert_into_select_copy, test.insert_into_select CASCADE;
388- NOTICE: drop cascades to5 other objects
388+ NOTICE: drop cascades to6 other objects
389389/* Test INSERT hooking with DATE type */
390390CREATE TABLE test.insert_date_test(val DATE NOT NULL);
391391SELECT pathman.create_partitions_from_range('test.insert_date_test', 'val',
@@ -429,7 +429,7 @@ SELECT max(val) FROM test.insert_date_test; /* check last date */
429429(1 row)
430430
431431DROP TABLE test.insert_date_test CASCADE;
432- NOTICE: drop cascades to8 other objects
432+ NOTICE: drop cascades to9 other objects
433433SET pg_pathman.enable_runtimeappend = OFF;
434434SET pg_pathman.enable_runtimemergeappend = OFF;
435435VACUUM;
@@ -1454,7 +1454,7 @@ SELECT pathman.split_range_partition('test.zero_50', 60, 'test.zero_60');
14541454(1 row)
14551455
14561456DROP TABLE test.zero CASCADE;
1457- NOTICE: drop cascades to4 other objects
1457+ NOTICE: drop cascades to5 other objects
14581458/*
14591459 * Check that altering table columns doesn't break trigger
14601460 */
@@ -1562,7 +1562,7 @@ NOTICE: 1000 rows copied from test.num_range_rel_3
15621562
15631563DROP TABLE test.num_range_rel CASCADE;
15641564DROP TABLE test.range_rel CASCADE;
1565- NOTICE: drop cascades to9 other objects
1565+ NOTICE: drop cascades to10 other objects
15661566/* Test automatic partition creation */
15671567CREATE TABLE test.range_rel (
15681568idSERIAL PRIMARY KEY,
@@ -1633,7 +1633,7 @@ SELECT * FROM pathman.pathman_config;
16331633(1 row)
16341634
16351635DROP TABLE test.range_rel CASCADE;
1636- NOTICE: drop cascades to20 other objects
1636+ NOTICE: drop cascades to21 other objects
16371637SELECT * FROM pathman.pathman_config;
16381638 partrel | expr | parttype | range_interval | cooked_expr
16391639---------+------+----------+----------------+-------------
@@ -1795,7 +1795,7 @@ SELECT pathman.create_partitions_from_range('test."RangeRel"', 'dt', '2015-01-01
17951795(1 row)
17961796
17971797DROP TABLE test."RangeRel" CASCADE;
1798- NOTICE: drop cascades to5 other objects
1798+ NOTICE: drop cascades to6 other objects
17991799SELECT * FROM pathman.pathman_config;
18001800 partrel | expr | parttype | range_interval | cooked_expr
18011801--------------------+------+----------+----------------+------------------------------------------------------------------------------------------------------------------------
@@ -1828,7 +1828,7 @@ SELECT pathman.create_partitions_from_range('test."RangeRel"', 'id', 1, 300, 100
18281828(1 row)
18291829
18301830DROP TABLE test."RangeRel" CASCADE;
1831- NOTICE: drop cascades to3 other objects
1831+ NOTICE: drop cascades to4 other objects
18321832DROP EXTENSION pg_pathman;
18331833/* Test that everything works fine without schemas */
18341834CREATE EXTENSION pg_pathman;
@@ -2193,6 +2193,6 @@ ORDER BY partition;
21932193DROP TABLE test.provided_part_names CASCADE;
21942194NOTICE: drop cascades to 2 other objects
21952195DROP SCHEMA test CASCADE;
2196- NOTICE: drop cascades to38 other objects
2196+ NOTICE: drop cascades to42 other objects
21972197DROP EXTENSION pg_pathman CASCADE;
21982198DROP SCHEMA pathman CASCADE;