diff options
Diffstat (limited to 'mysql-test/suite/mariabackup/data_directory.result')
-rw-r--r-- | mysql-test/suite/mariabackup/data_directory.result | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mysql-test/suite/mariabackup/data_directory.result b/mysql-test/suite/mariabackup/data_directory.result new file mode 100644 index 00000000..8692c352 --- /dev/null +++ b/mysql-test/suite/mariabackup/data_directory.result @@ -0,0 +1,19 @@ +CREATE TABLE t(a INT) ENGINE=InnoDB DATA DIRECTORY='table_data_dir'; +INSERT INTO t VALUES(1); +# xtrabackup backup +# xtrabackup prepare +DROP TABLE t; +# shutdown server +# remove datadir +# xtrabackup move back +# restart +SELECT * FROM t; +a +1 +DROP TABLE t; +# +# MDEV-18200 MariaBackup full backup failed with InnoDB: Failing assertion: success +# +# +# End of 10.4 tests +# |