You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
more overrides
This commit is contained in:
committed by
Leonid Fedorov
parent
a4c1e2cbcb
commit
cbf4fef47c
@ -81,7 +81,7 @@ class ha_mcs_group_by_handler : public group_by_handler
|
||||
|
||||
public:
|
||||
ha_mcs_group_by_handler(THD* thd_arg, Query* query);
|
||||
~ha_mcs_group_by_handler();
|
||||
~ha_mcs_group_by_handler() override;
|
||||
int init_scan() override;
|
||||
int next_row() override;
|
||||
int end_scan() override;
|
||||
@ -116,7 +116,7 @@ class ha_columnstore_derived_handler : public derived_handler
|
||||
|
||||
public:
|
||||
ha_columnstore_derived_handler(THD* thd_arg, TABLE_LIST* tbl);
|
||||
~ha_columnstore_derived_handler();
|
||||
~ha_columnstore_derived_handler() override;
|
||||
int init_scan() override;
|
||||
int next_row() override;
|
||||
int end_scan() override;
|
||||
@ -154,7 +154,7 @@ class ha_columnstore_select_handler : public select_handler
|
||||
ha_columnstore_select_handler(THD* thd_arg, SELECT_LEX* sel_lex);
|
||||
ha_columnstore_select_handler(THD* thd_arg, SELECT_LEX_UNIT* sel_unit);
|
||||
ha_columnstore_select_handler(THD* thd_arg, SELECT_LEX* sel_lex, SELECT_LEX_UNIT* sel_unit);
|
||||
~ha_columnstore_select_handler();
|
||||
~ha_columnstore_select_handler() override;
|
||||
int init_scan() override;
|
||||
int next_row() override;
|
||||
int end_scan() override;
|
||||
|
Reference in New Issue
Block a user