1include/master-slave.inc
2Warnings:
3Note	####	Sending passwords in plain text without SSL/TLS is extremely insecure.
4Note	####	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.
5[connection master]
6call mtr.add_suppression("Slave SQL for channel '': Request to stop slave SQL Thread received while applying a group that has non-transactional changes; waiting for completion of the group");
7include/sync_slave_sql_with_master.inc
8stop slave;
9create table t1 (a int) engine=innodb;
10reset slave;
11start slave;
12stop slave;
13start slave;
14select max(a) from t1;
15max(a)
16loop_max
17drop table t1;
18include/rpl_end.inc
19