Commit bf8c52f4 authored by Barry Perlman's avatar Barry Perlman Committed by Yoni Fogel

[t:3130] Add start time of oldest living txn to engine status.

git-svn-id: file:///svn/mysql/tokudb-engine/tokudb-engine@26503 c7de825b-a66e-492c-adef-691d508d4ae1
parent 33b71945
...@@ -1027,6 +1027,7 @@ static bool tokudb_show_engine_status(THD * thd, stat_print_fn * stat_print) { ...@@ -1027,6 +1027,7 @@ static bool tokudb_show_engine_status(THD * thd, stat_print_fn * stat_print) {
STATPRINT("txn close (commit+abort)", buf); STATPRINT("txn close (commit+abort)", buf);
snprintf(buf, bufsiz, "%" PRIu64, engstat.txn_oldest_live); snprintf(buf, bufsiz, "%" PRIu64, engstat.txn_oldest_live);
STATPRINT("txn oldest live", buf); STATPRINT("txn oldest live", buf);
STATPRINT("txn oldest starttime", engstat.txn_oldest_live_starttime);
snprintf(buf, bufsiz, "%" PRIu64, engstat.next_lsn); snprintf(buf, bufsiz, "%" PRIu64, engstat.next_lsn);
STATPRINT("next LSN", buf); STATPRINT("next LSN", buf);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment