stop slave; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; reset master; reset slave; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; start slave; CREATE DATABASE test_ignore; **** On Master **** SHOW DATABASES; Database information_schema cluster_replication mysql test test_ignore USE test; CREATE TABLE t1 (a INT, b INT); SHOW TABLES; Tables_in_test t1 INSERT INTO t1 VALUES (1,1), (2,2); USE test_ignore; CREATE TABLE t2 (a INT, b INT); SHOW TABLES; Tables_in_test_ignore t2 INSERT INTO t2 VALUES (3,3), (4,4); **** On Slave **** SHOW DATABASES; Database information_schema cluster_replication mysql test USE test; SHOW TABLES; Tables_in_test t1 USE test_ignore; ERROR 42000: Unknown database 'test_ignore' DROP DATABASE test_ignore;