Skip to content

Commit dbe6f43

Browse files
committed
Fix secondary expected output for commit_ts test
Per red wall in buildfarm
1 parent 8538a63 commit dbe6f43

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

src/test/modules/commit_ts/expected/commit_timestamp_1.out

+3-6
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,11 @@ ERROR: could not get commit timestamp data
2121
HINT: Make sure the configuration parameter "track_commit_timestamp" is set.
2222
DROP TABLE committs_test;
2323
SELECT pg_xact_commit_timestamp('0'::xid);
24-
ERROR: could not get commit timestamp data
25-
HINT: Make sure the configuration parameter "track_commit_timestamp" is set.
24+
ERROR: cannot retrieve commit timestamp for transaction 0
2625
SELECT pg_xact_commit_timestamp('1'::xid);
27-
ERROR: could not get commit timestamp data
28-
HINT: Make sure the configuration parameter "track_commit_timestamp" is set.
26+
ERROR: cannot retrieve commit timestamp for transaction 1
2927
SELECT pg_xact_commit_timestamp('2'::xid);
30-
ERROR: could not get commit timestamp data
31-
HINT: Make sure the configuration parameter "track_commit_timestamp" is set.
28+
ERROR: cannot retrieve commit timestamp for transaction 2
3229
SELECT x.xid::text::bigint > 0, x.timestamp > '-infinity'::timestamptz, x.timestamp <= now() FROM pg_last_committed_xact() x;
3330
ERROR: could not get commit timestamp data
3431
HINT: Make sure the configuration parameter "track_commit_timestamp" is set.

0 commit comments

Comments
 (0)