mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
f5692f21f9
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;
|