mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge branch 'bb-10.3-release' into bb-10.4-release
Note, the fix for "MDEV-23328 Server hang due to Galera lock conflict resolution" was null-merged. 10.4 version of the fix is coming up separately
This commit is contained in:
@ -47,7 +47,7 @@ bool fix_fields_for_tvc(THD *thd, List_iterator_fast<List_item> &li)
|
||||
|
||||
while ((lst= li++))
|
||||
{
|
||||
List_iterator_fast<Item> it(*lst);
|
||||
List_iterator<Item> it(*lst);
|
||||
Item *item;
|
||||
|
||||
while ((item= it++))
|
||||
@ -59,7 +59,7 @@ bool fix_fields_for_tvc(THD *thd, List_iterator_fast<List_item> &li)
|
||||
while replacing their values to NAME_CONST()s.
|
||||
So fix only those that have not been.
|
||||
*/
|
||||
if (item->fix_fields_if_needed(thd, 0) ||
|
||||
if (item->fix_fields_if_needed_for_scalar(thd, it.ref()) ||
|
||||
item->check_is_evaluable_expression_or_error())
|
||||
DBUG_RETURN(true);
|
||||
}
|
||||
|
Reference in New Issue
Block a user