Commit 309b4721 authored by unknown's avatar unknown
Browse files

trx0trx.c:

  Print a hex dump of the trx_t object if trx->n_mysql_tables_in_use != 0 at trx_free()


innobase/trx/trx0trx.c:
  Print a hex dump of the trx_t object if trx->n_mysql_tables_in_use != 0 at trx_free()
parent 39fb340d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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);