diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-04-09 15:49:13 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-04-09 15:49:13 +0200 |
commit | 07b252391811d20a6ddd49bac9492257048e8ed6 (patch) | |
tree | 805d97230cc73b727437fa064312e43e3879ee7c /sql/handler.h | |
parent | 5d364e53cb8545790e1b5f37489a2180b78a43cc (diff) | |
download | mariadb-git-07b252391811d20a6ddd49bac9492257048e8ed6.tar.gz |
rename a handler method to more precisely reflect what kind of a hack it does
Diffstat (limited to 'sql/handler.h')
-rw-r--r-- | sql/handler.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/handler.h b/sql/handler.h index 7b3be833b33..ea928afa9ed 100644 --- a/sql/handler.h +++ b/sql/handler.h @@ -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; } |