summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/cursor/cur_table.c
diff options
context:
space:
mode:
authorWill Korteland <will.korteland@mongodb.com>2022-04-29 04:01:18 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-04-29 04:41:56 +0000
commit8a3dc0b3d84b06c74ebeea4fa0bd3bbda7df060a (patch)
tree1f82bfea049c9c1b34aae4742543a19043449dcc /src/third_party/wiredtiger/src/cursor/cur_table.c
parentdfe78f293480782ff9afccbf712d3b61819158ae (diff)
downloadmongo-8a3dc0b3d84b06c74ebeea4fa0bd3bbda7df060a.tar.gz
Import wiredtiger: c2c06e9771f4006cb69b96dc30e0a36105a0578a from branch mongodb-master
ref: 1b1eef9191..c2c06e9771 for: 6.1.0-rc0 WT-9208 add cursor method to allow applications to detect checkpoint cursor mismatch
Diffstat (limited to 'src/third_party/wiredtiger/src/cursor/cur_table.c')
-rw-r--r--src/third_party/wiredtiger/src/cursor/cur_table.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/third_party/wiredtiger/src/cursor/cur_table.c b/src/third_party/wiredtiger/src/cursor/cur_table.c
index 3f6d53db4ae..0fe18bdfd3c 100644
--- a/src/third_party/wiredtiger/src/cursor/cur_table.c
+++ b/src/third_party/wiredtiger/src/cursor/cur_table.c
@@ -105,6 +105,7 @@ __wt_apply_single_idx(WT_SESSION_IMPL *session, WT_INDEX *idx, WT_CURSOR *cur,
__wt_cursor_notsup, /* largest_key */
__wt_cursor_notsup, /* cache */
__wt_cursor_reopen_notsup, /* reopen */
+ __wt_cursor_checkpoint_id, /* checkpoint ID */
__wt_cursor_notsup); /* close */
WT_CURSOR_EXTRACTOR extract_cursor;
WT_DECL_RET;
@@ -992,6 +993,7 @@ __wt_curtable_open(WT_SESSION_IMPL *session, const char *uri, WT_CURSOR *owner,
__curtable_largest_key, /* largest_key */
__wt_cursor_notsup, /* cache */
__wt_cursor_reopen_notsup, /* reopen */
+ __wt_cursor_checkpoint_id, /* checkpoint ID */
__curtable_close); /* close */
WT_CONFIG_ITEM cval;
WT_CURSOR *cursor;