diff options
author | Sergei Golubchik <sergii@pisem.net> | 2013-04-09 15:49:39 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2013-04-09 15:49:39 +0200 |
commit | 5f69c8a59480569eb275169630f91763fceacc0f (patch) | |
tree | 84ee30e2a47f5e45c35c7afa473ae0ca25bb5f0d /sql/unireg.cc | |
parent | 556f5684930fdd44093b1918ac32976dfbdf55ba (diff) | |
download | mariadb-git-5f69c8a59480569eb275169630f91763fceacc0f.tar.gz |
ha_create_table: remove unused argument
Diffstat (limited to 'sql/unireg.cc')
-rw-r--r-- | sql/unireg.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/unireg.cc b/sql/unireg.cc index e2381e34fc7..60d419808ef 100644 --- a/sql/unireg.cc +++ b/sql/unireg.cc @@ -478,7 +478,7 @@ int rea_create_table(THD *thd, const char *path, if (!create_info->frm_only && (file->ha_create_partitioning_metadata(path, NULL, CHF_CREATE_FLAG, create_info) || - ha_create_table(thd, path, db, table_name, create_info, 0))) + ha_create_table(thd, path, db, table_name, create_info))) goto err_handler; DBUG_RETURN(0); |