diff options
author | John Esmet <john.esmet@gmail.com> | 2014-03-02 21:27:00 -0500 |
---|---|---|
committer | John Esmet <john.esmet@gmail.com> | 2014-03-02 22:46:49 -0500 |
commit | a328b913a0a0be36523fe7290c0289df287a9dc0 (patch) | |
tree | 8b694d93b4a92b391163e22ea0065b553867cf7f /ft/rollback.cc | |
parent | be69db1f6eb2964d42609fc416507e5a8f564902 (diff) | |
download | mariadb-git-a328b913a0a0be36523fe7290c0289df287a9dc0.tar.gz |
fixes #46 Add dynamic-value omt clone (dmt) and use it to implement basement nodes
Diffstat (limited to 'ft/rollback.cc')
-rw-r--r-- | ft/rollback.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ft/rollback.cc b/ft/rollback.cc index 006f7e754d2..1162c4ebf2c 100644 --- a/ft/rollback.cc +++ b/ft/rollback.cc @@ -146,7 +146,7 @@ PAIR_ATTR rollback_memory_size(ROLLBACK_LOG_NODE log) { size_t size = sizeof(*log); if (log->rollentry_arena) { - size += memarena_total_memory_size(log->rollentry_arena); + size += memarena_total_footprint(log->rollentry_arena); } return make_rollback_pair_attr(size); } |