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
836f6345
Commit
836f6345
authored
Mar 06, 2019
by
Andres Freund
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix collation dependency in test introduced in
8586bf7e
.
Per buildfarm.
parent
3b925e90
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/test/regress/expected/create_am.out
src/test/regress/expected/create_am.out
+2
-2
src/test/regress/sql/create_am.sql
src/test/regress/sql/create_am.sql
+1
-1
No files found.
src/test/regress/expected/create_am.out
View file @
836f6345
...
...
@@ -173,7 +173,7 @@ SELECT
(SELECT 'toast for ' || relname::regclass FROM pg_class pcm WHERE pcm.reltoastrelid = pc.oid)
ELSE
relname::regclass::text
END AS relname
END
COLLATE "C"
AS relname
FROM pg_class AS pc,
pg_am AS pa
WHERE pa.oid = pc.relam
...
...
@@ -183,8 +183,8 @@ ORDER BY 3, 1, 2;
---------+--------+----------------------------------
r | heap2 | tableam_parted_b_heap2
r | heap2 | tableam_parted_d_heap2
r | heap2 | tableam_tblas_heap2
r | heap2 | tableam_tbl_heap2
r | heap2 | tableam_tblas_heap2
m | heap2 | tableam_tblmv_heap2
t | heap2 | toast for tableam_parted_b_heap2
t | heap2 | toast for tableam_parted_d_heap2
...
...
src/test/regress/sql/create_am.sql
View file @
836f6345
...
...
@@ -123,7 +123,7 @@ SELECT
(
SELECT
'toast for '
||
relname
::
regclass
FROM
pg_class
pcm
WHERE
pcm
.
reltoastrelid
=
pc
.
oid
)
ELSE
relname
::
regclass
::
text
END
AS
relname
END
COLLATE
"C"
AS
relname
FROM
pg_class
AS
pc
,
pg_am
AS
pa
WHERE
pa
.
oid
=
pc
.
relam
...
...
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