diff options
author | Michael Paquier <michael@paquier.xyz> | 2020-07-13 10:54:26 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2020-07-13 10:54:26 +0900 |
commit | 5bfe6a3c485d3259f59fa2d2e1d34dea1a3baeba (patch) | |
tree | 8a8b23b48b9e38572552088f22436d7c29380a1c /src/test/modules/commit_ts/expected/commit_timestamp.out | |
parent | ea3e15d1691ec4cadc67f160cc91c7f237a705ae (diff) | |
download | postgresql-5bfe6a3c485d3259f59fa2d2e1d34dea1a3baeba.tar.gz postgresql-5bfe6a3c485d3259f59fa2d2e1d34dea1a3baeba.zip |
Fix timestamp range handling in regression tests of modules/commit_ts/
Switching the regression tests to use tstzrange() has proved to not be a
good idea for environments where the timestamp precision is low, as
internal range checks exclude the upper bound. So, if the commit
timestamp of a transaction matched with now() from the next query,
the test would fail. This changes to use two bound checks instead of
the range function, where the upper bound is inclusive.
Per buildfarm member jacana.
Discussion: https://postgr.es/m/20200712122507.GD21680@paquier.xyz
Diffstat (limited to 'src/test/modules/commit_ts/expected/commit_timestamp.out')
-rw-r--r-- | src/test/modules/commit_ts/expected/commit_timestamp.out | 49 |
1 files changed, 28 insertions, 21 deletions
diff --git a/src/test/modules/commit_ts/expected/commit_timestamp.out b/src/test/modules/commit_ts/expected/commit_timestamp.out index d484d489111..bb2fda27681 100644 --- a/src/test/modules/commit_ts/expected/commit_timestamp.out +++ b/src/test/modules/commit_ts/expected/commit_timestamp.out @@ -40,12 +40,13 @@ SELECT pg_xact_commit_timestamp('2'::xid); (1 row) SELECT x.xid::text::bigint > 0 as xid_valid, - x.timestamp <@ tstzrange('-infinity'::timestamptz, now()) AS ts_in_range, - roident != 0 AS valid_roident + x.timestamp > '-infinity'::timestamptz AS ts_low, + x.timestamp <= now() AS ts_high, + roident != 0 AS valid_roident FROM pg_last_committed_xact() x; - xid_valid | ts_in_range | valid_roident ------------+-------------+--------------- - t | t | f + xid_valid | ts_low | ts_high | valid_roident +-----------+--------+---------+--------------- + t | t | t | f (1 row) -- Test non-normal transaction ids. @@ -71,20 +72,22 @@ SELECT * FROM pg_xact_commit_timestamp_origin('2'::xid); -- ok, NULL -- Test transaction without replication origin SELECT txid_current() as txid_no_origin \gset -SELECT x.timestamp <@ tstzrange('-infinity'::timestamptz, now()) AS ts_in_range, +SELECT x.timestamp > '-infinity'::timestamptz AS ts_low, + x.timestamp <= now() AS ts_high, roident != 0 AS valid_roident FROM pg_last_committed_xact() x; - ts_in_range | valid_roident --------------+--------------- - t | f + ts_low | ts_high | valid_roident +--------+---------+--------------- + t | t | f (1 row) -SELECT x.timestamp <@ tstzrange('-infinity'::timestamptz, now()) AS ts_in_range, +SELECT x.timestamp > '-infinity'::timestamptz AS ts_low, + x.timestamp <= now() AS ts_high, roident != 0 AS valid_roident FROM pg_xact_commit_timestamp_origin(:'txid_no_origin') x; - ts_in_range | valid_roident --------------+--------------- - t | f + ts_low | ts_high | valid_roident +--------+---------+--------------- + t | t | f (1 row) -- Test transaction with replication origin @@ -102,20 +105,24 @@ SELECT pg_replication_origin_session_setup('regress_commit_ts: get_origin'); (1 row) SELECT txid_current() as txid_with_origin \gset -SELECT x.timestamp <@ tstzrange('-infinity'::timestamptz, now()) AS ts_in_range, r.roname +SELECT x.timestamp > '-infinity'::timestamptz AS ts_low, + x.timestamp <= now() AS ts_high, + r.roname FROM pg_last_committed_xact() x, pg_replication_origin r WHERE r.roident = x.roident; - ts_in_range | roname --------------+------------------------------- - t | regress_commit_ts: get_origin + ts_low | ts_high | roname +--------+---------+------------------------------- + t | t | regress_commit_ts: get_origin (1 row) -SELECT x.timestamp <@ tstzrange('-infinity'::timestamptz, now()) AS ts_in_range, r.roname +SELECT x.timestamp > '-infinity'::timestamptz AS ts_low, + x.timestamp <= now() AS ts_high, + r.roname FROM pg_xact_commit_timestamp_origin(:'txid_with_origin') x, pg_replication_origin r WHERE r.roident = x.roident; - ts_in_range | roname --------------+------------------------------- - t | regress_commit_ts: get_origin + ts_low | ts_high | roname +--------+---------+------------------------------- + t | t | regress_commit_ts: get_origin (1 row) SELECT pg_replication_origin_session_reset(); |