1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

rename a handler method to more precisely reflect what kind of a hack it does

This commit is contained in:
Sergei Golubchik
2013-04-09 15:49:13 +02:00
parent 5d364e53cb
commit 07b2523918
6 changed files with 19 additions and 19 deletions

View File

@ -2063,7 +2063,7 @@ public:
int ha_create(const char *name, TABLE *form, HA_CREATE_INFO *info);
int ha_create_handler_files(const char *name, const char *old_name,
int ha_create_partitioning_metadata(const char *name, const char *old_name,
int action_flag, HA_CREATE_INFO *info);
int ha_change_partitions(HA_CREATE_INFO *create_info,
@ -3003,7 +3003,7 @@ private:
virtual void drop_table(const char *name);
virtual int create(const char *name, TABLE *form, HA_CREATE_INFO *info)=0;
virtual int create_handler_files(const char *name, const char *old_name,
virtual int create_partitioning_metadata(const char *name, const char *old_name,
int action_flag, HA_CREATE_INFO *info)
{ return FALSE; }