summaryrefslogtreecommitdiff
path: root/sql/opt_range.h
diff options
context:
space:
mode:
authorserg@serg.mylan <>2004-07-15 17:30:55 +0200
committerserg@serg.mylan <>2004-07-15 17:30:55 +0200
commit2fd11169ab10b8d752afbcc2dd58a15cf4de9c45 (patch)
tree0fbd3bbc24085234be0e97367c2fdf47c6a7b32a /sql/opt_range.h
parentb97ef911c5b014c89c90775a75a780bed9b7f8ad (diff)
downloadmariadb-git-2fd11169ab10b8d752afbcc2dd58a15cf4de9c45.tar.gz
failing fulltext_order_by.test fixed
Diffstat (limited to 'sql/opt_range.h')
-rw-r--r--sql/opt_range.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/opt_range.h b/sql/opt_range.h
index 3082e2d8a69..1dc3a1354e7 100644
--- a/sql/opt_range.h
+++ b/sql/opt_range.h
@@ -563,7 +563,7 @@ class FT_SELECT: public QUICK_RANGE_SELECT {
public:
FT_SELECT(THD *thd, TABLE *table, uint key) :
QUICK_RANGE_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); }
int get_type() { return QS_TYPE_FULLTEXT; }