1include/master-slave.inc
2[connection master]
3connection master;
4CREATE TEMPORARY TABLE temp_t1 (c1 INT) ENGINE=InnoDB;
5CREATE TEMPORARY TABLE temp_t2 (c1 INT) ENGINE=MyISAM;
6CREATE TABLE t1 LIKE temp_t1;
7CREATE TABLE t2 LIKE temp_t2;
8connection slave;
9connection master;
10include/assert.inc ["t1 on master and temp_t1 have the same storage engine"]
11include/assert.inc ["t2 on master and temp_t2 have the same storage engine"]
12connection slave;
13include/assert.inc ["t1 on slave and temp_t1 have the same storage engine"]
14include/assert.inc ["t2 on slave and temp_t2 have the same storage engine"]
15connection master;
16DROP TEMPORARY TABLE temp_t1, temp_t2;
17DROP TABLE t1, t2;
18include/rpl_end.inc
19