diff options
Diffstat (limited to 'mysql-test/t/rpl000017.test')
-rw-r--r-- | mysql-test/t/rpl000017.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/rpl000017.test b/mysql-test/t/rpl000017.test index 3bff9b4cbd8..f38e109cb19 100644 --- a/mysql-test/t/rpl000017.test +++ b/mysql-test/t/rpl000017.test @@ -7,7 +7,9 @@ grant replication slave on *.* to replicate@127.0.0.1 identified by 'aaaaaaaaaaa connection slave; start slave; connection master; +--disable_warnings drop table if exists t1; +--enable_warnings create table t1(n int); insert into t1 values(24); sync_slave_with_master; |