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
0bf08994
Commit
0bf08994
authored
Oct 19, 2011
by
Robert Haas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove a few of the new DROP-IF-EXISTS regression tests.
Commit
3301c835
broke the build farm. Let's try to fix that.
parent
82a4a777
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
7 deletions
+0
-7
src/test/regress/expected/drop_if_exists.out
src/test/regress/expected/drop_if_exists.out
+0
-4
src/test/regress/sql/drop_if_exists.sql
src/test/regress/sql/drop_if_exists.sql
+0
-3
No files found.
src/test/regress/expected/drop_if_exists.out
View file @
0bf08994
...
@@ -86,12 +86,8 @@ NOTICE: role "tg2" does not exist, skipping
...
@@ -86,12 +86,8 @@ NOTICE: role "tg2" does not exist, skipping
DROP GROUP tg1;
DROP GROUP tg1;
ERROR: role "tg1" does not exist
ERROR: role "tg1" does not exist
-- collation
-- collation
DROP COLLATION test_collation_exists;
ERROR: collation "test_collation_exists" for encoding "UTF8" does not exist
DROP COLLATION IF EXISTS test_collation_exists;
DROP COLLATION IF EXISTS test_collation_exists;
NOTICE: collation "test_collation_exists" does not exist, skipping
NOTICE: collation "test_collation_exists" does not exist, skipping
CREATE COLLATION test_collation_exists FROM "POSIX";
DROP COLLATION test_collation_exists;
-- conversion
-- conversion
DROP CONVERSION test_conversion_exists;
DROP CONVERSION test_conversion_exists;
ERROR: conversion "test_conversion_exists" does not exist
ERROR: conversion "test_conversion_exists" does not exist
...
...
src/test/regress/sql/drop_if_exists.sql
View file @
0bf08994
...
@@ -109,10 +109,7 @@ DROP GROUP IF EXISTS tg1, tg2;
...
@@ -109,10 +109,7 @@ DROP GROUP IF EXISTS tg1, tg2;
DROP
GROUP
tg1
;
DROP
GROUP
tg1
;
-- collation
-- collation
DROP
COLLATION
test_collation_exists
;
DROP
COLLATION
IF
EXISTS
test_collation_exists
;
DROP
COLLATION
IF
EXISTS
test_collation_exists
;
CREATE
COLLATION
test_collation_exists
FROM
"POSIX"
;
DROP
COLLATION
test_collation_exists
;
-- conversion
-- conversion
DROP
CONVERSION
test_conversion_exists
;
DROP
CONVERSION
test_conversion_exists
;
...
...
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