mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 15:24:16 +01:00
refs #145 capture the node's height before calling finalize(), which is
the last point we may read the node variable safely.
This commit is contained in:
parent
3fe7781a19
commit
3c0a9bcedd
1 changed files with 2 additions and 1 deletions
|
@ -1206,6 +1206,7 @@ int toku_ftnode_pe_callback(void *ftnode_pv, PAIR_ATTR old_attr, void *write_ext
|
|||
|
||||
exit:
|
||||
// call the finalize callback with a new pair attr
|
||||
int height = node->height;
|
||||
PAIR_ATTR new_attr = make_ftnode_pair_attr(node);
|
||||
finalize(new_attr, finalize_extra);
|
||||
|
||||
|
@ -1222,7 +1223,7 @@ exit:
|
|||
}
|
||||
// stats
|
||||
if (num_partial_evictions > 0) {
|
||||
if (node->height == 0) {
|
||||
if (height == 0) {
|
||||
long delta = old_attr.leaf_size - new_attr.leaf_size;
|
||||
STATUS_INC(FT_PARTIAL_EVICTIONS_LEAF, num_partial_evictions);
|
||||
STATUS_INC(FT_PARTIAL_EVICTIONS_LEAF_BYTES, delta);
|
||||
|
|
Loading…
Add table
Reference in a new issue