summaryrefslogtreecommitdiff
path: root/sql/opt_ft.h
diff options
context:
space:
mode:
authorunknown <serg@serg.mysql.com>2001-11-22 16:00:11 +0100
committerunknown <serg@serg.mysql.com>2001-11-22 16:00:11 +0100
commit198df9007eaaf1aacbdff6c3e6b438bfd013a66c (patch)
treed6f7c3326335cf1432cad86e47e88950fca45ec9 /sql/opt_ft.h
parent1bdd19639d583cf182731c82eef08a21d2751f5c (diff)
downloadmariadb-git-198df9007eaaf1aacbdff6c3e6b438bfd013a66c.tar.gz
fixes for ft-boolean and range optimizer
Diffstat (limited to 'sql/opt_ft.h')
-rw-r--r--sql/opt_ft.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/opt_ft.h b/sql/opt_ft.h
index dcbbb8abcec..b055edc107c 100644
--- a/sql/opt_ft.h
+++ b/sql/opt_ft.h
@@ -29,7 +29,7 @@ public:
TABLE_REF *ref;
FT_SELECT(TABLE *table, TABLE_REF *tref) :
- QUICK_SELECT (table,tref->key,1), ref(tref) {}
+ QUICK_SELECT (table,tref->key,1), ref(tref) { init(); }
int init() { return error=file->ft_init(); }
int get_next() { return error=file->ft_read(record); }