mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge remote-tracking branch '5.5' into 10.0
This commit is contained in:
@ -9095,7 +9095,17 @@ int init_ftfuncs(THD *thd, SELECT_LEX *select_lex, bool no_order)
|
||||
DBUG_PRINT("info",("Performing FULLTEXT search"));
|
||||
|
||||
while ((ifm=li++))
|
||||
ifm->init_search(no_order);
|
||||
#if MYSQL_VERSION_ID < 100213
|
||||
if (unlikely(!ifm->fixed))
|
||||
/*
|
||||
it mean that clause where was FT function was removed, so we have
|
||||
to remove the function from the list.
|
||||
*/
|
||||
li.remove();
|
||||
else
|
||||
#endif
|
||||
ifm->init_search(no_order);
|
||||
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
Reference in New Issue
Block a user