mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +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:
@ -18,9 +18,9 @@
|
||||
|
||||
#include "ftdefs.h"
|
||||
|
||||
uint ft_min_word_len=4;
|
||||
uint ft_max_word_len=HA_FT_MAXLEN;
|
||||
uint ft_max_word_len_for_sort=20;
|
||||
ulong ft_min_word_len=4;
|
||||
ulong ft_max_word_len=HA_FT_MAXLEN;
|
||||
ulong ft_max_word_len_for_sort=20;
|
||||
|
||||
const MI_KEYSEG ft_keysegs[FT_SEGS]={
|
||||
{
|
||||
|
Reference in New Issue
Block a user