1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Indentation cleanups

This commit is contained in:
Monty
2019-05-08 23:22:00 +03:00
parent 0b9f7f86f8
commit ebf372ddae

View File

@ -5533,7 +5533,6 @@ mysql_rename_table(handlerton *base, const LEX_CSTRING *old_db,
my_error(ER_BAD_DB_ERROR, MYF(0), new_db->str); my_error(ER_BAD_DB_ERROR, MYF(0), new_db->str);
else if (error) else if (error)
my_error(ER_ERROR_ON_RENAME, MYF(0), from, to, error); my_error(ER_ERROR_ON_RENAME, MYF(0), from, to, error);
else if (!(flags & FN_IS_TMP)) else if (!(flags & FN_IS_TMP))
mysql_audit_rename_table(thd, old_db, old_name, new_db, new_name); mysql_audit_rename_table(thd, old_db, old_name, new_db, new_name);
@ -5811,8 +5810,8 @@ bool mysql_create_like_table(THD* thd, TABLE_LIST* table,
goto err; goto err;
/* /*
As the reference table is temporary and may not exist on slave, we must As the reference table is temporary and may not exist on slave, we
force the ENGINE to be present into CREATE TABLE. must force the ENGINE to be present into CREATE TABLE.
*/ */
create_info->used_fields|= HA_CREATE_USED_ENGINE; create_info->used_fields|= HA_CREATE_USED_ENGINE;