diff options
author | unknown <monty@mysql.com> | 2004-03-30 02:32:41 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-03-30 02:32:41 +0300 |
commit | ceeaa24d187b228fd6e8b1ac1e667d341155640f (patch) | |
tree | 54b32bf1935af765ea1bb9b118082d9ce067d4c0 /sql/sql_table.cc | |
parent | db9fde085fdbdacd48760c0243805e8df8b39a8c (diff) | |
download | mariadb-git-ceeaa24d187b228fd6e8b1ac1e667d341155640f.tar.gz |
false/true -> FALSE/TRUE
Fixes after last merge
mysql-test/r/bdb-crash.result:
fixed bad merge
mysql-test/r/myisam.result:
after merge fix
mysql-test/r/order_by.result:
fixed bad merge
mysql-test/t/order_by.test:
after merge fix
sql/field_conv.cc:
false/true -> FALSE/TRUE
sql/handler.cc:
false/true -> FALSE/TRUE
sql/item.cc:
false/true -> FALSE/TRUE
sql/item_cmpfunc.cc:
false/true -> FALSE/TRUE
sql/item_sum.cc:
false/true -> FALSE/TRUE
sql/slave.cc:
false/true -> FALSE/TRUE
sql/sql_acl.cc:
false/true -> FALSE/TRUE
sql/sql_cache.cc:
after merge fix
sql/sql_help.cc:
false/true -> FALSE/TRUE
sql/sql_olap.cc:
false/true -> FALSE/TRUE
sql/sql_parse.cc:
false/true -> FALSE/TRUE
sql/sql_select.cc:
fix after bad merge
sql/sql_table.cc:
fix after bad merge
sql/sql_test.cc:
false/true -> FALSE/TRUE
Diffstat (limited to 'sql/sql_table.cc')
-rw-r--r-- | sql/sql_table.cc | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/sql/sql_table.cc b/sql/sql_table.cc index b3728f4833e..db6f9043ec4 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -1669,13 +1669,7 @@ static int mysql_admin_table(THD* thd, TABLE_LIST* tables, case HA_ADMIN_REJECT: protocol->store("status", 6, system_charset_info); protocol->store("Operation need committed state",30, system_charset_info); - open_for_modify= false; - break; - - case HA_ADMIN_REJECT: - net_store_data(packet,"status"); - net_store_data(packet,"Operation need committed state"); - open_for_modify= false; + open_for_modify= FALSE; break; case HA_ADMIN_ALREADY_DONE: @@ -2081,9 +2075,10 @@ int mysql_discard_or_import_tablespace(THD *thd, err: close_thread_tables(thd); thd->tablespace_op=FALSE; - if (error == 0) { + if (error == 0) + { send_ok(thd); - DBUG_RETURN(0); + DBUG_RETURN(0); } DBUG_RETURN(error); } @@ -2878,13 +2873,14 @@ copy_data_between_tables(TABLE *from,TABLE *to, goto err; }; - /* Turn off recovery logging since rollback of an - alter table is to delete the new table so there - is no need to log the changes to it. */ - error = ha_recovery_logging(thd,FALSE); + /* + Turn off recovery logging since rollback of an alter table is to + delete the new table so there is no need to log the changes to it. + */ + error= ha_recovery_logging(thd,FALSE); if (error) { - error = 1; + error= 1; goto err; } |