summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/test/suite/test_compat04.py
diff options
context:
space:
mode:
authorLuke Chen <luke.chen@mongodb.com>2019-05-29 15:17:23 +1000
committerLuke Chen <luke.chen@mongodb.com>2019-05-29 15:17:23 +1000
commit441714bc4c70699950f3ac51a5cac41dcd413eaa (patch)
treebd9ebaedbbd2ad5e22cf0de79c1dd9e185807cca /src/third_party/wiredtiger/test/suite/test_compat04.py
parent76f671c7a714378951dc7d4d5e22073e45882633 (diff)
downloadmongo-r4.1.13.tar.gz
Import wiredtiger: 57bd75fee93b685c133281100719f886d0184589 from branch mongodb-4.2r4.1.13
ref: 5d321d0c60..57bd75fee9 for: 4.1.13 WT-4240 Document that system crashes may result in files that need salvaging WT-4710 Fix memory issue for non-verbose dump in datafile portability test WT-4712 Add debug log op record for non-logged tables WT-4732 Remove the bias from the eviction policy on the dhandle order WT-4760 Checkpoint should not read past a stable update WT-4771 Fix compatibility tests to handle a new version release WT-4799 wiredtiger.in references the wrong statistics script WT-4800 List all flags in the wt utility usage statement WT-4803 Implement file_max configuration for Cache Overflow mechanism WT-4804 Add support for ignore_prepare=force WT-4811 Fix durable timestamp assignment for updates created for truncate WT-4816 Don't disallow LSM configurations in test/format WT-4817 heap-buffer-overflow failure in timestamp_abort WT-4819 wt utility list command drops core on empty objects WT-4822 Extend statistics to track max pre compression page sizes WT-4823 Add check for uninitialised lookaside resources
Diffstat (limited to 'src/third_party/wiredtiger/test/suite/test_compat04.py')
-rw-r--r--src/third_party/wiredtiger/test/suite/test_compat04.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/third_party/wiredtiger/test/suite/test_compat04.py b/src/third_party/wiredtiger/test/suite/test_compat04.py
index a5b59021639..30f88252b2e 100644
--- a/src/third_party/wiredtiger/test/suite/test_compat04.py
+++ b/src/third_party/wiredtiger/test/suite/test_compat04.py
@@ -56,11 +56,13 @@ class test_compat04(wttest.WiredTigerTestCase, suite_subprocess):
#
create_release = [
('def_rel', dict(create_rel='none', log_crrel=3)),
+ ('32_rel', dict(create_rel='3.2', log_crrel=3)),
('31_rel', dict(create_rel="3.1", log_crrel=3)),
('30_rel', dict(create_rel="3.0", log_crrel=2)),
('26_rel', dict(create_rel="2.6", log_crrel=1)),
]
reconfig_release = [
+ ('32_rel', dict(rel="3.2", log_rel=3)),
('31_rel', dict(rel="3.1", log_rel=3)),
('30_rel', dict(rel="3.0", log_rel=2)),
('300_rel', dict(rel="3.0.0", log_rel=2)),