diff options
author | unknown <serg@serg.mylan> | 2003-10-22 17:57:09 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2003-10-22 17:57:09 +0200 |
commit | fd85cc84e4cad1f40e09af35265f47cf57750c49 (patch) | |
tree | 7ae15b4585e3b15c019c86d4b74106eadc6c7df1 /sql/ha_myisam.h | |
parent | 061cbf873428571f448815e6c1fcba5908373132 (diff) | |
download | mariadb-git-fd85cc84e4cad1f40e09af35265f47cf57750c49.tar.gz |
MATCH ... AGAINST ("..." WITH QUERY EXPANSION) syntax
myisam/mi_write.c:
cleanup
mysql-test/t/fulltext.test:
after merge fix
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); |