diff options
Diffstat (limited to 'mysql-test/suite/mariabackup/drop_table_during_backup.result')
-rw-r--r-- | mysql-test/suite/mariabackup/drop_table_during_backup.result | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/mysql-test/suite/mariabackup/drop_table_during_backup.result b/mysql-test/suite/mariabackup/drop_table_during_backup.result new file mode 100644 index 00000000..dfcde706 --- /dev/null +++ b/mysql-test/suite/mariabackup/drop_table_during_backup.result @@ -0,0 +1,19 @@ +CREATE TABLE t1 (i int) ENGINE=INNODB; +CREATE TABLE t2 (i int) ENGINE=INNODB; +CREATE TABLE t3 (i int) ENGINE=INNODB; +CREATE TABLE t4 (i int) ENGINE=INNODB; +CREATE TABLE t5 (i int) ENGINE=INNODB; +set global innodb_log_checkpoint_now=1; +# xtrabackup prepare +# shutdown server +# remove datadir +# xtrabackup move back +# restart +CREATE TABLE t1(i int); +DROP TABLE t1; +CREATE TABLE t2(i int); +DROP TABLE t2; +DROP TABLE t3; +CREATE TABLE t4(i int); +DROP TABLE t4; +DROP TABLE t5; |