diff options
author | serg@serg.mylan <> | 2005-02-04 15:24:06 +0100 |
---|---|---|
committer | serg@serg.mylan <> | 2005-02-04 15:24:06 +0100 |
commit | cc1ee6475f9a15415c81867f239f71a0bb1c969c (patch) | |
tree | 2046dfa1cc3d0a3296de2bdfbd4d1ad59ece8f58 /include | |
parent | 33fc4b10b69e06bb4162a3d2650eab00e0b8927c (diff) | |
download | mariadb-git-cc1ee6475f9a15415c81867f239f71a0bb1c969c.tar.gz |
indexless boolean fulltext search was depending on default_charset_info - Bug#8159
ftbw->off wasn't cleared on reinit - Bug#8234
Diffstat (limited to 'include')
-rw-r--r-- | include/ft_global.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ft_global.h b/include/ft_global.h index 94f6ad9ef51..c3f60d13a7a 100644 --- a/include/ft_global.h +++ b/include/ft_global.h @@ -62,7 +62,7 @@ void ft_free_stopwords(void); #define FT_SORTED 2 #define FT_EXPAND 4 /* query expansion */ -FT_INFO *ft_init_search(uint,void *, uint, byte *, uint, byte *); +FT_INFO *ft_init_search(uint,void *, uint, byte *, uint,CHARSET_INFO *, byte *); my_bool ft_boolean_check_syntax_string(const byte *); #ifdef __cplusplus |