mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 15:45:33 +02:00
Code cleanup:
we don't need opt_range.h and opt_range.cc files at all. BitKeeper/deleted/.del-opt_ft.cc~2048ffa561f9c59: Delete: sql/opt_ft.cc BitKeeper/deleted/.del-opt_ft.h~24aac1d29304599a: Delete: sql/opt_ft.h
This commit is contained in:
parent
715e7a63a6
commit
453a32e927
6 changed files with 17 additions and 84 deletions
|
|
@ -134,6 +134,17 @@ class SQL_SELECT :public Sql_alloc {
|
|||
ha_rows limit, bool force_quick_range=0);
|
||||
};
|
||||
|
||||
|
||||
class FT_SELECT: public QUICK_SELECT {
|
||||
public:
|
||||
FT_SELECT(THD *thd, TABLE *table, uint key):
|
||||
QUICK_SELECT (thd, table, key, 1) { init(); }
|
||||
|
||||
int init() { return error= file->ft_init(); }
|
||||
int get_next() { return error= file->ft_read(record); }
|
||||
};
|
||||
|
||||
|
||||
QUICK_SELECT *get_quick_select_for_ref(THD *thd, TABLE *table,
|
||||
struct st_table_ref *ref);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue