summaryrefslogtreecommitdiff
path: root/sql/ha_innodb.cc
diff options
context:
space:
mode:
authormarko@hundin.mysql.fi <>2005-04-21 15:16:16 +0300
committermarko@hundin.mysql.fi <>2005-04-21 15:16:16 +0300
commitc6e329d42c895377817e694c986100623efec942 (patch)
treebcc99dfa43bfa82fec54b36d9c13f9581684c980 /sql/ha_innodb.cc
parentab713b4b2279bc5162cc638d9cb7b72a5511ffb3 (diff)
downloadmariadb-git-c6e329d42c895377817e694c986100623efec942.tar.gz
ha_innodb.cc:
trx_is_interrupted(): Remove debug output.
Diffstat (limited to 'sql/ha_innodb.cc')
-rw-r--r--sql/ha_innodb.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/sql/ha_innodb.cc b/sql/ha_innodb.cc
index 2a4c9159618..025fc184fc9 100644
--- a/sql/ha_innodb.cc
+++ b/sql/ha_innodb.cc
@@ -1005,11 +1005,6 @@ trx_is_interrupted(
/* out: TRUE if interrupted */
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);
}