summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/btree/bt_split.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/wiredtiger/src/btree/bt_split.c')
-rw-r--r--src/third_party/wiredtiger/src/btree/bt_split.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/third_party/wiredtiger/src/btree/bt_split.c b/src/third_party/wiredtiger/src/btree/bt_split.c
index 765d9240657..6fc62f0a52b 100644
--- a/src/third_party/wiredtiger/src/btree/bt_split.c
+++ b/src/third_party/wiredtiger/src/btree/bt_split.c
@@ -1782,14 +1782,12 @@ __split_insert(WT_SESSION_IMPL *session, WT_REF *ref)
if (type == WT_PAGE_ROW_LEAF) {
/*
- * Copy the first key from the original page into first ref in
- * the new parent. Pages created in memory always have a
- * "smallest" insert list, so look there first. If we don't
- * find one, get the first key from the disk image.
+ * Copy the first key from the original page into first ref in the new parent. Pages created
+ * in memory always have a "smallest" insert list, so look there first. If we don't find
+ * one, get the first key from the disk image.
*
- * We can't just use the key from the original ref: it may have
- * been suffix-compressed, and after the split the truncated key
- * may not be valid.
+ * We can't just use the key from the original ref: it may have been suffix-compressed, and
+ * after the split the truncated key may not be valid.
*/
WT_ERR(__wt_scr_alloc(session, 0, &key));
if ((ins = WT_SKIP_FIRST(WT_ROW_INSERT_SMALLEST(page))) != NULL) {