mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
5.5 merge
This commit is contained in:
@ -1583,6 +1583,15 @@ int multi_update::prepare(List<Item> ¬_used_values,
|
||||
DBUG_RETURN(thd->is_fatal_error != 0);
|
||||
}
|
||||
|
||||
void multi_update::update_used_tables()
|
||||
{
|
||||
Item *item;
|
||||
List_iterator_fast<Item> it(*values);
|
||||
while ((item= it++))
|
||||
{
|
||||
item->update_used_tables();
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
Check if table is safe to update on fly
|
||||
|
Reference in New Issue
Block a user