mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
11 lines
170 B
Plaintext
11 lines
170 B
Plaintext
create table t1 (a int) engine=innodb;
|
|
insert t1 values (1),(2);
|
|
create database ib_logfile2;
|
|
# restart
|
|
select * from t1;
|
|
a
|
|
1
|
|
2
|
|
drop table t1;
|
|
drop database ib_logfile2;
|