blob: 0676c42e12b04bc2cf528389d67d4c5983a8ca51 (
plain)
1
2
3
4
5
6
7
8
9
10
|
DROP TABLE IF EXISTS t1,T1;
CREATE TABLE t1 (a int);
SELECT * from T1;
a
drop table t1;
flush tables;
CREATE TABLE t1 (a int) type=INNODB;
SELECT * from T1;
Table 'test.T1' doesn't exist
drop table t1;
|