summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_prepare15.py
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2022-02-15 08:33:18 +1100
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-02-14 22:27:59 +0000
commitc05b9d22da8e01fe7e9fce8ae25da25e95fd448c (patch)
tree314920dedc6edc13a7c2c47209d3ddaa93c51914 /src/third_party/wiredtiger/test/suite/test_prepare15.py
parent6d8d069edc55f1b4bbd656b4bee9124f32f27f7d (diff)
downloadmongo-c05b9d22da8e01fe7e9fce8ae25da25e95fd448c.tar.gz
Import wiredtiger: 460513f9f4bc3948a85ef4b772dfbb9ab7949778 from branch mongodb-master
ref: d0ec3886a5..460513f9f4 for: 5.3.0 WT-8601 Timestamps do not work with logged tables.
Diffstat (limited to 'src/third_party/wiredtiger/test/suite/test_prepare15.py')
-rw-r--r--src/third_party/wiredtiger/test/suite/test_prepare15.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_prepare15.py b/src/third_party/wiredtiger/test/suite/test_prepare15.py
index c89bbd10e0b..3d1c111da77 100644
--- a/src/third_party/wiredtiger/test/suite/test_prepare15.py
+++ b/src/third_party/wiredtiger/test/suite/test_prepare15.py
@@ -57,12 +57,10 @@ class test_prepare15(wttest.WiredTigerTestCase):
config = 'cache_size=50MB'
if self.in_memory:
config += ',in_memory=true'
- else:
- config += ',in_memory=false'
return config
def test_prepare_hs_update_and_tombstone(self):
- # Create a table without logging.
+ # Create a table.
uri = "table:prepare15"
create_config = 'key_format={},value_format={}'.format(self.key_format, self.value_format)
self.session.create(uri, create_config)
@@ -147,7 +145,7 @@ class test_prepare15(wttest.WiredTigerTestCase):
self.session.commit_transaction()
def test_prepare_hs_update(self):
- # Create a table without logging.
+ # Create a table.
uri = "table:prepare15"
create_config = 'key_format={},value_format={}'.format(self.key_format, self.value_format)
self.session.create(uri, create_config)
@@ -250,7 +248,7 @@ class test_prepare15(wttest.WiredTigerTestCase):
self.session.commit_transaction()
def test_prepare_no_hs(self):
- # Create a table without logging.
+ # Create a table.
uri = "table:prepare15"
create_config = 'key_format={},value_format={}'.format(self.key_format, self.value_format)
self.session.create(uri, create_config)