-- source include/have_innodb.inc # # See if we still have bug# (INSERT after DROP TABLE in binlog) # connect (master,127.0.0.1,root,,test,$MASTER_MYPORT,); connect (master1,127.0.0.1,root,,test,$MASTER_MYPORT,); connection master; drop table if exists t1,t2,t3; create table t1 (a int) type=innodb; reset master; begin; insert into t1 values(1); connection master1; drop table t1; connection master; commit; let $VERSION=`select version()`; --replace_result $VERSION VERSION show binlog events;