Commit c2f3ff66 authored by Sinisa@sinisa.nasamreza.org's avatar Sinisa@sinisa.nasamreza.org
Browse files

Fix for a bug with mysql_select_db() on manually created

database and lower case table names.
parent 53ac2613
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -323,6 +323,9 @@ bool mysql_change_db(THD *thd,const char *name)
  uint db_access;
  DBUG_ENTER("mysql_change_db");

  if (lower_case_table_names)
    casedn_str(dbname);

  if (!dbname || !(length=strip_sp(dbname)))
  {
    x_free(dbname);				/* purecov: inspected */