aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2015-10-27 23:02:04 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2015-10-27 23:02:04 -0300
commitc56949168cc0aeac703865c3239f7bc7ca670402 (patch)
treeaec4feae313f3e9e7e3e7e9a068edd2c599c1b20 /src
parent3e9e03353966efa5cae5f927a77ba64a93f1ee8c (diff)
downloadpostgresql-c56949168cc0aeac703865c3239f7bc7ca670402.tar.gz
postgresql-c56949168cc0aeac703865c3239f7bc7ca670402.zip
Fix secondary expected output for commit_ts test
Per red wall in buildfarm
Diffstat (limited to 'src')
-rw-r--r--src/test/modules/commit_ts/expected/commit_timestamp_1.out9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/test/modules/commit_ts/expected/commit_timestamp_1.out b/src/test/modules/commit_ts/expected/commit_timestamp_1.out
index a4253faa7b7..2f1f41d2099 100644
--- a/src/test/modules/commit_ts/expected/commit_timestamp_1.out
+++ b/src/test/modules/commit_ts/expected/commit_timestamp_1.out
@@ -21,14 +21,11 @@ ERROR: could not get commit timestamp data
HINT: Make sure the configuration parameter "track_commit_timestamp" is set.
DROP TABLE committs_test;
SELECT pg_xact_commit_timestamp('0'::xid);
-ERROR: could not get commit timestamp data
-HINT: Make sure the configuration parameter "track_commit_timestamp" is set.
+ERROR: cannot retrieve commit timestamp for transaction 0
SELECT pg_xact_commit_timestamp('1'::xid);
-ERROR: could not get commit timestamp data
-HINT: Make sure the configuration parameter "track_commit_timestamp" is set.
+ERROR: cannot retrieve commit timestamp for transaction 1
SELECT pg_xact_commit_timestamp('2'::xid);
-ERROR: could not get commit timestamp data
-HINT: Make sure the configuration parameter "track_commit_timestamp" is set.
+ERROR: cannot retrieve commit timestamp for transaction 2
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
HINT: Make sure the configuration parameter "track_commit_timestamp" is set.