Commit 87c4f37a authored by unknown's avatar unknown

ha_innodb.cc:

  trx_is_interrupted(): Remove debug output.


sql/ha_innodb.cc:
  trx_is_interrupted(): Remove debug output.
parent fea29080
...@@ -1005,11 +1005,6 @@ trx_is_interrupted( ...@@ -1005,11 +1005,6 @@ trx_is_interrupted(
/* out: TRUE if interrupted */ /* out: TRUE if interrupted */
trx_t* trx) /* in: transaction */ trx_t* trx) /* in: transaction */
{ {
fprintf(stderr,
"trx_is_interrupted: %p %p %d\n",
trx, trx ? trx->mysql_thd : 0,
trx && trx->mysql_thd ? ((THD*) trx->mysql_thd)->killed : -1);
return(trx && trx->mysql_thd && ((THD*) trx->mysql_thd)->killed); return(trx && trx->mysql_thd && ((THD*) trx->mysql_thd)->killed);
} }
......
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