diff options
author | Keith Bostic <keith@wiredtiger.com> | 2014-06-30 14:08:14 -0400 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2014-06-30 14:08:14 -0400 |
commit | 830ad16151635fb9b1e0bfdb077e5a403de4c70b (patch) | |
tree | 51e355ee3efba8d6538463258d6c99bb2fa0d433 /src/btree/bt_vrfy_dsk.c | |
parent | 98e9ab0c2538a1033922ae6b2d6749244075ede9 (diff) | |
download | mongo-830ad16151635fb9b1e0bfdb077e5a403de4c70b.tar.gz |
Convert row-store fast on-page key processing from per-page to per key.
Reference #1030, #1038.
Diffstat (limited to 'src/btree/bt_vrfy_dsk.c')
-rw-r--r-- | src/btree/bt_vrfy_dsk.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/btree/bt_vrfy_dsk.c b/src/btree/bt_vrfy_dsk.c index 93a872754e4..6c4d28a03ce 100644 --- a/src/btree/bt_vrfy_dsk.c +++ b/src/btree/bt_vrfy_dsk.c @@ -200,7 +200,7 @@ __verify_dsk_row( ++cell_num; /* Carefully unpack the cell. */ - if (__wt_cell_unpack_safe(NULL, cell, unpack, end) != 0) { + if (__wt_cell_unpack_safe(cell, unpack, end) != 0) { ret = __err_cell_corrupted(session, cell_num, addr); goto err; } @@ -467,7 +467,7 @@ __verify_dsk_col_int( ++cell_num; /* Carefully unpack the cell. */ - if (__wt_cell_unpack_safe(NULL, cell, unpack, end) != 0) + if (__wt_cell_unpack_safe(cell, unpack, end) != 0) return (__err_cell_corrupted(session, cell_num, addr)); /* Check the raw and collapsed cell types. */ @@ -534,7 +534,7 @@ __verify_dsk_col_var( ++cell_num; /* Carefully unpack the cell. */ - if (__wt_cell_unpack_safe(NULL, cell, unpack, end) != 0) + if (__wt_cell_unpack_safe(cell, unpack, end) != 0) return (__err_cell_corrupted(session, cell_num, addr)); /* Check the raw and collapsed cell types. */ |