1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

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

this fixes the crash of main.fulltest
This commit is contained in:
Sergei Golubchik
2018-02-05 16:00:56 +01:00
parent 2eb00d1eba
commit c98c616e7f

View File

@ -8414,7 +8414,6 @@ int init_ftfuncs(THD *thd, SELECT_LEX *select_lex, bool no_order)
DBUG_PRINT("info",("Performing FULLTEXT search"));
while ((ifm=li++))
#if MYSQL_VERSION_ID < 100213
if (unlikely(!ifm->fixed))
/*
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)
*/
li.remove();
else
#endif
ifm->init_search(thd, no_order);
}
return 0;