1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-05 13:16:09 +03:00

Cset exclude: guilhem@mysql.com|ChangeSet|20040609132715|17355

This commit is contained in:
heikki@hundin.mysql.fi
2004-06-17 11:48:49 +03:00
parent 8ff57ee469
commit 918dd73f4f

View File

@@ -1163,7 +1163,7 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
break; break;
} }
mysql_log.write(thd,command,db); mysql_log.write(thd,command,db);
mysql_rm_db(thd, (lower_case_table_names == 2 ? alias : db), 0, 0); mysql_rm_db(thd,alias,0,0);
break; break;
} }
case COM_BINLOG_DUMP: case COM_BINLOG_DUMP:
@@ -2387,8 +2387,8 @@ mysql_execute_command(void)
send_error(&thd->net,ER_LOCK_OR_ACTIVE_TRANSACTION); send_error(&thd->net,ER_LOCK_OR_ACTIVE_TRANSACTION);
goto error; goto error;
} }
res=mysql_rm_db(thd, (lower_case_table_names == 2 ? alias : lex->name), res=mysql_rm_db(thd,(lower_case_table_names == 2 ? alias : lex->name),
lex->drop_if_exists, 0); lex->drop_if_exists,0);
break; break;
} }
case SQLCOM_CREATE_FUNCTION: case SQLCOM_CREATE_FUNCTION: