mirror of
https://github.com/MariaDB/server.git
synced 2025-07-23 08:45:18 +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;
|