1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-31 22:22:30 +03:00

fixes for ft-boolean and range optimizer

This commit is contained in:
unknown
2001-11-22 16:00:11 +01:00
parent 1bdd19639d
commit 198df9007e
6 changed files with 62 additions and 11 deletions

View File

@@ -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); }