mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge branch 'bb-10.4-release' into bb-10.5-release
This commit is contained in:
@ -78,7 +78,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++))
|
||||
@ -90,7 +90,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