diff options
author | unknown <serg@serg.mylan> | 2005-02-04 15:24:06 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2005-02-04 15:24:06 +0100 |
commit | 8c750c466b0109723233e93aea85a39673409b40 (patch) | |
tree | 2046dfa1cc3d0a3296de2bdfbd4d1ad59ece8f58 /include/ft_global.h | |
parent | c83412f7059f54b8e7065d63fc544125ebf30aaa (diff) | |
download | mariadb-git-8c750c466b0109723233e93aea85a39673409b40.tar.gz |
indexless boolean fulltext search was depending on default_charset_info - Bug#8159
ftbw->off wasn't cleared on reinit - Bug#8234
include/ft_global.h:
get rid of default_charset_info in indexless fulltext searches
myisam/ft_boolean_search.c:
get rid of default_charset_info in indexless fulltext searches
clear ftbw->off on reinits
myisam/ft_static.c:
get rid of default_charset_info in indexless fulltext searches
myisam/ftdefs.h:
get rid of default_charset_info in indexless fulltext searches
sql/ha_myisam.h:
get rid of default_charset_info in indexless fulltext searches
sql/handler.h:
get rid of default_charset_info in indexless fulltext searches
sql/item_func.cc:
get rid of default_charset_info in indexless fulltext searches
Diffstat (limited to 'include/ft_global.h')
-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 |