diff --git a/mysql-test/r/binlog_start_comment.result b/mysql-test/r/binlog_start_comment.result deleted file mode 100644 index 3d32b23ef78..00000000000 --- a/mysql-test/r/binlog_start_comment.result +++ /dev/null @@ -1,14 +0,0 @@ -drop table if exists t1,t2; -create table t1 (word varchar(20)) -- create table t1; -create table t2 (word varchar(20)) -- create table t2; -load data infile '../std_data_ln/words.dat' into table t1 -- load data to t1; -insert into t2 values ("Ada"); -flush logs; -select * from t2; -word -Ada -flush logs; -select * from t2; -word -Ada -drop table t1,t2; diff --git a/mysql-test/r/binlog_unsafe.result b/mysql-test/suite/binlog/r/binlog_unsafe.result similarity index 100% rename from mysql-test/r/binlog_unsafe.result rename to mysql-test/suite/binlog/r/binlog_unsafe.result diff --git a/mysql-test/t/binlog_unsafe.test b/mysql-test/suite/binlog/t/binlog_unsafe.test similarity index 100% rename from mysql-test/t/binlog_unsafe.test rename to mysql-test/suite/binlog/t/binlog_unsafe.test diff --git a/mysql-test/suite/rpl/t/rpl_row_sp005.test b/mysql-test/suite/rpl/t/rpl_row_sp005.test index acd2f4511a0..b118242dc3b 100644 --- a/mysql-test/suite/rpl/t/rpl_row_sp005.test +++ b/mysql-test/suite/rpl/t/rpl_row_sp005.test @@ -86,11 +86,13 @@ connection master; CALL test.p1(); let $wait_condition= SELECT COUNT(*) = 4 FROM t3; --source include/wait_condition.inc +save_master_pos; SELECT * FROM test.t3 ORDER BY id3; let $message=< ---- Slave selects-- >; --source include/show_msg.inc connection slave; +sync_with_master; SELECT * FROM test.t3 ORDER BY id3; connection master; diff --git a/mysql-test/t/binlog_start_comment.test b/mysql-test/t/binlog_start_comment.test deleted file mode 100644 index e59d734a1be..00000000000 --- a/mysql-test/t/binlog_start_comment.test +++ /dev/null @@ -1,18 +0,0 @@ -# Test case for bug#32205 Replaying statements from mysqlbinlog fails -# with a syntax error, replicates fine - --- source include/have_log_bin.inc ---disable_warnings -drop table if exists t1,t2; ---enable_warnings -create table t1 (word varchar(20)) -- create table t1; -create table t2 (word varchar(20)) -- create table t2; -load data infile '../std_data_ln/words.dat' into table t1 -- load data to t1; -insert into t2 values ("Ada"); -flush logs; -select * from t2; ---exec $MYSQL_BINLOG $MYSQLTEST_VARDIR/log/master-bin.000001 | $MYSQL -flush logs; -select * from t2; - -drop table t1,t2;