mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
BUG#32667: lowercase_table3.test reports to error log
Cleaned up SQL code in the test. Needed to move the FLUSH TABLES statement prior to the DROP TABLE t1 to prevent a warning of Table open on delete and a test fail.
This commit is contained in:
@ -1,11 +1,11 @@
|
||||
call mtr.add_suppression("Cannot find or open table test/BUG29839 from");
|
||||
call mtr.add_suppression("Cannot find or open table test/BUG29839 from .*");
|
||||
DROP TABLE IF EXISTS t1,T1;
|
||||
CREATE TABLE t1 (a int);
|
||||
SELECT * from T1;
|
||||
CREATE TABLE t1 (a INT);
|
||||
SELECT * FROM T1;
|
||||
a
|
||||
drop table t1;
|
||||
flush tables;
|
||||
CREATE TABLE bug29839 (a int) ENGINE=INNODB;
|
||||
SELECT * from BUG29839;
|
||||
FLUSH TABLES;
|
||||
DROP TABLE t1;
|
||||
CREATE TABLE bug29839 (a INT) ENGINE=INNODB;
|
||||
SELECT * FROM BUG29839;
|
||||
ERROR 42S02: Table 'test.BUG29839' doesn't exist
|
||||
drop table bug29839;
|
||||
DROP TABLE bug29839;
|
||||
|
Reference in New Issue
Block a user