mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Cset exclude: guilhem@mysql.com|ChangeSet|20040609132715|17355
sql/sql_parse.cc: Exclude
This commit is contained in:
@ -1163,7 +1163,7 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
|
||||
break;
|
||||
}
|
||||
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;
|
||||
}
|
||||
case COM_BINLOG_DUMP:
|
||||
@ -2387,8 +2387,8 @@ mysql_execute_command(void)
|
||||
send_error(&thd->net,ER_LOCK_OR_ACTIVE_TRANSACTION);
|
||||
goto error;
|
||||
}
|
||||
res=mysql_rm_db(thd, (lower_case_table_names == 2 ? alias : lex->name),
|
||||
lex->drop_if_exists, 0);
|
||||
res=mysql_rm_db(thd,(lower_case_table_names == 2 ? alias : lex->name),
|
||||
lex->drop_if_exists,0);
|
||||
break;
|
||||
}
|
||||
case SQLCOM_CREATE_FUNCTION:
|
||||
|
Reference in New Issue
Block a user