Commit dbe6f434 authored by Alvaro Herrera's avatar Alvaro Herrera

Fix secondary expected output for commit_ts test

Per red wall in buildfarm
parent 8538a630
...@@ -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.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment