aboutsummaryrefslogtreecommitdiff
path: root/src/test/modules/commit_ts/expected/commit_timestamp_1.out
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:03:22 -0300
commitdbe6f434ee1852f08c011065467a6cfc5ce10864 (patch)
treec09adbde2e71e96761e6518e24cad7cdf2e0c8a3 /src/test/modules/commit_ts/expected/commit_timestamp_1.out
parent8538a6307049590ddb5ba127b2ecac6308844d60 (diff)
downloadpostgresql-dbe6f434ee1852f08c011065467a6cfc5ce10864.tar.gz
postgresql-dbe6f434ee1852f08c011065467a6cfc5ce10864.zip
Fix secondary expected output for commit_ts test
Per red wall in buildfarm
Diffstat (limited to 'src/test/modules/commit_ts/expected/commit_timestamp_1.out')
-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.