5
5
# binlog if it was a transactional table, it resulted in an
6
6
# inconsistency between binlog and the internal list of temp tables.
9
8
drop table if exists t1, t2;
12
13
INSERT INTO t1 VALUES (1),(2),(1);
14
15
CREATE TABLE t2 ( PRIMARY KEY (a) ) ENGINE=INNODB SELECT a FROM t1;