| 9814 | |
| 9815 | |
| 9816 | void cleanup_ftfuncs(SELECT_LEX *select_lex) |
| 9817 | { |
| 9818 | List_iterator<Item_func_match> li(*(select_lex->ftfunc_list)), |
| 9819 | lj(*(select_lex->ftfunc_list)); |
| 9820 | Item_func_match *ftf; |
| 9821 | |
| 9822 | while ((ftf=li++)) |
| 9823 | { |
| 9824 | ftf->cleanup(); |
| 9825 | } |
| 9826 | } |
| 9827 | |
| 9828 | |
| 9829 | int init_ftfuncs(THD *thd, SELECT_LEX *select_lex, bool no_order) |