1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

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
This commit is contained in:
unknown
2001-11-05 03:43:00 +02:00
parent d18a6cc33a
commit 28d20a1d2f
5 changed files with 31 additions and 19 deletions

View File

@ -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);