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
8ebf1a3d
Commit
8ebf1a3d
authored
Jan 09, 2009
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove fairly useless mixed-case identifier test that causes locale
dependencies.
parent
8d320b63
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
49 deletions
+27
-49
src/test/regress/expected/foreign_data.out
src/test/regress/expected/foreign_data.out
+27
-47
src/test/regress/sql/foreign_data.sql
src/test/regress/sql/foreign_data.sql
+0
-2
No files found.
src/test/regress/expected/foreign_data.out
View file @
8ebf1a3d
This diff is collapsed.
Click to expand it.
src/test/regress/sql/foreign_data.sql
View file @
8ebf1a3d
...
@@ -126,7 +126,6 @@ CREATE SERVER s3 TYPE 'oracle' FOREIGN DATA WRAPPER foo;
...
@@ -126,7 +126,6 @@ CREATE SERVER s3 TYPE 'oracle' FOREIGN DATA WRAPPER foo;
CREATE
SERVER
s4
TYPE
'oracle'
FOREIGN
DATA
WRAPPER
foo
OPTIONS
(
host
'a'
,
dbname
'b'
);
CREATE
SERVER
s4
TYPE
'oracle'
FOREIGN
DATA
WRAPPER
foo
OPTIONS
(
host
'a'
,
dbname
'b'
);
CREATE
SERVER
s5
VERSION
'15.0'
FOREIGN
DATA
WRAPPER
foo
;
CREATE
SERVER
s5
VERSION
'15.0'
FOREIGN
DATA
WRAPPER
foo
;
CREATE
SERVER
s6
VERSION
'16.0'
FOREIGN
DATA
WRAPPER
foo
OPTIONS
(
host
'a'
,
dbname
'b'
);
CREATE
SERVER
s6
VERSION
'16.0'
FOREIGN
DATA
WRAPPER
foo
OPTIONS
(
host
'a'
,
dbname
'b'
);
CREATE
SERVER
"S6"
FOREIGN
DATA
WRAPPER
foo
OPTIONS
(
mixed_case_names
'true'
);
CREATE
SERVER
s7
TYPE
'oracle'
VERSION
'17.0'
FOREIGN
DATA
WRAPPER
foo
OPTIONS
(
host
'a'
,
dbname
'b'
);
CREATE
SERVER
s7
TYPE
'oracle'
VERSION
'17.0'
FOREIGN
DATA
WRAPPER
foo
OPTIONS
(
host
'a'
,
dbname
'b'
);
CREATE
SERVER
s8
FOREIGN
DATA
WRAPPER
postgresql
OPTIONS
(
foo
'1'
);
-- ERROR
CREATE
SERVER
s8
FOREIGN
DATA
WRAPPER
postgresql
OPTIONS
(
foo
'1'
);
-- ERROR
CREATE
SERVER
s8
FOREIGN
DATA
WRAPPER
postgresql
OPTIONS
(
host
'localhost'
,
dbname
's8db'
);
CREATE
SERVER
s8
FOREIGN
DATA
WRAPPER
postgresql
OPTIONS
(
host
'localhost'
,
dbname
's8db'
);
...
@@ -224,7 +223,6 @@ CREATE USER MAPPING FOR current_user SERVER s6 OPTIONS (username 'test');
...
@@ -224,7 +223,6 @@ CREATE USER MAPPING FOR current_user SERVER s6 OPTIONS (username 'test');
CREATE
USER
MAPPING
FOR
current_user
SERVER
s7
;
-- ERROR
CREATE
USER
MAPPING
FOR
current_user
SERVER
s7
;
-- ERROR
CREATE
USER
MAPPING
FOR
public
SERVER
s8
;
-- ERROR
CREATE
USER
MAPPING
FOR
public
SERVER
s8
;
-- ERROR
RESET
ROLE
;
RESET
ROLE
;
CREATE
USER
MAPPING
FOR
current_user
SERVER
"S6"
OPTIONS
(
username
'test_mixed_case'
);
ALTER
SERVER
st1
OWNER
TO
regress_test_indirect
;
ALTER
SERVER
st1
OWNER
TO
regress_test_indirect
;
SET
ROLE
regress_test_role
;
SET
ROLE
regress_test_role
;
...
...
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