From c98c616e7f729e4c59fbd48a6a2068e858a57fcf Mon Sep 17 00:00:00 2001 From: Sergei Golubchik Date: Mon, 5 Feb 2018 16:00:56 +0100 Subject: [PATCH] no separate 10.2 fix for MDEV-14743 at this point in time this fixes the crash of main.fulltest --- sql/sql_base.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/sql/sql_base.cc b/sql/sql_base.cc index eb92ed631df..53f741b94a8 100644 --- a/sql/sql_base.cc +++ b/sql/sql_base.cc @@ -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;