mirror of
https://github.com/MariaDB/server.git
synced 2025-07-04 01:23:45 +03: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.
5 lines
134 B
Plaintext
5 lines
134 B
Plaintext
SET TX_ISOLATION='READ-COMMITTED';
|
|
CREATE TABLE bug40360 (a INT) engine=innodb;
|
|
INSERT INTO bug40360 VALUES (1);
|
|
DROP TABLE bug40360;
|