1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-15 05:41:27 +03:00
Files
mariadb/mysql-test/suite/mariabackup/missing_ibd.result
2019-07-02 21:44:58 +03:00

8 lines
218 B
Plaintext

create table t1(c1 int) engine=InnoDB;
INSERT INTO t1 VALUES(1);
# restart
# xtrabackup backup
select * from t1;
ERROR HY000: Got error 194 "Tablespace is missing for a table" from storage engine InnoDB
drop table t1;