1--source include/master-slave.inc
2
3CREATE TABLE t1 (word CHAR(20) NOT NULL);
4LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE t1;
5SELECT * FROM t1 ORDER BY word;
6sync_slave_with_master;
7
8# Check
9SELECT * FROM t1 ORDER BY word;
10
11# Cleanup
12connection master;
13drop table t1;
14sync_slave_with_master;
15--source include/rpl_end.inc
16