diff options
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); |