diff options
author | serg@serg.mysql.com <> | 2001-11-21 18:05:11 +0100 |
---|---|---|
committer | serg@serg.mysql.com <> | 2001-11-21 18:05:11 +0100 |
commit | f6cf7618be1db2d5f0f1ccf67acb1a4fa6f9877a (patch) | |
tree | 4083911859b8a2c60e05fecf7546f02a914386f1 /sql/sql_parse.cc | |
parent | 47a75b04d4103339ea45a4d3cb5bee3a1ed3180d (diff) | |
download | mariadb-git-f6cf7618be1db2d5f0f1ccf67acb1a4fa6f9877a.tar.gz |
removed ftfuncs argument for mysql_select
it uses now thd->lex.ftfunc_list
moved ft-initialization to a separate function
re-disabled implicit ft initialization
Diffstat (limited to 'sql/sql_parse.cc')
-rw-r--r-- | sql/sql_parse.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sql/sql_parse.cc b/sql/sql_parse.cc index 18ab3c45359..5804060a25a 100644 --- a/sql/sql_parse.cc +++ b/sql/sql_parse.cc @@ -1133,7 +1133,6 @@ mysql_execute_command(void) { res=mysql_select(thd,tables,lex->item_list, lex->where, - lex->ftfunc_list, (ORDER*) lex->order_list.first, (ORDER*) lex->group_list.first, lex->having, @@ -1283,7 +1282,6 @@ mysql_execute_command(void) { res=mysql_select(thd,tables->next,lex->item_list, lex->where, - lex->ftfunc_list, (ORDER*) lex->order_list.first, (ORDER*) lex->group_list.first, lex->having, @@ -1577,7 +1575,6 @@ mysql_execute_command(void) { res=mysql_select(thd,tables->next,lex->item_list, lex->where, - lex->ftfunc_list, (ORDER*) lex->order_list.first, (ORDER*) lex->group_list.first, lex->having, |