summaryrefslogtreecommitdiff
path: root/src/reconcile
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2016-04-17 16:18:23 -0400
committerKeith Bostic <keith@wiredtiger.com>2016-04-17 16:18:23 -0400
commitaaa52e081b7d531b80502dfdf1a682808d43624c (patch)
tree0d750ed10df0759942d42bd8a65eb6a571c46e9d /src/reconcile
parent72e6c5ff26b61dbe540172d7d9c9e41c52ea6ea5 (diff)
downloadmongo-aaa52e081b7d531b80502dfdf1a682808d43624c.tar.gz
WT-2558: WT_PAGE structure is 72B, reduce to 64B.
Move the row-store insert and update structures into the WT_PAGE_MODIFY structure.
Diffstat (limited to 'src/reconcile')
-rw-r--r--src/reconcile/rec_write.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reconcile/rec_write.c b/src/reconcile/rec_write.c
index 06550065c27..05225db8a94 100644
--- a/src/reconcile/rec_write.c
+++ b/src/reconcile/rec_write.c
@@ -3431,7 +3431,7 @@ __rec_update_las(WT_SESSION_IMPL *session,
case WT_PAGE_ROW_LEAF:
if (list->ins == NULL) {
slot = WT_ROW_SLOT(page, list->rip);
- upd = page->pg_row_upd[slot];
+ upd = page->modify->mod_row_update[slot];
} else
upd = list->ins->upd;
break;