mirror of
https://github.com/MariaDB/server.git
synced 2025-02-12 00:15:35 +01:00
9 lines
215 B
Text
9 lines
215 B
Text
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;
|