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/handler.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/handler.h')
-rw-r--r-- | sql/handler.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sql/handler.h b/sql/handler.h index 638125e23d0..26671bb5b11 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -271,8 +271,7 @@ public: } virtual int ft_init() { return -1; } - virtual FT_INFO *ft_init_ext(uint mode,uint inx,const byte *key, uint keylen, - bool presort) + virtual FT_INFO *ft_init_ext(uint flags,uint inx,const byte *key, uint keylen) { return NULL; } virtual int ft_read(byte *buf) { return -1; } virtual int rnd_init(bool scan=1)=0; |