diff options
author | unknown <serg@serg.mysql.com> | 2003-01-23 13:20:37 +0100 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2003-01-23 13:20:37 +0100 |
commit | fc09f13c5db5f6c8abab4817d81f6a2b0cb7666a (patch) | |
tree | 3db355daba734e755d05c110ab5412717c6c7408 /include/ft_global.h | |
parent | 30a35bcfe456cc118381e5475c90dda32e414d72 (diff) | |
download | mariadb-git-fc09f13c5db5f6c8abab4817d81f6a2b0cb7666a.tar.gz |
--ft_stopword_file command-line option
Diffstat (limited to 'include/ft_global.h')
-rw-r--r-- | include/ft_global.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/ft_global.h b/include/ft_global.h index 449cc57729f..9acdf6aaaf3 100644 --- a/include/ft_global.h +++ b/include/ft_global.h @@ -46,6 +46,7 @@ struct st_ft_info }; #endif +extern const char *ft_stopword_file; extern const char *ft_precompiled_stopwords[]; extern ulong ft_min_word_len; @@ -53,7 +54,7 @@ extern ulong ft_max_word_len; extern ulong ft_max_word_len_for_sort; extern const char *ft_boolean_syntax; -int ft_init_stopwords(const char **); +int ft_init_stopwords(void); void ft_free_stopwords(void); #define FT_NL 0 |