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]
6create table t1 (n int not null auto_increment primary key);
7insert into t1 values(NULL);
8insert into t1 values(2);
9include/sync_slave_sql_with_master.inc
10select n from t1;
11n
121
132
14drop table t1;
15include/sync_slave_sql_with_master.inc
16include/rpl_end.inc
17