diff options
Diffstat (limited to 'mysql-test/suite/mariabackup/missing_ibd.result')
-rw-r--r-- | mysql-test/suite/mariabackup/missing_ibd.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/suite/mariabackup/missing_ibd.result b/mysql-test/suite/mariabackup/missing_ibd.result new file mode 100644 index 00000000..1ad18e8b --- /dev/null +++ b/mysql-test/suite/mariabackup/missing_ibd.result @@ -0,0 +1,7 @@ +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; |