1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

Rmove RESET MASTER from have_log_bin.inc because it can cause some

test to stall for slave_net_timeout and cause some test case fail

mysql-test/include/have_log_bin.inc:
  remove reset master, which can cause some test to stall for slave_net_timeout and cause some test case fail
mysql-test/r/mysqlbinlog_base64.result:
  update result
mysql-test/t/mysqlbinlog_base64.test:
  Add reset master to make sure binlog is clean when the test case start
This commit is contained in:
He Zhenxing
2008-07-28 15:15:20 +08:00
parent 239fd18411
commit e948f38eae
3 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,4 @@
reset master;
create table t1 (a int);
insert into t1 values (1);
insert into t1 values (2);