summaryrefslogtreecommitdiff
path: root/ft/rollback.cc
diff options
context:
space:
mode:
authorJohn Esmet <john.esmet@gmail.com>2014-03-02 21:27:00 -0500
committerJohn Esmet <john.esmet@gmail.com>2014-03-02 22:46:49 -0500
commita328b913a0a0be36523fe7290c0289df287a9dc0 (patch)
tree8b694d93b4a92b391163e22ea0065b553867cf7f /ft/rollback.cc
parentbe69db1f6eb2964d42609fc416507e5a8f564902 (diff)
downloadmariadb-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.cc2
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);
}