From 28d20a1d2fc4f6c2bc9560b3be7ab785412d263e Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 5 Nov 2001 03:43:00 +0200 Subject: Make ft_xxx variables ulong to not break mysqld.cc init of variables. mysqltest: replace_result now also affects error messages client/mysqltest.c: replace_result now also affects error messages include/ft_global.h: Make variables ulong to not break mysqld.cc init of variables. myisam/ft_static.c: Make variables ulong to not break mysqld.cc init of variables. mysql-test/r/join.result: Fix for 64 bit systems mysql-test/t/join.test: Fix for 64 bit systems --- include/ft_global.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/ft_global.h') 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); -- cgit v1.2.1