1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +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

@ -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);
}