Skip to content

Commit 7293034

Browse files
committed
Fix tests
1 parent 8135456 commit 7293034

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

expected/pathman_update_node.out

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ CREATE TABLE test_update_node.test_range(val NUMERIC NOT NULL, comment TEXT);
88
CREATE INDEX val_idx ON test_update_node.test_range (val);
99
INSERT INTO test_update_node.test_range SELECT i, i FROM generate_series(1, 100) i;
1010
SELECT create_range_partitions('test_update_node.test_range', 'val', 1, 10);
11-
NOTICE: sequence "test_range_seq" does not exist, skipping
1211
create_range_partitions
1312
-------------------------
1413
10
@@ -292,7 +291,7 @@ SELECT count(*) FROM test_update_node.test_range;
292291
(1 row)
293292

294293
DROP TABLE test_update_node.test_range CASCADE;
295-
NOTICE: drop cascades to 12 other objects
294+
NOTICE: drop cascades to 13 other objects
296295
/* recreate table and mass move */
297296
CREATE TABLE test_update_node.test_range(val NUMERIC NOT NULL, comment TEXT);
298297
INSERT INTO test_update_node.test_range SELECT i, i FROM generate_series(1, 100) i;

0 commit comments

Comments
 (0)