mariadb/mysql-test/suite/mariabackup/missing_ibd.result
Marko Mäkelä 92feac53a6 MDEV-19886 InnoDB returns misleading ER_NO_SUCH_TABLE_IN_ENGINE
A fix in MySQL 5.7.6 was not completely merged to MariaDB:
Bug#19419026 WHEN A TABLESPACE IS NOT FOUND, DO NOT REPORT "TABLE NOT FOUND"
2019-06-27 15:39:04 +03:00

6 lines
208 B
Text

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;