~vlad-lesin/percona-server/mysql-5.0.33-original

« back to all changes in this revision

Viewing changes to mysql-test/r/rpl000013.result

  • Committer: Vlad Lesin
  • Date: 2012-07-31 09:21:34 UTC
  • Revision ID: vladislav.lesin@percona.com-20120731092134-zfodx022b7992wsi
VirginĀ 5.0.33

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
stop slave;
 
2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
3
reset master;
 
4
reset slave;
 
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
 
6
start slave;
 
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);
 
15
select * from t2;
 
16
n
 
17
1
 
18
2
 
19
3
 
20
4
 
21
5
 
22
6
 
23
show status like 'Slave_open_temp_tables';
 
24
Variable_name   Value
 
25
Slave_open_temp_tables  0
 
26
drop table if exists t1,t2;
 
27
Warnings:
 
28
Note    1051    Unknown table 't1'