summaryrefslogtreecommitdiff
path: root/mysql-test/suite/mariabackup/missing_ibd.result
blob: 40caedf64927637868c87237fe576dea21911a6d (plain)
1
2
3
4
5
6
7
create table t1(c1 int) engine=InnoDB;
INSERT INTO t1 VALUES(1);
# restart
# xtrabackup backup
select * from t1;
ERROR 42S02: Table 'test.t1' doesn't exist in engine
drop table t1;