File tree 2 files changed +8
-8
lines changed
src/test/regress/expected
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);
1056
1056
CREATE INDEX collate_dep_test4i ON collate_dep_test4t (b COLLATE test0);
1057
1057
DROP COLLATION test0 RESTRICT; -- fail
1058
1058
ERROR: 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
1060
1060
type 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
1062
1062
view collate_dep_test3 depends on collation test0
1063
1063
index collate_dep_test4i depends on collation test0
1064
1064
HINT: Use DROP ... CASCADE to drop the dependent objects too.
1065
1065
DROP COLLATION test0 CASCADE;
1066
1066
NOTICE: 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
1068
1068
drop 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
1070
1070
drop cascades to view collate_dep_test3
1071
1071
drop cascades to index collate_dep_test4i
1072
1072
\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);
1073
1073
CREATE INDEX collate_dep_test4i ON collate_dep_test4t (b COLLATE test0);
1074
1074
DROP COLLATION test0 RESTRICT; -- fail
1075
1075
ERROR: 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
1077
1077
type 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
1079
1079
view collate_dep_test3 depends on collation test0
1080
1080
index collate_dep_test4i depends on collation test0
1081
1081
HINT: Use DROP ... CASCADE to drop the dependent objects too.
1082
1082
DROP COLLATION test0 CASCADE;
1083
1083
NOTICE: 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
1085
1085
drop 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
1087
1087
drop cascades to view collate_dep_test3
1088
1088
drop cascades to index collate_dep_test4i
1089
1089
\d collate_dep_test1
You can’t perform that action at this time.
0 commit comments