diff options
author | unknown <serg@serg.mysql.com> | 2000-11-28 18:11:18 +0100 |
---|---|---|
committer | unknown <serg@serg.mysql.com> | 2000-11-28 18:11:18 +0100 |
commit | b865c72adb710c9cd5378e4b55eda0ffc9352303 (patch) | |
tree | eb5ed1a0abb845262a5b1d5977e66783acd0e227 /myisam | |
parent | 85a61b2cce24448f7ea24c75584a6f7061fd94e5 (diff) | |
download | mariadb-git-b865c72adb710c9cd5378e4b55eda0ffc9352303.tar.gz |
errmsg.txt translated
opt_range.h bugs with const_tables and filesort fixed
opt_range.cc bugs with const_tables and filesort fixed
item_func.cc bugs with const_tables and filesort fixed
ha_myisam.h bugs with const_tables and filesort fixed
ha_myisam.cc bugs with const_tables and filesort fixed
ft_search.c bugs with const_tables and filesort fixed
myisam/ft_search.c:
bugs with const_tables and filesort fixed
sql/ha_myisam.cc:
bugs with const_tables and filesort fixed
sql/ha_myisam.h:
bugs with const_tables and filesort fixed
sql/item_func.cc:
bugs with const_tables and filesort fixed
sql/opt_range.cc:
bugs with const_tables and filesort fixed
sql/opt_range.h:
bugs with const_tables and filesort fixed
sql/share/russian/errmsg.txt:
translated
Diffstat (limited to 'myisam')
-rw-r--r-- | myisam/ft_search.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/myisam/ft_search.c b/myisam/ft_search.c index 9baab10df1e..4ca1551e809 100644 --- a/myisam/ft_search.c +++ b/myisam/ft_search.c @@ -158,6 +158,7 @@ FT_DOCLIST * ft_init_search(void *info, uint keynr, byte *key, ALL_IN_ONE aio; FT_DOCLIST *dlist; FT_DOC *dptr; + my_off_t saved_lastpos=((MI_INFO *)info)->lastpos; /* black magic ON */ if ((int) (keynr = _mi_check_index((MI_INFO *)info,keynr)) < 0) @@ -204,6 +205,7 @@ err: delete_tree(&aio.dtree); delete_tree(wtree); my_free((char*) wtree,MYF(0)); + ((MI_INFO *)info)->lastpos=saved_lastpos; return dlist; } |