1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Fix lowercase_fs_off problem on windows. This test should not be run if lower_case_filesystem=OFF.

By default lowercase_table_names are 1 on windows, and that makes the initialization of lower_case_filesystem variable to be skipped.
Add an else bracnh that does the initialization.
This commit is contained in:
msvensson@neptunus.(none)
2006-07-31 12:47:56 +02:00
parent 155bf26d61
commit a5112188e2

View File

@@ -2770,6 +2770,11 @@ You should consider changing lower_case_table_names to 1 or 2",
mysql_real_data_home);
lower_case_table_names= 0;
}
else
{
lower_case_file_system=
(test_if_case_insensitive(mysql_real_data_home) == 1);
}
/* Reset table_alias_charset, now that lower_case_table_names is set. */
table_alias_charset= (lower_case_table_names ?