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
a5d67a0a
Commit
a5d67a0a
authored
Jan 11, 2009
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make tests pass with or without locale.
parent
43a57cf3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
src/test/regress/expected/foreign_data.out
src/test/regress/expected/foreign_data.out
+5
-5
src/test/regress/sql/foreign_data.sql
src/test/regress/sql/foreign_data.sql
+2
-2
No files found.
src/test/regress/expected/foreign_data.out
View file @
a5d67a0a
...
@@ -667,25 +667,25 @@ SELECT * FROM information_schema.foreign_server_options ORDER BY 1, 2, 3;
...
@@ -667,25 +667,25 @@ SELECT * FROM information_schema.foreign_server_options ORDER BY 1, 2, 3;
regression | s8 | dbname | db1
regression | s8 | dbname | db1
(6 rows)
(6 rows)
SELECT * FROM information_schema.user_mappings ORDER BY
1
, 2, 3;
SELECT * FROM information_schema.user_mappings ORDER BY
lower(authorization_identifier)
, 2, 3;
authorization_identifier | foreign_server_catalog | foreign_server_name
authorization_identifier | foreign_server_catalog | foreign_server_name
--------------------------+------------------------+---------------------
--------------------------+------------------------+---------------------
foreign_data_user | regression | s4
foreign_data_user | regression | s8
PUBLIC | regression | s4
PUBLIC | regression | s4
PUBLIC | regression | s8
PUBLIC | regression | s8
PUBLIC | regression | st1
PUBLIC | regression | st1
foreign_data_user | regression | s4
foreign_data_user | regression | s8
regress_test_role | regression | s5
regress_test_role | regression | s5
regress_test_role | regression | s6
regress_test_role | regression | s6
regress_test_role | regression | st1
regress_test_role | regression | st1
(8 rows)
(8 rows)
SELECT * FROM information_schema.user_mapping_options ORDER BY
1
, 2, 3, 4;
SELECT * FROM information_schema.user_mapping_options ORDER BY
lower(authorization_identifier)
, 2, 3, 4;
authorization_identifier | foreign_server_catalog | foreign_server_name | option_name | option_value
authorization_identifier | foreign_server_catalog | foreign_server_name | option_name | option_value
--------------------------+------------------------+---------------------+-------------+--------------
--------------------------+------------------------+---------------------+-------------+--------------
foreign_data_user | regression | s8 | password | public
PUBLIC | regression | s4 | mapping | is public
PUBLIC | regression | s4 | mapping | is public
PUBLIC | regression | st1 | modified | 1
PUBLIC | regression | st1 | modified | 1
foreign_data_user | regression | s8 | password | public
regress_test_role | regression | s5 | modified | 1
regress_test_role | regression | s5 | modified | 1
regress_test_role | regression | s6 | username | test
regress_test_role | regression | s6 | username | test
regress_test_role | regression | st1 | password | boo
regress_test_role | regression | st1 | password | boo
...
...
src/test/regress/sql/foreign_data.sql
View file @
a5d67a0a
...
@@ -264,8 +264,8 @@ SELECT * FROM information_schema.foreign_data_wrappers ORDER BY 1, 2;
...
@@ -264,8 +264,8 @@ SELECT * FROM information_schema.foreign_data_wrappers ORDER BY 1, 2;
SELECT
*
FROM
information_schema
.
foreign_data_wrapper_options
ORDER
BY
1
,
2
,
3
;
SELECT
*
FROM
information_schema
.
foreign_data_wrapper_options
ORDER
BY
1
,
2
,
3
;
SELECT
*
FROM
information_schema
.
foreign_servers
ORDER
BY
1
,
2
;
SELECT
*
FROM
information_schema
.
foreign_servers
ORDER
BY
1
,
2
;
SELECT
*
FROM
information_schema
.
foreign_server_options
ORDER
BY
1
,
2
,
3
;
SELECT
*
FROM
information_schema
.
foreign_server_options
ORDER
BY
1
,
2
,
3
;
SELECT
*
FROM
information_schema
.
user_mappings
ORDER
BY
1
,
2
,
3
;
SELECT
*
FROM
information_schema
.
user_mappings
ORDER
BY
lower
(
authorization_identifier
)
,
2
,
3
;
SELECT
*
FROM
information_schema
.
user_mapping_options
ORDER
BY
1
,
2
,
3
,
4
;
SELECT
*
FROM
information_schema
.
user_mapping_options
ORDER
BY
lower
(
authorization_identifier
)
,
2
,
3
,
4
;
SELECT
*
FROM
information_schema
.
usage_privileges
WHERE
object_type
LIKE
'FOREIGN%'
ORDER
BY
1
,
2
,
3
,
4
,
5
;
SELECT
*
FROM
information_schema
.
usage_privileges
WHERE
object_type
LIKE
'FOREIGN%'
ORDER
BY
1
,
2
,
3
,
4
,
5
;
SELECT
*
FROM
information_schema
.
role_usage_grants
WHERE
object_type
LIKE
'FOREIGN%'
ORDER
BY
1
,
2
,
3
,
4
,
5
;
SELECT
*
FROM
information_schema
.
role_usage_grants
WHERE
object_type
LIKE
'FOREIGN%'
ORDER
BY
1
,
2
,
3
,
4
,
5
;
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