mirror of
https://github.com/MariaDB/server.git
synced 2026-04-27 02:35:29 +02:00
Fixed fulltext after merge from 3.23.45
First (incomplete) version of transaction and as3ap tests. BitKeeper/etc/ignore: Added sql-bench/test-transactions to the ignore list mysql-test/r/fulltext.result: Update fulltext results after merge sql-bench/Makefile.am: Added transaction test sql-bench/run-all-tests.sh: Added transaction test sql-bench/server-cfg.sh: Added transaction test sql-bench/test-ATIS.sh: Cleanup sql/item_func.cc: Fix bad merge sql/mysqld.cc: Cleanup sql/sql_base.cc: Fix bad merge sql/sql_delete.cc: Cleanup sql/sql_parse.cc: Fix bad merge sql/sql_select.cc: Fix bad merge sql/sql_union.cc: Fix bad merge tools/mysqlmanager.c: C
This commit is contained in:
parent
e673b6dcf8
commit
38357b30e6
16 changed files with 1030 additions and 86 deletions
|
|
@ -2174,8 +2174,8 @@ bool remove_table_from_cache(THD *thd, const char *db, const char *table_name,
|
|||
|
||||
int setup_ftfuncs(THD *thd)
|
||||
{
|
||||
List_iterator<Item_func_match> li(thd->lex.ftfunc_list),
|
||||
lj(thd->lex.ftfunc_list);
|
||||
List_iterator<Item_func_match> li(thd->lex.select_lex.ftfunc_list),
|
||||
lj(thd->lex.select_lex.ftfunc_list);
|
||||
Item_func_match *ftf, *ftf2;
|
||||
|
||||
while ((ftf=li++))
|
||||
|
|
@ -2195,7 +2195,7 @@ int setup_ftfuncs(THD *thd)
|
|||
|
||||
int init_ftfuncs(THD *thd, bool no_order)
|
||||
{
|
||||
List_iterator<Item_func_match> li(thd->lex.ftfunc_list);
|
||||
List_iterator<Item_func_match> li(thd->lex.select_lex.ftfunc_list);
|
||||
Item_func_match *ifm;
|
||||
DBUG_PRINT("info",("Performing FULLTEXT search"));
|
||||
thd->proc_info="FULLTEXT initialization";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue