Commit 57ae9ed0 authored by unknown's avatar unknown
Browse files

complement to previous fix (which was for SQLCOM_DROP_DB), for COM_DROP_DB.


sql/sql_parse.cc:
  Making COM_DROP_DB honour lower_case_table_names. Plus coding-style fixes.
parent 87c200d1
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1163,7 +1163,7 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
	break;
      }
      mysql_log.write(thd,command,db);
      mysql_rm_db(thd,alias,0,0);
      mysql_rm_db(thd, (lower_case_table_names == 2 ? alias : db), 0, 0);
      break;
    }
  case COM_BINLOG_DUMP: