Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
2eb809ad
Commit
2eb809ad
authored
May 24, 2018
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update non-default collation tests for getObjectDescription() changes.
Sigh, also missed in commit
b86b7bfa
. Per buildfarm.
parent
f248453b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
src/test/regress/expected/collate.icu.utf8.out
src/test/regress/expected/collate.icu.utf8.out
+4
-4
src/test/regress/expected/collate.linux.utf8.out
src/test/regress/expected/collate.linux.utf8.out
+4
-4
No files found.
src/test/regress/expected/collate.icu.utf8.out
View file @
2eb809ad
...
@@ -1056,17 +1056,17 @@ CREATE TABLE collate_dep_test4t (a int, b text);
...
@@ -1056,17 +1056,17 @@ CREATE TABLE collate_dep_test4t (a int, b text);
CREATE INDEX collate_dep_test4i ON collate_dep_test4t (b COLLATE test0);
CREATE INDEX collate_dep_test4i ON collate_dep_test4t (b COLLATE test0);
DROP COLLATION test0 RESTRICT; -- fail
DROP COLLATION test0 RESTRICT; -- fail
ERROR: cannot drop collation test0 because other objects depend on it
ERROR: cannot drop collation test0 because other objects depend on it
DETAIL:
table collate_dep_test1 column b
depends on collation test0
DETAIL:
column b of table collate_dep_test1
depends on collation test0
type collate_dep_dom1 depends on collation test0
type collate_dep_dom1 depends on collation test0
co
mposite type collate_dep_test2 column y
depends on collation test0
co
lumn y of composite type collate_dep_test2
depends on collation test0
view collate_dep_test3 depends on collation test0
view collate_dep_test3 depends on collation test0
index collate_dep_test4i depends on collation test0
index collate_dep_test4i depends on collation test0
HINT: Use DROP ... CASCADE to drop the dependent objects too.
HINT: Use DROP ... CASCADE to drop the dependent objects too.
DROP COLLATION test0 CASCADE;
DROP COLLATION test0 CASCADE;
NOTICE: drop cascades to 5 other objects
NOTICE: drop cascades to 5 other objects
DETAIL: drop cascades to
table collate_dep_test1 column b
DETAIL: drop cascades to
column b of table collate_dep_test1
drop cascades to type collate_dep_dom1
drop cascades to type collate_dep_dom1
drop cascades to co
mposite type collate_dep_test2 column y
drop cascades to co
lumn y of composite type collate_dep_test2
drop cascades to view collate_dep_test3
drop cascades to view collate_dep_test3
drop cascades to index collate_dep_test4i
drop cascades to index collate_dep_test4i
\d collate_dep_test1
\d collate_dep_test1
...
...
src/test/regress/expected/collate.linux.utf8.out
View file @
2eb809ad
...
@@ -1073,17 +1073,17 @@ CREATE TABLE collate_dep_test4t (a int, b text);
...
@@ -1073,17 +1073,17 @@ CREATE TABLE collate_dep_test4t (a int, b text);
CREATE INDEX collate_dep_test4i ON collate_dep_test4t (b COLLATE test0);
CREATE INDEX collate_dep_test4i ON collate_dep_test4t (b COLLATE test0);
DROP COLLATION test0 RESTRICT; -- fail
DROP COLLATION test0 RESTRICT; -- fail
ERROR: cannot drop collation test0 because other objects depend on it
ERROR: cannot drop collation test0 because other objects depend on it
DETAIL:
table collate_dep_test1 column b
depends on collation test0
DETAIL:
column b of table collate_dep_test1
depends on collation test0
type collate_dep_dom1 depends on collation test0
type collate_dep_dom1 depends on collation test0
co
mposite type collate_dep_test2 column y
depends on collation test0
co
lumn y of composite type collate_dep_test2
depends on collation test0
view collate_dep_test3 depends on collation test0
view collate_dep_test3 depends on collation test0
index collate_dep_test4i depends on collation test0
index collate_dep_test4i depends on collation test0
HINT: Use DROP ... CASCADE to drop the dependent objects too.
HINT: Use DROP ... CASCADE to drop the dependent objects too.
DROP COLLATION test0 CASCADE;
DROP COLLATION test0 CASCADE;
NOTICE: drop cascades to 5 other objects
NOTICE: drop cascades to 5 other objects
DETAIL: drop cascades to
table collate_dep_test1 column b
DETAIL: drop cascades to
column b of table collate_dep_test1
drop cascades to type collate_dep_dom1
drop cascades to type collate_dep_dom1
drop cascades to co
mposite type collate_dep_test2 column y
drop cascades to co
lumn y of composite type collate_dep_test2
drop cascades to view collate_dep_test3
drop cascades to view collate_dep_test3
drop cascades to index collate_dep_test4i
drop cascades to index collate_dep_test4i
\d collate_dep_test1
\d collate_dep_test1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment