include/master-slave.inc [connection master] **** On Master **** CREATE TABLE t1 (a INT); INSERT INTO t1 VALUES (1),(2),(3); SELECT * FROM t1; a 1 2 3 REPLACE INTO t1 VALUES (4); SELECT * FROM t1; a 1 2 3 4 include/check_slave_is_running.inc Should have two binary logs here show binary logs; Log_name File_size master-bin.000001 # master-bin.000002 # DROP TABLE t1; include/rpl_end.inc