workaround for case insensitive filesystems

parent 3c4e580b
...@@ -132,11 +132,11 @@ master_epoch, count)) ...@@ -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 (%$%)
......
...@@ -139,9 +139,11 @@ create table `test`.`t1$EX` ...@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment