summaryrefslogtreecommitdiff
path: root/mysql-test/include/mtr_check.sql
diff options
context:
space:
mode:
authorPhilip Stoev <philip.stoev@galeracluster.com>2015-09-29 23:29:54 -0700
committerNirbhay Choubey <nirbhay@mariadb.com>2016-02-22 14:43:35 -0500
commit7ce84cf76433849959deff9255294d797319f64e (patch)
treebe2db0f52e3c0de7800e6be983a5e2008de9aad2 /mysql-test/include/mtr_check.sql
parent2f870f53767f225fa20a7b04d5f16712370904c8 (diff)
downloadmariadb-git-7ce84cf76433849959deff9255294d797319f64e.tar.gz
Galera MTR Tests: stability fixes
Conflicts: mysql-test/include/mtr_check.sql mysql-test/suite/galera/r/galera_log_bin.result mysql-test/suite/galera/t/galera_log_bin.test
Diffstat (limited to 'mysql-test/include/mtr_check.sql')
-rw-r--r--mysql-test/include/mtr_check.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/include/mtr_check.sql b/mysql-test/include/mtr_check.sql
index edc15850d97..6e3908aa841 100644
--- a/mysql-test/include/mtr_check.sql
+++ b/mysql-test/include/mtr_check.sql
@@ -41,6 +41,11 @@ BEGIN
-- except those that was created during bootstrap
SELECT * FROM INFORMATION_SCHEMA.SCHEMATA;
+ -- and the mtr_wsrep_notify schema which is populated by the std_data/wsrep_notify.sh script
+ -- and the suite/galera/t/galera_var_notify_cmd.test
+ -- and the wsrep_schema schema that may be created by Galera
+ SELECT * FROM INFORMATION_SCHEMA.SCHEMATA WHERE SCHEMA_NAME NOT IN ('mtr_wsrep_notify', 'wsrep_schema');
+
-- The test database should not contain any tables
SELECT table_name AS tables_in_test FROM INFORMATION_SCHEMA.TABLES
WHERE table_schema='test';