From ebf372ddaed7d0a6e39045a226fb4895e0631d02 Mon Sep 17 00:00:00 2001 From: Monty Date: Wed, 8 May 2019 23:22:00 +0300 Subject: [PATCH] Indentation cleanups --- sql/sql_table.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sql/sql_table.cc b/sql/sql_table.cc index 28c67f0e59a..a9416644835 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -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); else if (error) my_error(ER_ERROR_ON_RENAME, MYF(0), from, to, error); - else if (!(flags & FN_IS_TMP)) 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; /* - As the reference table is temporary and may not exist on slave, we must - force the ENGINE to be present into CREATE TABLE. + As the reference table is temporary and may not exist on slave, we + must force the ENGINE to be present into CREATE TABLE. */ create_info->used_fields|= HA_CREATE_USED_ENGINE;