mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Merge branch '10.6' into 10.7
This commit is contained in:
@ -6457,8 +6457,11 @@ find_field_in_tables(THD *thd, Item_ident *item,
|
||||
for (SELECT_LEX *sl= current_sel; sl && sl!=last_select;
|
||||
sl=sl->outer_select())
|
||||
{
|
||||
Item_in_subselect *in_subs=
|
||||
sl->master_unit()->item->get_IN_subquery();
|
||||
Item *subs= sl->master_unit()->item;
|
||||
if (!subs)
|
||||
continue;
|
||||
|
||||
Item_in_subselect *in_subs= subs->get_IN_subquery();
|
||||
if (in_subs &&
|
||||
in_subs->substype() == Item_subselect::IN_SUBS &&
|
||||
in_subs->test_strategy(SUBS_SEMI_JOIN))
|
||||
|
Reference in New Issue
Block a user