summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_timestamp13.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/suite/test_timestamp13.py')
-rw-r--r--src/third_party/wiredtiger/test/suite/test_timestamp13.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_timestamp13.py b/src/third_party/wiredtiger/test/suite/test_timestamp13.py
index 65e0cb7df6f..1585a4cb194 100644
--- a/src/third_party/wiredtiger/test/suite/test_timestamp13.py
+++ b/src/third_party/wiredtiger/test/suite/test_timestamp13.py
@@ -107,11 +107,11 @@ class test_timestamp13(wttest.WiredTigerTestCase, suite_subprocess):
'key_format=i,value_format=i' + self.extra_config)
self.conn.set_timestamp('oldest_timestamp=10')
- self.session.begin_transaction('isolation=snapshot')
# Rounding to the oldest timestamp will allow the stale read_timestamp
# to succeed. The follow-up call to get the read timestamp returns the
# chosen read timestamp.
- self.session.timestamp_transaction('read_timestamp=5,round_to_oldest=true')
+ self.session.begin_transaction('isolation=snapshot,roundup_timestamps=(read=true)')
+ self.session.timestamp_transaction('read_timestamp=5')
self.assertTimestampsEqual(
self.session.query_timestamp('get=read'), '10')