2
# Test of force of lower-case-table-names=0
3
# (User has case insensitive file system and wants to preserve case of
7
--source include/have_innodb.inc
8
--source include/have_lowercase0.inc
9
--source include/not_windows.inc
12
DROP TABLE IF EXISTS t1,T1;
16
# This is actually an error, but ok as the user has forced this
17
# by using --lower-case-table-names=0
19
CREATE TABLE t1 (a int);
25
# InnoDB should in this case be case sensitive
26
# Note that this is not true on windows as no this OS, InnoDB is always
27
# storing things in lower case.
30
CREATE TABLE bug29839 (a int) ENGINE=INNODB;
32
SELECT * from BUG29839;