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] create table t1(a int not null primary key) engine=myisam; insert delayed into t1 values (1); Warnings: Warning 1287 'INSERT DELAYED' is deprecated and will be removed in a future release. Please use INSERT instead insert delayed into t1 values (2); Warnings: Warning 1287 'INSERT DELAYED' is deprecated and will be removed in a future release. Please use INSERT instead insert delayed into t1 values (3); Warnings: Warning 1287 'INSERT DELAYED' is deprecated and will be removed in a future release. Please use INSERT instead flush tables; SELECT * FROM t1 ORDER BY a; a 1 2 3 SELECT * FROM t1 ORDER BY a; a 1 2 3 drop table t1; include/rpl_end.inc