include/master-slave.inc [connection master] connection master; CREATE TEMPORARY TABLE temp_t1 (c1 INT) ENGINE=InnoDB; CREATE TEMPORARY TABLE temp_t2 (c1 INT) ENGINE=MyISAM; CREATE TABLE t1 LIKE temp_t1; CREATE TABLE t2 LIKE temp_t2; connection slave; connection master; include/assert.inc ["t1 on master and temp_t1 have the same storage engine"] include/assert.inc ["t2 on master and temp_t2 have the same storage engine"] connection slave; include/assert.inc ["t1 on slave and temp_t1 have the same storage engine"] include/assert.inc ["t2 on slave and temp_t2 have the same storage engine"] connection master; DROP TEMPORARY TABLE temp_t1, temp_t2; DROP TABLE t1, t2; include/rpl_end.inc