summaryrefslogtreecommitdiff
path: root/sql/ha_myisam.h
diff options
context:
space:
mode:
authorserg@serg.mysql.com <>2001-10-09 14:53:54 +0200
committerserg@serg.mysql.com <>2001-10-09 14:53:54 +0200
commit3d3ef6528a48f5fba7bfcef10970c89bfb88e420 (patch)
treec39107b036ff091f557b03a1f37183735dcddbad /sql/ha_myisam.h
parent5a9a3e91e7a0732dc8428796c970ed0bdcc8b8c3 (diff)
downloadmariadb-git-3d3ef6528a48f5fba7bfcef10970c89bfb88e420.tar.gz
Boolean search passes _some_ tests
Diffstat (limited to 'sql/ha_myisam.h')
-rw-r--r--sql/ha_myisam.h6
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);