mirror of
https://github.com/MariaDB/server.git
synced 2025-08-14 08:03:06 +03:00
7 lines
149 B
Plaintext
7 lines
149 B
Plaintext
create table t1 (a int) engine=innodb;
|
|
start transaction;
|
|
insert t1 values (1);
|
|
state from show engine innodb status, must be empty
|
|
|
|
drop table t1;
|