summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/r/innodb_28867993.result
blob: acc6734eaee3a6225fcda42cbb2861fffd463330 (plain)
1
2
3
4
5
6
7
8
9
create table t1 (a int) engine=innodb;
insert t1 values (1),(2);
create database ib_logfile2;
select * from t1;
a
1
2
drop table t1;
drop database ib_logfile2;