aboutsummaryrefslogtreecommitdiff
path: root/src/test/modules/commit_ts/sql/commit_timestamp.sql
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2014-12-15 20:56:09 -0500
committerNoah Misch <noah@leadboat.com>2014-12-15 20:56:09 -0500
commit0916eba131530b296f86137759a32f66ffedff7b (patch)
treefb5f8cfc2eb078386a3887795b8dd26fe327be4c /src/test/modules/commit_ts/sql/commit_timestamp.sql
parent733a264ddc1ad29d9cb91cbd712c1ef5f92886c8 (diff)
downloadpostgresql-0916eba131530b296f86137759a32f66ffedff7b.tar.gz
postgresql-0916eba131530b296f86137759a32f66ffedff7b.zip
Fix commit_ts test suite for systems with coarse timestamp granularity.
Noticed on a couple of Windows configurations. Petr Jelinek, reviewed by Michael Paquier.
Diffstat (limited to 'src/test/modules/commit_ts/sql/commit_timestamp.sql')
-rw-r--r--src/test/modules/commit_ts/sql/commit_timestamp.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/modules/commit_ts/sql/commit_timestamp.sql b/src/test/modules/commit_ts/sql/commit_timestamp.sql
index 9beb78a91d2..4e041a53473 100644
--- a/src/test/modules/commit_ts/sql/commit_timestamp.sql
+++ b/src/test/modules/commit_ts/sql/commit_timestamp.sql
@@ -10,7 +10,7 @@ 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;
@@ -21,4 +21,4 @@ SELECT pg_xact_commit_timestamp('0'::xid);
SELECT pg_xact_commit_timestamp('1'::xid);
SELECT pg_xact_commit_timestamp('2'::xid);
-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;