diff options
author | marko@hundin.mysql.fi <> | 2005-04-21 15:16:16 +0300 |
---|---|---|
committer | marko@hundin.mysql.fi <> | 2005-04-21 15:16:16 +0300 |
commit | c6e329d42c895377817e694c986100623efec942 (patch) | |
tree | bcc99dfa43bfa82fec54b36d9c13f9581684c980 /sql/ha_innodb.cc | |
parent | ab713b4b2279bc5162cc638d9cb7b72a5511ffb3 (diff) | |
download | mariadb-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.cc | 5 |
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); } |