mirror of
https://github.com/MariaDB/server.git
synced 2025-08-17 21:39:33 +00:00
9 lines
89 B
Plaintext
9 lines
89 B
Plaintext
create table t1(a int) engine=innodb;
|
|
# restart
|
|
select * from t1;
|
|
a
|
|
1
|
|
2
|
|
5
|
|
drop table t1;
|