Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2eb809a

Browse files
committed
Update non-default collation tests for getObjectDescription() changes.
Sigh, also missed in commit b86b7bf. Per buildfarm.
1 parent f248453 commit 2eb809a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/test/regress/expected/collate.icu.utf8.out

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1056,17 +1056,17 @@ CREATE TABLE collate_dep_test4t (a int, b text);
10561056
CREATE INDEX collate_dep_test4i ON collate_dep_test4t (b COLLATE test0);
10571057
DROP COLLATION test0 RESTRICT; -- fail
10581058
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
10601060
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
10621062
view collate_dep_test3 depends on collation test0
10631063
index collate_dep_test4i depends on collation test0
10641064
HINT: Use DROP ... CASCADE to drop the dependent objects too.
10651065
DROP COLLATION test0 CASCADE;
10661066
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
10681068
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
10701070
drop cascades to view collate_dep_test3
10711071
drop cascades to index collate_dep_test4i
10721072
\d collate_dep_test1

src/test/regress/expected/collate.linux.utf8.out

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,17 +1073,17 @@ CREATE TABLE collate_dep_test4t (a int, b text);
10731073
CREATE INDEX collate_dep_test4i ON collate_dep_test4t (b COLLATE test0);
10741074
DROP COLLATION test0 RESTRICT; -- fail
10751075
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
10771077
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
10791079
view collate_dep_test3 depends on collation test0
10801080
index collate_dep_test4i depends on collation test0
10811081
HINT: Use DROP ... CASCADE to drop the dependent objects too.
10821082
DROP COLLATION test0 CASCADE;
10831083
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
10851085
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
10871087
drop cascades to view collate_dep_test3
10881088
drop cascades to index collate_dep_test4i
10891089
\d collate_dep_test1

0 commit comments

Comments
 (0)