1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-27 01:57:48 +03:00
mariadb/mysql-test/suite/plugins/r/processlist.result
2018-06-28 12:38:58 +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;