1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Fix for a bug with mysql_select_db() on manually created

database and lower case table names.
This commit is contained in:
Sinisa@sinisa.nasamreza.org
2002-12-14 15:32:36 +02:00
parent 53ac261312
commit c2f3ff6630

View File

@@ -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 */