~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/t/rpl_do_grant.test

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2010-06-21 15:31:05 UTC
  • mfrom: (1.1.3 upstream)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20100621153105-pbbz3t6nyrf9t2zq
Tags: upstream-5.1.48
ImportĀ upstreamĀ versionĀ 5.1.48

Show diffs side-by-side

added added

removed removed

Lines of Context:
120
120
# BUG42217  mysql.procs_priv does not get replicated
121
121
#####################################################
122
122
connection master; 
 
123
call mtr.add_suppression("Slave: Operation DROP USER failed for 'create_rout_db'@'localhost' Error_code: 1396");
 
124
sync_slave_with_master;
 
125
connection master;
123
126
 
124
127
--disable_warnings
125
128
DROP DATABASE IF EXISTS bug42217_db;
209
212
DROP FUNCTION upgrade_del_func;
210
213
DROP FUNCTION upgrade_alter_func;
211
214
DROP DATABASE bug42217_db;
 
215
-- sync_slave_with_master
 
216
-- connection master
 
217
 
 
218
# user was already dropped in the slave before
 
219
# so no need to wait for the slave to replicate
 
220
# this statement (if it did and we later synced
 
221
# the slave it would end up in an error anyway)
212
222
DROP USER 'create_rout_db'@'localhost';
213
223
 
214
 
call mtr.add_suppression("Slave: Operation DROP USER failed for 'create_rout_db'@'localhost' Error_code: 1396");
215
 
connection slave;
216
 
USE mtr;
217
 
call mtr.add_suppression("Slave: Operation DROP USER failed for 'create_rout_db'@'localhost' Error_code: 1396");
 
224
# finish entire clean up (remove binlogs)
 
225
# so that we leave a pristine environment for the
 
226
# following tests
 
227
-- source include/master-slave-reset.inc
218
228
 
219
229
# BUG#49119: Master crashes when executing 'REVOKE ... ON
220
230
# {PROCEDURE|FUNCTION} FROM ...'