diff options
author | Michael Cahill <michael.cahill@wiredtiger.com> | 2013-05-27 17:35:36 +1000 |
---|---|---|
committer | Michael Cahill <michael.cahill@wiredtiger.com> | 2013-05-27 17:35:36 +1000 |
commit | 2b2ca70375063a536b9e3102571358644c8e5314 (patch) | |
tree | 48df8b37f6ff3a4378aeb8e63cad9334d046ed29 /test/suite/test_perf001.py | |
parent | 36566e297d1a1064be90fe2d5c8361b657d9224b (diff) | |
download | mongo-2b2ca70375063a536b9e3102571358644c8e5314.tar.gz |
Simplify scans through the global table of transaction IDs.
Stop caching multiple copies of the oldest transaction ID required to stay in
memory. In the process, fix a race that could invalidate the calculation of
the oldest ID.
refs #552
Diffstat (limited to 'test/suite/test_perf001.py')
-rw-r--r-- | test/suite/test_perf001.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/suite/test_perf001.py b/test/suite/test_perf001.py index 7df5e3fab29..a97ff5cf5d9 100644 --- a/test/suite/test_perf001.py +++ b/test/suite/test_perf001.py @@ -38,8 +38,8 @@ class test_perf001(wttest.WiredTigerTestCase): scenarios = [ #('file-file', dict(tabletype='file',indextype='file')), - #('file-lsm', dict(tabletype='file',indextype='lsm')), - ('lsm-file', dict(tabletype='lsm',indextype='file')), + ('file-lsm', dict(tabletype='file',indextype='lsm')), + #('lsm-file', dict(tabletype='lsm',indextype='file')), #('lsm-lsm', dict(tabletype='lsm',indextype='lsm')), ] |