mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
After merge fixes
Fixed compiler warnings Fix core dump when sending SIGHUP to mysqld
This commit is contained in:
@ -776,12 +776,10 @@ bool mysql_multi_update_prepare(THD *thd)
|
||||
*/
|
||||
List_iterator_fast<Item> it(*fields);
|
||||
Item *item;
|
||||
while (item= it++)
|
||||
{
|
||||
while ((item= it++))
|
||||
item->cleanup();
|
||||
}
|
||||
|
||||
/* We have to cleunup translation tables of views. */
|
||||
/* We have to cleanup translation tables of views. */
|
||||
for (TABLE_LIST *tbl= table_list; tbl; tbl= tbl->next_global)
|
||||
tbl->cleanup_items();
|
||||
|
||||
|
Reference in New Issue
Block a user