trx0trx.c:

  Print a hex dump of the trx_t object if trx->n_mysql_tables_in_use != 0 at trx_free()
parent dfab08ea
......@@ -268,6 +268,8 @@ trx_free(
(ulong)trx->mysql_n_tables_locked);
trx_print(stderr, trx);
ut_print_buf(stderr, (byte*)trx, sizeof(trx_t));
}
ut_a(trx->magic_n == TRX_MAGIC_N);
......
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