diff options
author | Keith Bostic <keith@wiredtiger.com> | 2014-07-07 14:04:32 -0400 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2014-07-07 14:04:32 -0400 |
commit | de5627cce9f705b21852a23196e4fb9598bfa9f1 (patch) | |
tree | 371f0197df65c32289ab777ac35a3428eec67c48 /src/btree/bt_slvg.c | |
parent | 9d1517b5e2eef4cdfcb4f6310d0543e9255c586e (diff) | |
download | mongo-de5627cce9f705b21852a23196e4fb9598bfa9f1.tar.gz |
Encode the location/length of simple values in the WT_ROW pointer, along
with the key.
Diffstat (limited to 'src/btree/bt_slvg.c')
-rw-r--r-- | src/btree/bt_slvg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/btree/bt_slvg.c b/src/btree/bt_slvg.c index 5f898a9151d..0fe020e783a 100644 --- a/src/btree/bt_slvg.c +++ b/src/btree/bt_slvg.c @@ -1927,7 +1927,7 @@ __slvg_row_merge_ovfl(WT_SESSION_IMPL *session, } } - if ((cell = __wt_row_leaf_value(page, rip, NULL)) == NULL) + if ((cell = __wt_row_leaf_value_cell(page, rip, NULL)) == NULL) continue; __wt_cell_unpack(cell, unpack); if (unpack->type == WT_CELL_VALUE_OVFL) { |