diff options
author | serg@serg.mylan <> | 2003-10-22 17:57:09 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2003-10-22 17:57:09 +0200 |
commit | df69309593b7e377d18d005147b485573f607f70 (patch) | |
tree | 7ae15b4585e3b15c019c86d4b74106eadc6c7df1 /sql/ha_myisam.h | |
parent | 85942f14f4405793c8fcb9083cc8aa0dbcdad40e (diff) | |
download | mariadb-git-df69309593b7e377d18d005147b485573f607f70.tar.gz |
MATCH ... AGAINST ("..." WITH QUERY EXPANSION) syntax
Diffstat (limited to 'sql/ha_myisam.h')
-rw-r--r-- | sql/ha_myisam.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sql/ha_myisam.h b/sql/ha_myisam.h index e4e3192af10..8b10ce805da 100644 --- a/sql/ha_myisam.h +++ b/sql/ha_myisam.h @@ -89,9 +89,8 @@ class ha_myisam: public handler 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); } + FT_INFO *ft_init_ext(uint flags, uint inx,const byte *key, uint keylen) + { return ft_init_search(flags,file,inx,(byte*) key,keylen); } int ft_read(byte *buf); int rnd_init(bool scan=1); int rnd_next(byte *buf); |