diff options
author | serg@serg.mysql.com <> | 2001-09-25 20:31:02 +0200 |
---|---|---|
committer | serg@serg.mysql.com <> | 2001-09-25 20:31:02 +0200 |
commit | 5a9a3e91e7a0732dc8428796c970ed0bdcc8b8c3 (patch) | |
tree | a70bc86b1e25c9dd79c1730e066609f2781b606d /sql/ha_myisam.h | |
parent | 57e4c8ef3ba4f3bb5c2969b51db6d0605071137f (diff) | |
download | mariadb-git-5a9a3e91e7a0732dc8428796c970ed0bdcc8b8c3.tar.gz |
get rid of ft_search. Now there're two sets of ft_ functions, ft_nlq_* and ft_boolean_*
Diffstat (limited to 'sql/ha_myisam.h')
-rw-r--r-- | sql/ha_myisam.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h index d870331e750..a95f0ed71cb 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_reinit_search(ft_handler); return 0; } + { 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_init_search(file,inx,(byte*) key,keylen,presort); } + { return ft_nlq_init_search(file,inx,(byte*) key,keylen,presort); } int ft_read(byte *buf); int rnd_init(bool scan=1); int rnd_next(byte *buf); |