1
0
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:
Sergei Golubchik
2022-02-10 21:16:50 +01:00
26 changed files with 5576 additions and 39 deletions

View File

@ -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))