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
dbe6f434
Commit
dbe6f434
authored
Oct 27, 2015
by
Alvaro Herrera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix secondary expected output for commit_ts test
Per red wall in buildfarm
parent
8538a630
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
src/test/modules/commit_ts/expected/commit_timestamp_1.out
src/test/modules/commit_ts/expected/commit_timestamp_1.out
+3
-6
No files found.
src/test/modules/commit_ts/expected/commit_timestamp_1.out
View file @
dbe6f434
...
@@ -21,14 +21,11 @@ ERROR: could not get commit timestamp data
...
@@ -21,14 +21,11 @@ ERROR: could not get commit timestamp data
HINT: Make sure the configuration parameter "track_commit_timestamp" is set.
HINT: Make sure the configuration parameter "track_commit_timestamp" is set.
DROP TABLE committs_test;
DROP TABLE committs_test;
SELECT pg_xact_commit_timestamp('0'::xid);
SELECT pg_xact_commit_timestamp('0'::xid);
ERROR: could not get commit timestamp data
ERROR: cannot retrieve commit timestamp for transaction 0
HINT: Make sure the configuration parameter "track_commit_timestamp" is set.
SELECT pg_xact_commit_timestamp('1'::xid);
SELECT pg_xact_commit_timestamp('1'::xid);
ERROR: could not get commit timestamp data
ERROR: cannot retrieve commit timestamp for transaction 1
HINT: Make sure the configuration parameter "track_commit_timestamp" is set.
SELECT pg_xact_commit_timestamp('2'::xid);
SELECT pg_xact_commit_timestamp('2'::xid);
ERROR: could not get commit timestamp data
ERROR: cannot retrieve commit timestamp for transaction 2
HINT: Make sure the configuration parameter "track_commit_timestamp" is set.
SELECT x.xid::text::bigint > 0, x.timestamp > '-infinity'::timestamptz, x.timestamp <= now() FROM pg_last_committed_xact() x;
SELECT x.xid::text::bigint > 0, x.timestamp > '-infinity'::timestamptz, x.timestamp <= now() FROM pg_last_committed_xact() x;
ERROR: could not get commit timestamp data
ERROR: could not get commit timestamp data
HINT: Make sure the configuration parameter "track_commit_timestamp" is set.
HINT: Make sure the configuration parameter "track_commit_timestamp" is set.
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