diff options
author | serg@serg.mysql.com <> | 2001-10-09 14:53:54 +0200 |
---|---|---|
committer | serg@serg.mysql.com <> | 2001-10-09 14:53:54 +0200 |
commit | 3d3ef6528a48f5fba7bfcef10970c89bfb88e420 (patch) | |
tree | c39107b036ff091f557b03a1f37183735dcddbad /sql/ha_myisam.h | |
parent | 5a9a3e91e7a0732dc8428796c970ed0bdcc8b8c3 (diff) | |
download | mariadb-git-3d3ef6528a48f5fba7bfcef10970c89bfb88e420.tar.gz |
Boolean search passes _some_ tests
Diffstat (limited to 'sql/ha_myisam.h')
-rw-r--r-- | sql/ha_myisam.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h index a95f0ed71cb..eba2bde7d59 100644 --- a/sql/ha_myisam.h +++ b/sql/ha_myisam.h @@ -76,9 +76,9 @@ class ha_myisam: public handler int index_next_same(byte *buf, const byte *key, uint keylen); int index_end() { ft_handler=NULL; return 0; } int ft_init() - { if(!ft_handler) return 1; ft_nlq_reinit_search(ft_handler); return 0; } - void *ft_init_ext(uint inx,const byte *key, uint keylen, bool presort) - { return ft_nlq_init_search(file,inx,(byte*) key,keylen,presort); } + { if(!ft_handler) return 1; ft_handler->please->reinit_search(ft_handler); return 0; } + FT_INFO *ft_init_ext(uint mode, uint inx,const byte *key, uint keylen, bool presort) + { return ft_init_search(mode, file,inx,(byte*) key,keylen,presort); } int ft_read(byte *buf); int rnd_init(bool scan=1); int rnd_next(byte *buf); |