diff options
author | serg@donna.mysql.com <> | 2001-01-19 20:25:27 +0200 |
---|---|---|
committer | serg@donna.mysql.com <> | 2001-01-19 20:25:27 +0200 |
commit | f433ec1247c521bd5784a45655e41ddbfa483cce (patch) | |
tree | 7dc1d88151c519c2693287939b937f05a7197bb0 /sql/ha_myisam.cc | |
parent | ff4839a914ee3c348e570f8b67a3baa625c3970f (diff) | |
download | mariadb-git-f433ec1247c521bd5784a45655e41ddbfa483cce.tar.gz |
ha_myisam.cc magic removed
ha_myisam.h magic removed
Diffstat (limited to 'sql/ha_myisam.cc')
-rw-r--r-- | sql/ha_myisam.cc | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/sql/ha_myisam.cc b/sql/ha_myisam.cc index ac88c802949..60e0c4eec94 100644 --- a/sql/ha_myisam.cc +++ b/sql/ha_myisam.cc @@ -1136,19 +1136,9 @@ int ha_myisam::ft_read(byte * buf) thread_safe_increment(ha_read_next_count,&LOCK_status); // why ? - if ((error=ft_read_next((FT_DOCLIST *) ft_handler,(char*) buf))) - ft_handler=NULL; // Magic here ! See Item_func_match::val() - // and ha_myisam::index_init() + error=ft_read_next((FT_DOCLIST *) ft_handler,(char*) buf); + table->status=error ? STATUS_NOT_FOUND: 0; return error; } -int ha_myisam::index_init(uint idx) -{ - if (idx != active_index) - ft_handler=NULL; // Magic here ! - - active_index=idx; - return 0; -} - |