summaryrefslogtreecommitdiff
path: root/mysql-test/suite/mariabackup/missing_ibd.result
blob: 7ff63b7d434c018dbbdee121d818c750eb1b43b1 (plain)
1
2
3
4
5
6
create table t1(c1 int) engine=InnoDB;
INSERT INTO t1 VALUES(1);
# xtrabackup backup
select * from t1;
ERROR HY000: Got error 194 "Tablespace is missing for a table" from storage engine InnoDB
drop table t1;