workaround for case insensitive filesystems

This commit is contained in:
unknown 2007-11-05 13:33:20 +01:00
parent d0b91efcb7
commit 8a1ede49e1
2 changed files with 4 additions and 2 deletions

View File

@ -132,11 +132,11 @@ master_epoch, count))
engine ndb; engine ndb;
show tables like '%$%'; show tables like '%$%';
Tables_in_test (%$%) Tables_in_test (%$%)
t1$EX t1$ex
use test; use test;
show tables like '%$%'; show tables like '%$%';
Tables_in_test (%$%) Tables_in_test (%$%)
t1$EX t1$ex
drop table `test`.`t1$EX`; drop table `test`.`t1$EX`;
show tables like '%$%'; show tables like '%$%';
Tables_in_test (%$%) Tables_in_test (%$%)

View File

@ -139,9 +139,11 @@ create table `test`.`t1$EX`
# check that table shows up ok on both servers # check that table shows up ok on both servers
# before bugfix table would not show up on server2 # before bugfix table would not show up on server2
--replace_regex /EX/ex/
show tables like '%$%'; show tables like '%$%';
connection server2; connection server2;
use test; use test;
--replace_regex /EX/ex/
show tables like '%$%'; show tables like '%$%';
# check cleanup # check cleanup