Commit c98c616e authored by Sergei Golubchik's avatar Sergei Golubchik

no separate 10.2 fix for MDEV-14743 at this point in time

this fixes the crash of main.fulltest
parent 2eb00d1e
...@@ -8414,7 +8414,6 @@ int init_ftfuncs(THD *thd, SELECT_LEX *select_lex, bool no_order) ...@@ -8414,7 +8414,6 @@ int init_ftfuncs(THD *thd, SELECT_LEX *select_lex, bool no_order)
DBUG_PRINT("info",("Performing FULLTEXT search")); DBUG_PRINT("info",("Performing FULLTEXT search"));
while ((ifm=li++)) while ((ifm=li++))
#if MYSQL_VERSION_ID < 100213
if (unlikely(!ifm->fixed)) if (unlikely(!ifm->fixed))
/* /*
it mean that clause where was FT function was removed, so we have it mean that clause where was FT function was removed, so we have
...@@ -8422,7 +8421,6 @@ int init_ftfuncs(THD *thd, SELECT_LEX *select_lex, bool no_order) ...@@ -8422,7 +8421,6 @@ int init_ftfuncs(THD *thd, SELECT_LEX *select_lex, bool no_order)
*/ */
li.remove(); li.remove();
else else
#endif
ifm->init_search(thd, no_order); ifm->init_search(thd, no_order);
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment