diff options
author | monty@hundin.mysql.fi <> | 2001-11-05 03:43:00 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-11-05 03:43:00 +0200 |
commit | 96fc8a7de610ad117077567049d4f470ac741220 (patch) | |
tree | 6567b59b5e3288b8e83bd3f7dd47c66c15832a8d /include/ft_global.h | |
parent | 3afb157ca21925c53724425785ab0769397e3b45 (diff) | |
download | mariadb-git-96fc8a7de610ad117077567049d4f470ac741220.tar.gz |
Make ft_xxx variables ulong to not break mysqld.cc init of variables.
mysqltest: replace_result now also affects error messages
Diffstat (limited to 'include/ft_global.h')
-rw-r--r-- | include/ft_global.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ft_global.h b/include/ft_global.h index 0dbef652ce2..f08b6cea6ab 100644 --- a/include/ft_global.h +++ b/include/ft_global.h @@ -47,9 +47,9 @@ struct st_ft_info { extern const char *ft_precompiled_stopwords[]; -extern uint ft_min_word_len; -extern uint ft_max_word_len; -extern uint ft_max_word_len_for_sort; +extern ulong ft_min_word_len; +extern ulong ft_max_word_len; +extern ulong ft_max_word_len_for_sort; int ft_init_stopwords(const char **); void ft_free_stopwords(void); |