summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_hs08.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/test/suite/test_hs08.py')
-rw-r--r--src/third_party/wiredtiger/test/suite/test_hs08.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_hs08.py b/src/third_party/wiredtiger/test/suite/test_hs08.py
index 9899842d529..9388121cdad 100644
--- a/src/third_party/wiredtiger/test/suite/test_hs08.py
+++ b/src/third_party/wiredtiger/test/suite/test_hs08.py
@@ -38,6 +38,11 @@ def timestamp_str(t):
class test_hs08(wttest.WiredTigerTestCase):
conn_config = 'cache_size=100MB,statistics=(all)'
session_config = 'isolation=snapshot'
+ key_format_values = [
+ ('column', dict(key_format='r')),
+ ('integer', dict(key_format='i')),
+ ]
+ scenarios = make_scenarios(key_format_values)
def get_stat(self, stat):
stat_cursor = self.session.open_cursor('statistics:')
@@ -47,7 +52,7 @@ class test_hs08(wttest.WiredTigerTestCase):
def test_modify_insert_to_hs(self):
uri = "table:test_hs08"
- create_params = 'value_format=S,key_format=i'
+ create_params = 'value_format=S,key_format={}'.format(self.key_format)
value1 = 'a' * 1000
self.session.create(uri, create_params)