mysql5/mysql-5.7.27/mysql-test/suite/innodb/r/innodb_bug40360.result

7 lines
274 B
Plaintext

SET TX_ISOLATION='READ-COMMITTED';
Warnings:
Warning 1287 '@@tx_isolation' is deprecated and will be removed in a future release. Please use '@@transaction_isolation' instead
CREATE TABLE bug40360 (a INT) engine=innodb;
INSERT INTO bug40360 VALUES (1);
DROP TABLE bug40360;