1include/master-slave.inc
2[connection master]
3CREATE TABLE t1 (a INT);
4INSERT INTO t1 VALUES (1);
5DROP TABLE t1;
6connection slave;
7==== Check that we can understand the new format of relay-log.info ====
8include/stop_slave.inc
9RESET SLAVE;
10# Read relay-log.info
11START SLAVE IO_THREAD;
12include/wait_for_slave_io_to_start.inc
13# Check that relay log coordinates are equal to those saved in new-format_relay-log.info
14= , 0, slave-relay-bin.000001, 4
15include/rpl_end.inc
16