1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

failing fulltext_order_by.test fixed

myisam/sort.c:
  warning fixed
sql/ha_myisam.h:
  not necessary
This commit is contained in:
unknown
2004-07-15 17:30:55 +02:00
parent a96bb92f4a
commit b0df20349d
4 changed files with 3 additions and 3 deletions

View File

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