summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/btree/bt_read.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/btree/bt_read.c')
-rw-r--r--src/third_party/wiredtiger/src/btree/bt_read.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/third_party/wiredtiger/src/btree/bt_read.c b/src/third_party/wiredtiger/src/btree/bt_read.c
index 69b0f95d205..5b0cba71c9c 100644
--- a/src/third_party/wiredtiger/src/btree/bt_read.c
+++ b/src/third_party/wiredtiger/src/btree/bt_read.c
@@ -31,9 +31,9 @@ __col_instantiate(WT_SESSION_IMPL *session,
__wt_free_update_list(session, upd);
/* Search the page and add updates. */
- WT_RET(__wt_col_search(session, recno, ref, cbt, true));
+ WT_RET(__wt_col_search(cbt, recno, ref, true, NULL));
WT_RET(__wt_col_modify(
- session, cbt, recno, NULL, updlist, WT_UPDATE_INVALID, false));
+ cbt, recno, NULL, updlist, WT_UPDATE_INVALID, false));
return (0);
}
@@ -60,9 +60,9 @@ __row_instantiate(WT_SESSION_IMPL *session,
__wt_free_update_list(session, upd);
/* Search the page and add updates. */
- WT_RET(__wt_row_search(session, key, ref, cbt, true, true));
+ WT_RET(__wt_row_search(cbt, key, true, ref, true, NULL));
WT_RET(__wt_row_modify(
- session, cbt, key, NULL, updlist, WT_UPDATE_INVALID, false));
+ cbt, key, NULL, updlist, WT_UPDATE_INVALID, false));
return (0);
}