mirror of
https://github.com/MariaDB/server.git
synced 2025-04-21 22:55:35 +02:00

the InnoDB Plugin tests are now in mysql-test/suite/innodb_plugin. Move InnoDB tests to the innodb suite at mysql-test/suite/innodb.
4 lines
134 B
Text
4 lines
134 B
Text
SET TX_ISOLATION='READ-COMMITTED';
|
|
CREATE TABLE bug40360 (a INT) engine=innodb;
|
|
INSERT INTO bug40360 VALUES (1);
|
|
DROP TABLE bug40360;
|