~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

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

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

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'