include/master-slave.inc Warnings: Note #### Sending passwords in plain text without SSL/TLS is extremely insecure. Note #### Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information. [connection master] CALL mtr.add_suppression('Slave I/O: The master uses an unknown GTID_MODE'); CALL mtr.add_suppression('The slave IO thread stops because the master has an unknown'); SET @save_debug= @@GLOBAL.DEBUG; include/stop_slave.inc SET @@GLOBAL.DEBUG = 'd,simulate_master_has_gtid_mode_off_permissive'; include/start_slave.inc include/assert_grep.inc [Receiver thread should report that off_permissive is unknown] include/stop_slave.inc SET @@GLOBAL.DEBUG = 'd,simulate_master_has_gtid_mode_off_something'; include/start_slave.inc include/assert_grep.inc [Receiver thread should report that off_something is unknown] include/stop_slave.inc SET @@GLOBAL.DEBUG = 'd,simulate_master_has_unknown_gtid_mode'; START SLAVE; include/wait_for_slave_io_error.inc [errno=1593] SET @@GLOBAL.DEBUG= @save_debug; include/stop_slave_sql.inc RESET SLAVE; include/start_slave.inc include/rpl_end.inc