diff options
author | unknown <serg@serg.mysql.com> | 2001-09-25 20:31:02 +0200 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2001-09-25 20:31:02 +0200 |
commit | 734e2a8bcaa4a5d2de6059f4cdcac8e71bbb5d6d (patch) | |
tree | a70bc86b1e25c9dd79c1730e066609f2781b606d /sql/ha_myisam.h | |
parent | 51c261ff2393476110d2914bec5f8a1f057555be (diff) | |
download | mariadb-git-734e2a8bcaa4a5d2de6059f4cdcac8e71bbb5d6d.tar.gz |
get rid of ft_search. Now there're two sets of ft_ functions, ft_nlq_* and ft_boolean_*
BitKeeper/deleted/.del-ft_search.c~c011cb6e8041bb59:
Delete: myisam/ft_search.c
include/ft_global.h:
ft_ --> ft_nlq_
myisam/Makefile.am:
get rid of ft_search.c
myisam/ft_dump.c:
ft_ --> ft_nlq_
myisam/ft_eval.c:
ft_ --> ft_nlq_
myisam/ft_nlq_search.c:
get rid of ft_search.c
myisam/ft_test1.c:
ft_ --> ft_nlq_
sql/ha_myisam.cc:
ft_ --> ft_nlq_
sql/ha_myisam.h:
ft_ --> ft_nlq_
sql/handler.h:
cleanup
sql/item_func.cc:
ft_ --> ft_nlq_
sql/item_func.h:
ft_ --> ft_nlq_
sql/item_strfunc.h:
cleanup
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); |