# # Bug #51639 # The common part of Bug #51639 to test filters # -- source include/have_myisam.inc CREATE DATABASE mydb; USE mydb; CREATE TABLE T1 (a INT) ENGINE= MYISAM; CREATE TABLE t2 (a INT) ENGINE= MYISAM; INSERT INTO T1 VALUES (1); INSERT INTO t2 VALUES (1); -- echo # On master -- source include/show_binlog_events.inc -- source include/sync_slave_sql_with_master.inc -- echo # On slave -- source include/show_binlog_events.inc -- connection master DROP DATABASE mydb; -- source include/sync_slave_sql_with_master.inc