@@ -257,7 +257,7 @@ EXPLAIN (COSTS OFF) SELECT * FROM test.improved_dummy WHERE id = 101 OR id = 5 A
257
257
(5 rows)
258
258
259
259
DROP TABLE test.improved_dummy CASCADE;
260
- NOTICE: drop cascades to 11 other objects
260
+ NOTICE: drop cascades to 12 other objects
261
261
/* since rel_1_4_beta: check create_range_partitions(bounds array) */
262
262
CREATE TABLE test.improved_dummy (val INT NOT NULL);
263
263
SELECT pathman.create_range_partitions('test.improved_dummy', 'val',
@@ -328,7 +328,7 @@ ORDER BY partition;
328
328
(2 rows)
329
329
330
330
DROP TABLE test.improved_dummy CASCADE;
331
- NOTICE: drop cascades to 2 other objects
331
+ NOTICE: drop cascades to 3 other objects
332
332
/* Test pathman_rel_pathlist_hook() with INSERT query */
333
333
CREATE TABLE test.insert_into_select(val int NOT NULL);
334
334
INSERT INTO test.insert_into_select SELECT generate_series(1, 100);
@@ -385,7 +385,7 @@ SELECT count(*) FROM test.insert_into_select_copy;
385
385
(1 row)
386
386
387
387
DROP TABLE test.insert_into_select_copy, test.insert_into_select CASCADE;
388
- NOTICE: drop cascades to 5 other objects
388
+ NOTICE: drop cascades to 6 other objects
389
389
/* Test INSERT hooking with DATE type */
390
390
CREATE TABLE test.insert_date_test(val DATE NOT NULL);
391
391
SELECT 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 */
429
429
(1 row)
430
430
431
431
DROP TABLE test.insert_date_test CASCADE;
432
- NOTICE: drop cascades to 8 other objects
432
+ NOTICE: drop cascades to 9 other objects
433
433
SET pg_pathman.enable_runtimeappend = OFF;
434
434
SET pg_pathman.enable_runtimemergeappend = OFF;
435
435
VACUUM;
@@ -1454,7 +1454,7 @@ SELECT pathman.split_range_partition('test.zero_50', 60, 'test.zero_60');
1454
1454
(1 row)
1455
1455
1456
1456
DROP TABLE test.zero CASCADE;
1457
- NOTICE: drop cascades to 4 other objects
1457
+ NOTICE: drop cascades to 5 other objects
1458
1458
/*
1459
1459
* Check that altering table columns doesn't break trigger
1460
1460
*/
@@ -1562,7 +1562,7 @@ NOTICE: 1000 rows copied from test.num_range_rel_3
1562
1562
1563
1563
DROP TABLE test.num_range_rel CASCADE;
1564
1564
DROP TABLE test.range_rel CASCADE;
1565
- NOTICE: drop cascades to 9 other objects
1565
+ NOTICE: drop cascades to 10 other objects
1566
1566
/* Test automatic partition creation */
1567
1567
CREATE TABLE test.range_rel (
1568
1568
id SERIAL PRIMARY KEY,
@@ -1633,7 +1633,7 @@ SELECT * FROM pathman.pathman_config;
1633
1633
(1 row)
1634
1634
1635
1635
DROP TABLE test.range_rel CASCADE;
1636
- NOTICE: drop cascades to 20 other objects
1636
+ NOTICE: drop cascades to 21 other objects
1637
1637
SELECT * FROM pathman.pathman_config;
1638
1638
partrel | expr | parttype | range_interval | cooked_expr
1639
1639
---------+------+----------+----------------+-------------
@@ -1795,7 +1795,7 @@ SELECT pathman.create_partitions_from_range('test."RangeRel"', 'dt', '2015-01-01
1795
1795
(1 row)
1796
1796
1797
1797
DROP TABLE test."RangeRel" CASCADE;
1798
- NOTICE: drop cascades to 5 other objects
1798
+ NOTICE: drop cascades to 6 other objects
1799
1799
SELECT * FROM pathman.pathman_config;
1800
1800
partrel | expr | parttype | range_interval | cooked_expr
1801
1801
--------------------+------+----------+----------------+------------------------------------------------------------------------------------------------------------------------
@@ -1828,7 +1828,7 @@ SELECT pathman.create_partitions_from_range('test."RangeRel"', 'id', 1, 300, 100
1828
1828
(1 row)
1829
1829
1830
1830
DROP TABLE test."RangeRel" CASCADE;
1831
- NOTICE: drop cascades to 3 other objects
1831
+ NOTICE: drop cascades to 4 other objects
1832
1832
DROP EXTENSION pg_pathman;
1833
1833
/* Test that everything works fine without schemas */
1834
1834
CREATE EXTENSION pg_pathman;
@@ -2193,6 +2193,6 @@ ORDER BY partition;
2193
2193
DROP TABLE test.provided_part_names CASCADE;
2194
2194
NOTICE: drop cascades to 2 other objects
2195
2195
DROP SCHEMA test CASCADE;
2196
- NOTICE: drop cascades to 38 other objects
2196
+ NOTICE: drop cascades to 42 other objects
2197
2197
DROP EXTENSION pg_pathman CASCADE;
2198
2198
DROP SCHEMA pathman CASCADE;
0 commit comments