mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03: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;
|