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 t (i INT AUTO_INCREMENT PRIMARY KEY) ENGINE=InnoDB;
7include/sync_slave_sql_with_master.inc
8SET @save_debug=@@debug;
9SET GLOBAL DEBUG='+d,die_if_autoinc_old_lock_style_used';
10[connection master]
11INSERT INTO t VALUES (1);
12DROP TABLE t;
13include/sync_slave_sql_with_master.inc
14SET GLOBAL DEBUG=@save_debug;
15include/rpl_end.inc
16