diff options
author | heikki@hundin.mysql.fi <> | 2005-03-07 15:28:10 +0200 |
---|---|---|
committer | heikki@hundin.mysql.fi <> | 2005-03-07 15:28:10 +0200 |
commit | 69fe070acb1081c01053363b82a8703a9cd9a98b (patch) | |
tree | 1d4b03a3373c905133e8241708453f08e76ec7c9 /innobase | |
parent | dfab08eab003b4550c190c68e0ebb02f37d40ead (diff) | |
download | mariadb-git-69fe070acb1081c01053363b82a8703a9cd9a98b.tar.gz |
trx0trx.c:
Print a hex dump of the trx_t object if trx->n_mysql_tables_in_use != 0 at trx_free()
Diffstat (limited to 'innobase')
-rw-r--r-- | innobase/trx/trx0trx.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/innobase/trx/trx0trx.c b/innobase/trx/trx0trx.c index 2fdee94b089..8f409034df0 100644 --- a/innobase/trx/trx0trx.c +++ b/innobase/trx/trx0trx.c @@ -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); |