mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 11:01:52 +01:00
92feac53a6
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"
6 lines
208 B
Text
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;
|