diff options
author | Luke Chen <luke.chen@mongodb.com> | 2020-11-20 17:30:42 +1100 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-11-20 07:24:19 +0000 |
commit | d0dfd00a48e83bc0e7e17d938f2578970a329304 (patch) | |
tree | 07a9a582d7fbfec81e6e82d2ee4b49e6d50d9362 /src/third_party/wiredtiger/dist | |
parent | efb1467bec93d1de4aff70e817e10645f2ebfb3f (diff) | |
download | mongo-d0dfd00a48e83bc0e7e17d938f2578970a329304.tar.gz |
Import wiredtiger: b22e16b7643e0e07c784962899b3a45728536947 from branch mongodb-5.0
ref: d05021d0ee..b22e16b764
for: 4.9.0
WT-6563 Create a reproducer for invalid modification application
WT-6672 Don't increase the writegen number until RTS cleans up the checkpoint
WT-6859 Implement search_near method for the history store cursor
Diffstat (limited to 'src/third_party/wiredtiger/dist')
-rw-r--r-- | src/third_party/wiredtiger/dist/api_data.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/third_party/wiredtiger/dist/api_data.py b/src/third_party/wiredtiger/dist/api_data.py index 14132297f13..c76938f7919 100644 --- a/src/third_party/wiredtiger/dist/api_data.py +++ b/src/third_party/wiredtiger/dist/api_data.py @@ -1264,6 +1264,15 @@ methods = { cursor without taking a lock, returning EBUSY if the operation conflicts with a running checkpoint''', type='boolean', undoc=True), + Config('debug', '', r''' + configure debug specific behavior on a cursor. Generally only + used for internal testing purposes''', + type='category', subconfig=[ + Config('release_evict', 'false', r''' + Configure the cursor to evict the page positioned on when the + reset API is used''', + type='boolean') + ]), Config('dump', '', r''' configure the cursor for dump format inputs and outputs: "hex" selects a simple hexadecimal format, "json" selects a JSON format |