1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-08 14:22:09 +03:00

Replace ha_calpont with ha_mcs in the source code and filenames in the plugin code.

This commit is contained in:
Gagan Goel
2019-10-09 19:49:37 +00:00
parent 6b650e859d
commit c8df46ed26
23 changed files with 312 additions and 312 deletions

View File

@@ -19,10 +19,10 @@
#define HA_MCS_PUSH
#include "idb_mysql.h"
#include "ha_calpont.h"
#include "ha_mcs.h"
#include "ha_mcs_sysvars.h"
#define NEED_CALPONT_EXTERNS
#include "ha_calpont_impl.h"
#include "ha_mcs_impl.h"
void mutate_optimizer_flags(THD *thd_);
void restore_optimizer_flags(THD *thd_);
@@ -73,11 +73,11 @@ struct mcs_handler_info
* next_row - get a row back from sm.
* end_scan - finish and clean the things up.
***********************************************************/
class ha_calpont_group_by_handler: public group_by_handler
class ha_mcs_group_by_handler: public group_by_handler
{
public:
ha_calpont_group_by_handler(THD* thd_arg, Query* query);
~ha_calpont_group_by_handler();
ha_mcs_group_by_handler(THD* thd_arg, Query* query);
~ha_mcs_group_by_handler();
int init_scan();
int next_row();
int end_scan();