2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
7
create table t2(n int);
8
create temporary table t1 (n int);
9
insert into t1 values(1),(2),(3);
10
insert into t2 select * from t1;
11
create temporary table t1 (n int);
12
insert into t1 values (4),(5);
13
insert into t2 select * from t1 as t10;
14
insert into t2 values(6);
23
show status like 'Slave_open_temp_tables';
25
Slave_open_temp_tables 0
26
drop table if exists t1,t2;
28
Note 1051 Unknown table 't1'