summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/mariabackup/partial_exclude.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/mariabackup/partial_exclude.result')
-rw-r--r--mysql-test/suite/mariabackup/partial_exclude.result22
1 files changed, 22 insertions, 0 deletions
diff --git a/mysql-test/suite/mariabackup/partial_exclude.result b/mysql-test/suite/mariabackup/partial_exclude.result
new file mode 100644
index 00000000..f57a5f63
--- /dev/null
+++ b/mysql-test/suite/mariabackup/partial_exclude.result
@@ -0,0 +1,22 @@
+select @@ignore_db_dirs;
+@@ignore_db_dirs
+db3,db4
+CREATE TABLE t1(i INT) ENGINE INNODB;
+INSERT INTO t1 VALUES(1);
+CREATE TABLE t2(i int) ENGINE INNODB;
+CREATE DATABASE db2;
+USE db2;
+CREATE TABLE t1(i INT) ENGINE INNODB;
+USE test;
+BEGIN;
+INSERT INTO db2.t1 VALUES(20);
+INSERT INTO test.t1 VALUES(20);
+INSERT INTO test.t2 VALUES(20);
+# xtrabackup backup
+COMMIT;
+t1.new
+DROP TABLE t1;
+DROP TABLE t2;
+DROP DATABASE db2;
+NOT FOUND /Operating system error number/ in backup.log
+NOT FOUND /Could not find a valid tablespace file for/ in backup.log