mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
Fixed that lower_case_table_names is set to 1 for case insensitive file systems.
This commit is contained in:
parent
1f997d4a70
commit
aa3f200c03
1 changed files with 2 additions and 1 deletions
|
@ -4955,7 +4955,8 @@ static void fix_paths(void)
|
|||
if (!lower_case_table_names &&
|
||||
test_if_case_insensitive(mysql_real_data_home) == 1)
|
||||
{
|
||||
sql_print_error("Warning: Setting lower_case_table_names=1 becasue file system %s is case insensitve", mysql_real_data_home);
|
||||
sql_print_error("Warning: Setting lower_case_table_names=1 becasue file system %s is case insensitive", mysql_real_data_home);
|
||||
lower_case_table_names= 1;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue