blob: c27534d9d78e40fcde370dcfaa3891383b693ea2 (
plain)
1
2
3
4
5
6
7
8
9
|
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;
|