diff options
author | unknown <serg@serg.mylan> | 2004-11-16 12:39:10 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-11-16 12:39:10 +0100 |
commit | b23f183049ba66ea34348b2d0c5e9a1dd6547c3c (patch) | |
tree | dbf3c76637b989fc90b735a887cb8af848bf6516 | |
parent | f4110834a374dc647f2cba4d7bceaa88dc9d66e9 (diff) | |
download | mariadb-git-b23f183049ba66ea34348b2d0c5e9a1dd6547c3c.tar.gz |
bad fix of the bad cleanup corrected :)
sql/sql_parse.cc:
bad fix of the bad cleanup corrected
-rw-r--r-- | sql/sql_parse.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index f2df082199f..a95be3c1d62 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -1627,8 +1627,8 @@ bool dispatch_command(enum enum_server_command command, THD *thd, break; mysql_log.write(thd,command,packet); bzero(&create_info, sizeof(create_info)); - error= mysql_create_db(thd, (lower_case_table_names == 2 ? alias : db), - &create_info, 0); + mysql_create_db(thd, (lower_case_table_names == 2 ? alias : db), + &create_info, 0); break; } case COM_DROP_DB: // QQ: To be removed @@ -1651,8 +1651,8 @@ bool dispatch_command(enum enum_server_command command, THD *thd, break; } mysql_log.write(thd,command,db); - error= mysql_rm_db(thd, (lower_case_table_names == 2 ? alias : db), - 0, 0) ; + mysql_rm_db(thd, (lower_case_table_names == 2 ? alias : db), + 0, 0); break; } #ifndef EMBEDDED_LIBRARY |