1include/master-slave.inc
2[connection master]
3call mtr.add_suppression("Slave I/O: The slave I/O thread stops because a fatal error is encountered when it tried to SET @master_binlog_checksum");
4connection master;
5create table t1(n int);
6connection slave;
7select * from t1;
8n
9stop slave sql_thread;
10connection master;
11insert into t1 values(1);
12insert into t1 values(2);
13connection slave;
14include/wait_for_slave_param.inc [Read_Master_Log_Pos]
15include/stop_slave.inc
16change master to master_user='root';
17start slave;
18select * from t1;
19n
201
212
22connection master;
23drop table t1;
24connection slave;
25connection master;
26CHANGE MASTER TO MASTER_USER='root', MASTER_SSL=0, MASTER_SSL_CA='', MASTER_SSL_CERT='',
27MASTER_SSL_KEY='', MASTER_SSL_CRL='', MASTER_SSL_CRLPATH='';
28CHANGE MASTER TO MASTER_USER='root', MASTER_PASSWORD='', MASTER_SSL=0;
29include/rpl_end.inc
30