mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
bad fix of the bad cleanup corrected :)
sql/sql_parse.cc: bad fix of the bad cleanup corrected
This commit is contained in:
@ -1627,8 +1627,8 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
|
|||||||
break;
|
break;
|
||||||
mysql_log.write(thd,command,packet);
|
mysql_log.write(thd,command,packet);
|
||||||
bzero(&create_info, sizeof(create_info));
|
bzero(&create_info, sizeof(create_info));
|
||||||
error= mysql_create_db(thd, (lower_case_table_names == 2 ? alias : db),
|
mysql_create_db(thd, (lower_case_table_names == 2 ? alias : db),
|
||||||
&create_info, 0);
|
&create_info, 0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case COM_DROP_DB: // QQ: To be removed
|
case COM_DROP_DB: // QQ: To be removed
|
||||||
@ -1651,8 +1651,8 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
mysql_log.write(thd,command,db);
|
mysql_log.write(thd,command,db);
|
||||||
error= mysql_rm_db(thd, (lower_case_table_names == 2 ? alias : db),
|
mysql_rm_db(thd, (lower_case_table_names == 2 ? alias : db),
|
||||||
0, 0) ;
|
0, 0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#ifndef EMBEDDED_LIBRARY
|
#ifndef EMBEDDED_LIBRARY
|
||||||
|
Reference in New Issue
Block a user