mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
for multy-delete command used same algorithm of table reference (alias)
This commit is contained in:
@ -2665,9 +2665,8 @@ mysql_execute_command(THD *thd)
|
||||
TABLE_LIST *walk;
|
||||
for (walk= (TABLE_LIST*) tables; walk; walk= walk->next)
|
||||
{
|
||||
if ((!strcmp(auxi->real_name,walk->real_name) ||
|
||||
!strcmp(auxi->real_name,walk->alias)) &&
|
||||
!strcmp(walk->db,auxi->db))
|
||||
if (!strcmp(auxi->real_name, walk->alias) &&
|
||||
!strcmp(walk->db, auxi->db))
|
||||
break;
|
||||
}
|
||||
if (!walk)
|
||||
|
Reference in New Issue
Block a user