|
|
|
|
@ -13,7 +13,7 @@ INSERT INTO committs_test DEFAULT VALUES; |
|
|
|
|
INSERT INTO committs_test DEFAULT VALUES; |
|
|
|
|
SELECT id, |
|
|
|
|
pg_xact_commit_timestamp(xmin) >= ts, |
|
|
|
|
pg_xact_commit_timestamp(xmin) < now(), |
|
|
|
|
pg_xact_commit_timestamp(xmin) <= now(), |
|
|
|
|
pg_xact_commit_timestamp(xmin) - ts < '60s' -- 60s should give a lot of reserve |
|
|
|
|
FROM committs_test |
|
|
|
|
ORDER BY id; |
|
|
|
|
@ -29,6 +29,6 @@ HINT: Make sure the configuration parameter "track_commit_timestamp" is set. |
|
|
|
|
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. |
|
|
|
|
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 |
|
|
|
|
HINT: Make sure the configuration parameter "track_commit_timestamp" is set. |
|
|
|
|
|