diff options
author | unknown <monty@mysql.com/narttu.mysql.fi> | 2007-10-01 15:32:07 +0300 |
---|---|---|
committer | unknown <monty@mysql.com/narttu.mysql.fi> | 2007-10-01 15:32:07 +0300 |
commit | 0741a4d1b0fa15865fd7bd1a3e8a785d388dd69b (patch) | |
tree | 845e2d405effb093e8f97de926712b62d1583cb0 /sql | |
parent | 674f49f8f415c35b37660d85234e268bd3bd03ef (diff) | |
download | mariadb-git-0741a4d1b0fa15865fd7bd1a3e8a785d388dd69b.tar.gz |
Removed extra spaces
Added extra debug
client/mysql_upgrade.c:
Removed extra space
client/mysqlcheck.c:
Removed extra space
client/mysqldump.c:
Removed extra space
client/mysqlimport.c:
Removed extra space
client/mysqlshow.c:
Removed extra space
client/mysqlslap.c:
Removed extra space
client/mysqltest.c:
Removed extra space
sql/handler.cc:
Added extra debug
Diffstat (limited to 'sql')
-rw-r--r-- | sql/handler.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/handler.cc b/sql/handler.cc index 2cb3c5aa348..d59ef4d037f 100644 --- a/sql/handler.cc +++ b/sql/handler.cc @@ -2502,8 +2502,9 @@ int handler::ha_repair(THD* thd, HA_CHECK_OPT* check_opt) int ha_enable_transaction(THD *thd, bool on) { int error=0; - DBUG_ENTER("ha_enable_transaction"); + DBUG_PRINT("enter", ("on: %d", (int) on)); + thd->transaction.on= on; if (on) { |