File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
src/test/regress/expected Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -1056,17 +1056,17 @@ CREATE TABLE collate_dep_test4t (a int, b text);
10561056CREATE INDEX collate_dep_test4i ON collate_dep_test4t (b COLLATE test0);
10571057DROP COLLATION test0 RESTRICT; -- fail
10581058ERROR: cannot drop collation test0 because other objects depend on it
1059- DETAIL: table collate_dep_test1 column b depends on collation test0
1059+ DETAIL: column b of table collate_dep_test1 depends on collation test0
10601060type collate_dep_dom1 depends on collation test0
1061- composite type collate_dep_test2 column y depends on collation test0
1061+ column y of composite type collate_dep_test2 depends on collation test0
10621062view collate_dep_test3 depends on collation test0
10631063index collate_dep_test4i depends on collation test0
10641064HINT: Use DROP ... CASCADE to drop the dependent objects too.
10651065DROP COLLATION test0 CASCADE;
10661066NOTICE: drop cascades to 5 other objects
1067- DETAIL: drop cascades to table collate_dep_test1 column b
1067+ DETAIL: drop cascades to column b of table collate_dep_test1
10681068drop cascades to type collate_dep_dom1
1069- drop cascades to composite type collate_dep_test2 column y
1069+ drop cascades to column y of composite type collate_dep_test2
10701070drop cascades to view collate_dep_test3
10711071drop cascades to index collate_dep_test4i
10721072\d collate_dep_test1
Original file line number Diff line number Diff line change @@ -1073,17 +1073,17 @@ CREATE TABLE collate_dep_test4t (a int, b text);
10731073CREATE INDEX collate_dep_test4i ON collate_dep_test4t (b COLLATE test0);
10741074DROP COLLATION test0 RESTRICT; -- fail
10751075ERROR: cannot drop collation test0 because other objects depend on it
1076- DETAIL: table collate_dep_test1 column b depends on collation test0
1076+ DETAIL: column b of table collate_dep_test1 depends on collation test0
10771077type collate_dep_dom1 depends on collation test0
1078- composite type collate_dep_test2 column y depends on collation test0
1078+ column y of composite type collate_dep_test2 depends on collation test0
10791079view collate_dep_test3 depends on collation test0
10801080index collate_dep_test4i depends on collation test0
10811081HINT: Use DROP ... CASCADE to drop the dependent objects too.
10821082DROP COLLATION test0 CASCADE;
10831083NOTICE: drop cascades to 5 other objects
1084- DETAIL: drop cascades to table collate_dep_test1 column b
1084+ DETAIL: drop cascades to column b of table collate_dep_test1
10851085drop cascades to type collate_dep_dom1
1086- drop cascades to composite type collate_dep_test2 column y
1086+ drop cascades to column y of composite type collate_dep_test2
10871087drop cascades to view collate_dep_test3
10881088drop cascades to index collate_dep_test4i
10891089\d collate_dep_test1
You can’t perform that action at this time.
0 commit comments