~ubuntu-branches/debian/jessie/mysql-utilities/jessie

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Dmitry Smirnov
  • Date: 2013-05-14 15:02:12 UTC
  • mfrom: (4.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130514150212-cfj83guqqo0kx7l0
Tags: 1.1.2-1
* Upload to unstable.
* "X-Python-Version: >= 2.7" to stop using deprecated python-2.6.

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
    def run_import_test(self, expected_res, from_conn, to_conn, format, type,
82
82
                        comment, export_options=None, import_options=None):
83
83
    
84
 
        export_cmd = "mysqldbexport.py %s util_test --export=" % from_conn
 
84
        export_cmd = "mysqldbexport.py  --skip-gtid " + \
 
85
                     "%s util_test --export=" % from_conn
85
86
        export_cmd += type + " --format=%s " % format
86
87
        if export_options is not None:
87
88
            export_cmd += export_options