summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/innodb/r/innodb_28867993.result
blob: 493d3ef041593d0f5f654646ee340def9680100f (plain)
1
2
3
4
5
6
7
8
9
10
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;