1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-01 08:45:04 +03:00
mariadb/mysql-test/suite/plugins/r/processlist.result
2018-07-24 18:29:17 +02:00

10 lines
215 B
Plaintext

create table t1 (a int) engine=innodb;
start transaction;
insert t1 values (1);
connect con2,localhost,root;
state from show engine innodb status, must be empty
disconnect con2;
connection default;
drop table t1;