[t:4182] #4182 Add mallocator version to engine status in handlerton.

git-svn-id: file:///svn/mysql/tokudb-engine/tokudb-engine@37427 c7de825b-a66e-492c-adef-691d508d4ae1
This commit is contained in:
Barry Perlman 2011-11-30 16:19:23 +00:00 committed by Yoni Fogel
parent c44cec6f6a
commit bc3a56f447

View file

@ -1549,6 +1549,8 @@ static bool tokudb_show_engine_status(THD * thd, stat_print_fn * stat_print) {
STATPRINT("mem freed", buf);
snprintf(buf, bufsiz, "%" PRIu64, engstat.max_mem_in_use);
STATPRINT("max mem in use", buf);
snprintf(buf, bufsiz, "%s", engstat.mallocator_version);
STATPRINT("mallocator version", buf);
}
if (error) { my_errno = error; }
TOKUDB_DBUG_RETURN(error);