Commit 86260ead authored by unknown's avatar unknown

Fixes to make rpl_user test pass in pushbuild.


mysql-test/t/rpl_user.test:
  Removing redundant reset master and deleting users from master
  and slave without using binary log.
parent c078b5c5
......@@ -2,13 +2,19 @@
--source include/master-slave.inc
reset master;
#
# remove all users will be used in the test
#
connection master;
set sql_log_bin=0;
delete from mysql.user where Host='fakehost';
sync_slave_with_master;
set sql_log_bin=1;
connection slave;
set sql_log_bin=0;
delete from mysql.user where Host='fakehost';
set sql_log_bin=1;
#
# Test create user
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment