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
314288fc
Commit
314288fc
authored
Oct 14, 2009
by
Alvaro Herrera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Avoid using trivial usernames in foreign_data regression test.
Author: Martin Pihlak
parent
b2734a0d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
src/test/regress/expected/foreign_data.out
src/test/regress/expected/foreign_data.out
+8
-8
src/test/regress/sql/foreign_data.sql
src/test/regress/sql/foreign_data.sql
+4
-4
No files found.
src/test/regress/expected/foreign_data.out
View file @
314288fc
...
...
@@ -524,8 +524,8 @@ List of user mappings
(0 rows)
-- CREATE USER MAPPING
CREATE USER MAPPING FOR
baz SERVER s1;
-- ERROR
ERROR: role "
baz
" does not exist
CREATE USER MAPPING FOR
regress_test_missing_role SERVER s1;
-- ERROR
ERROR: role "
regress_test_missing_role
" does not exist
CREATE USER MAPPING FOR current_user SERVER s1; -- ERROR
ERROR: server "s1" does not exist
CREATE USER MAPPING FOR current_user SERVER s4;
...
...
@@ -565,8 +565,8 @@ RESET ROLE;
(7 rows)
-- ALTER USER MAPPING
ALTER USER MAPPING FOR
bob SERVER s4 OPTIONS (gotcha 'true');
-- ERROR
ERROR: role "
bob
" does not exist
ALTER USER MAPPING FOR
regress_test_missing_role SERVER s4 OPTIONS (gotcha 'true');
-- ERROR
ERROR: role "
regress_test_missing_role
" does not exist
ALTER USER MAPPING FOR user SERVER ss4 OPTIONS (gotcha 'true'); -- ERROR
ERROR: server "ss4" does not exist
ALTER USER MAPPING FOR public SERVER s5 OPTIONS (gotcha 'true'); -- ERROR
...
...
@@ -595,14 +595,14 @@ RESET ROLE;
(7 rows)
-- DROP USER MAPPING
DROP USER MAPPING FOR
bob SERVER s4;
-- ERROR
ERROR: role "
bob
" does not exist
DROP USER MAPPING FOR
regress_test_missing_role SERVER s4;
-- ERROR
ERROR: role "
regress_test_missing_role
" does not exist
DROP USER MAPPING FOR user SERVER ss4;
ERROR: server "ss4" does not exist
DROP USER MAPPING FOR public SERVER s7; -- ERROR
ERROR: user mapping "public" does not exist for the server
DROP USER MAPPING IF EXISTS FOR
bob
SERVER s4;
NOTICE: role "
bob
" does not exist, skipping
DROP USER MAPPING IF EXISTS FOR
regress_test_missing_role
SERVER s4;
NOTICE: role "
regress_test_missing_role
" does not exist, skipping
DROP USER MAPPING IF EXISTS FOR user SERVER ss4;
NOTICE: server does not exist, skipping
DROP USER MAPPING IF EXISTS FOR public SERVER s7;
...
...
src/test/regress/sql/foreign_data.sql
View file @
314288fc
...
...
@@ -204,7 +204,7 @@ DROP SERVER s3 CASCADE;
\
deu
-- CREATE USER MAPPING
CREATE
USER
MAPPING
FOR
baz
SERVER
s1
;
-- ERROR
CREATE
USER
MAPPING
FOR
regress_test_missing_role
SERVER
s1
;
-- ERROR
CREATE
USER
MAPPING
FOR
current_user
SERVER
s1
;
-- ERROR
CREATE
USER
MAPPING
FOR
current_user
SERVER
s4
;
CREATE
USER
MAPPING
FOR
user
SERVER
s4
;
-- ERROR duplicate
...
...
@@ -228,7 +228,7 @@ RESET ROLE;
\
deu
-- ALTER USER MAPPING
ALTER
USER
MAPPING
FOR
bob
SERVER
s4
OPTIONS
(
gotcha
'true'
);
-- ERROR
ALTER
USER
MAPPING
FOR
regress_test_missing_role
SERVER
s4
OPTIONS
(
gotcha
'true'
);
-- ERROR
ALTER
USER
MAPPING
FOR
user
SERVER
ss4
OPTIONS
(
gotcha
'true'
);
-- ERROR
ALTER
USER
MAPPING
FOR
public
SERVER
s5
OPTIONS
(
gotcha
'true'
);
-- ERROR
ALTER
USER
MAPPING
FOR
current_user
SERVER
s8
OPTIONS
(
username
'test'
);
-- ERROR
...
...
@@ -241,10 +241,10 @@ RESET ROLE;
\
deu
+
-- DROP USER MAPPING
DROP
USER
MAPPING
FOR
bob
SERVER
s4
;
-- ERROR
DROP
USER
MAPPING
FOR
regress_test_missing_role
SERVER
s4
;
-- ERROR
DROP
USER
MAPPING
FOR
user
SERVER
ss4
;
DROP
USER
MAPPING
FOR
public
SERVER
s7
;
-- ERROR
DROP
USER
MAPPING
IF
EXISTS
FOR
bob
SERVER
s4
;
DROP
USER
MAPPING
IF
EXISTS
FOR
regress_test_missing_role
SERVER
s4
;
DROP
USER
MAPPING
IF
EXISTS
FOR
user
SERVER
ss4
;
DROP
USER
MAPPING
IF
EXISTS
FOR
public
SERVER
s7
;
CREATE
USER
MAPPING
FOR
public
SERVER
s8
;
...
...
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