Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8918bd3

Browse files
committed
Make few fixes in tests added by 1817d26
1 parent 1817d26 commit 8918bd3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

expected/pathman_dropped_cols.out

+1-2
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,6 @@ ALTER TABLE root_dict ADD COLUMN dict_id BIGINT DEFAULT 3;
112112
ALTER TABLE root_dict DROP COLUMN dict_code,
113113
DROP COLUMN dict_name,
114114
DROP COLUMN sign;
115-
CREATE EXTENSION pg_pathman;
116-
ERROR: extension "pg_pathman" already exists
117115
SELECT create_hash_partitions('root_dict' :: REGCLASS,
118116
'root_id',
119117
3,
@@ -204,6 +202,7 @@ EXPLAIN EXECUTE getbyroot(2);
204202
Index Cond: (root_id = $1)
205203
(14 rows)
206204

205+
DEALLOCATE getbyroot;
207206
DROP TABLE root_dict CASCADE;
208207
NOTICE: drop cascades to 3 other objects
209208
DROP SCHEMA dropped_cols CASCADE;

sql/pathman_dropped_cols.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ ALTER TABLE root_dict DROP COLUMN dict_code,
7474
DROP COLUMN dict_name,
7575
DROP COLUMN sign;
7676

77-
CREATE EXTENSION pg_pathman;
7877
SELECT create_hash_partitions('root_dict' :: REGCLASS,
7978
'root_id',
8079
3,
@@ -99,6 +98,7 @@ EXECUTE getbyroot(2);
9998
EXECUTE getbyroot(2);
10099
EXPLAIN EXECUTE getbyroot(2);
101100

101+
DEALLOCATE getbyroot;
102102
DROP TABLE root_dict CASCADE;
103103
DROP SCHEMA dropped_cols CASCADE;
104104
DROP EXTENSION pg_pathman;

0 commit comments

Comments
 (0)