mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
Fix innodb_bug60229 (get the innodb change into xtradb)
This commit is contained in:
parent
e3e15687a0
commit
607c9a6c68
1 changed files with 5 additions and 0 deletions
|
@ -3140,10 +3140,15 @@ dict_scan_table_name(
|
|||
memcpy(ref, database_name, database_name_len);
|
||||
ref[database_name_len] = '/';
|
||||
memcpy(ref + database_name_len + 1, table_name, table_name_len + 1);
|
||||
|
||||
} else {
|
||||
#ifndef __WIN__
|
||||
if (innobase_get_lower_case_table_names() == 1) {
|
||||
innobase_casedn_str(ref);
|
||||
}
|
||||
#else
|
||||
innobase_casedn_str(ref);
|
||||
#endif /* !__WIN__ */
|
||||
*table = dict_table_get_low(ref);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue