Commit 2583c281 authored by unknown's avatar unknown

Removed compiler warning

(Missed a change of printf format)


sql/sql_table.cc:
  wrong printf type
parent db9b2bdc
...@@ -3321,7 +3321,7 @@ bool mysql_create_table_no_lock(THD *thd, ...@@ -3321,7 +3321,7 @@ bool mysql_create_table_no_lock(THD *thd,
The handler assigned to the table cannot handle partitioning. The handler assigned to the table cannot handle partitioning.
Assign the partition handler as the handler of the table. Assign the partition handler as the handler of the table.
*/ */
DBUG_PRINT("info", ("db_type: %d", DBUG_PRINT("info", ("db_type: %s",
ha_resolve_storage_engine_name(create_info->db_type))); ha_resolve_storage_engine_name(create_info->db_type)));
delete file; delete file;
create_info->db_type= partition_hton; create_info->db_type= partition_hton;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment