mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
16c57d9099
Create temporary InnoDB table fails on case insensitive filesystems, when lower_case_table_names is 2 (e.g. OS X) and temporary directory path contains upper case letters. The problem was that tmpdir prefix was converted to lower case when table was created, but was passed as is when table was opened. Fixed by leaving tmpdir prefix part intact.
6 lines
165 B
Bash
6 lines
165 B
Bash
# This test requires a non-lowercase tmpdir directory on a case-sensitive
|
|
# filesystem.
|
|
|
|
d="$MYSQLTEST_VARDIR/tmp/MixedCase"
|
|
test -d "$d" || mkdir "$d"
|
|
rm -f "$d"/*
|