~chuck-bell/mysql-utilities/mysql-utilities

« back to all changes in this revision

Viewing changes to mysql-test/t/copy_user.py

  • Committer: chuck.bell at oracle
  • Date: 2011-09-29 14:14:38 UTC
  • Revision ID: chuck.bell@oracle.com-20110929141438-clzfl7m2769wt2jm
WL#5983 : allow user to specify binary log file and position (mysqlreplicate)

This patch adds new features to mysqlreplicate to permit starting replication
from the beginning, starting from a specific log file, and starting from a
specific log file and position.

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
        return self.save_result_file(__name__, self.results)
135
135
    
136
136
    def drop_user(self, user_name, server):
137
 
        user = User(server, user_name, False)
 
137
        user = User(server, user_name)
138
138
        if user.exists():
139
139
            res = user.drop()
140
140
            if res is not None: