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.cc | |
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.cc')
-rw-r--r-- | sql/handler.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/handler.cc b/sql/handler.cc index fa837195f88..a1c4ba89035 100644 --- a/sql/handler.cc +++ b/sql/handler.cc @@ -3835,16 +3835,16 @@ handler::ha_create(const char *name, TABLE *form, HA_CREATE_INFO *info) /** Create handler files for CREATE TABLE: public interface. - @sa handler::create_handler_files() + @sa handler::create_partitioning_metadata() */ int -handler::ha_create_handler_files(const char *name, const char *old_name, +handler::ha_create_partitioning_metadata(const char *name, const char *old_name, int action_flag, HA_CREATE_INFO *info) { mark_trx_read_write(); - return create_handler_files(name, old_name, action_flag, info); + return create_partitioning_metadata(name, old_name, action_flag, info); } |