summaryrefslogtreecommitdiff
path: root/src/btree/bt_split.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/btree/bt_split.c')
-rw-r--r--src/btree/bt_split.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/btree/bt_split.c b/src/btree/bt_split.c
index 2862c7fb6d7..a0db4457f62 100644
--- a/src/btree/bt_split.c
+++ b/src/btree/bt_split.c
@@ -1446,8 +1446,8 @@ __split_multi_inmem(
WT_ERR(__wt_col_search(session, recno, ref, &cbt));
/* Apply the modification. */
- WT_ERR(__wt_col_modify(session,
- &cbt, recno, NULL, upd, WT_UPDATE_STANDARD, true));
+ WT_ERR(__wt_col_modify(
+ session, &cbt, recno, NULL, upd, upd->type, true));
break;
case WT_PAGE_ROW_LEAF:
/* Build a key. */
@@ -1468,8 +1468,8 @@ __split_multi_inmem(
WT_ERR(__wt_row_search(session, key, ref, &cbt, true));
/* Apply the modification. */
- WT_ERR(__wt_row_modify(session, &cbt,
- key, NULL, upd, WT_UPDATE_STANDARD, true));
+ WT_ERR(__wt_row_modify(
+ session, &cbt, key, NULL, upd, upd->type, true));
break;
WT_ILLEGAL_VALUE_ERR(session);
}