diff options
author | bell@sanja.is.com.ua <> | 2004-11-16 22:58:02 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2004-11-16 22:58:02 +0200 |
commit | bc5a9111d7072bfc1a9e424aa42582064cafde80 (patch) | |
tree | cd665433429045da9853d6f0ecfab97ed15fe6f8 /sql/opt_range.h | |
parent | 27395a2fb114cb300bd0957e23958362358d75b2 (diff) | |
download | mariadb-git-bc5a9111d7072bfc1a9e424aa42582064cafde80.tar.gz |
backport Serg's fix of FT interface (BUG#6523)
Diffstat (limited to 'sql/opt_range.h')
-rw-r--r-- | sql/opt_range.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/opt_range.h b/sql/opt_range.h index 9b2e9e45bac..5a2044a59f4 100644 --- a/sql/opt_range.h +++ b/sql/opt_range.h @@ -154,7 +154,7 @@ class FT_SELECT: public QUICK_SELECT { public: FT_SELECT(THD *thd, TABLE *table, uint key): QUICK_SELECT (thd, table, key, 1) { init(); } - + ~FT_SELECT() { file->ft_end(); } int init() { return error= file->ft_init(); } int get_next() { return error= file->ft_read(record); } }; |