summaryrefslogtreecommitdiff
path: root/innobase
diff options
context:
space:
mode:
authorheikki@hundin.mysql.fi <>2005-03-07 15:28:10 +0200
committerheikki@hundin.mysql.fi <>2005-03-07 15:28:10 +0200
commit69fe070acb1081c01053363b82a8703a9cd9a98b (patch)
tree1d4b03a3373c905133e8241708453f08e76ec7c9 /innobase
parentdfab08eab003b4550c190c68e0ebb02f37d40ead (diff)
downloadmariadb-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.c2
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);