~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_temp_table.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, PRIMARY KEY(n));
 
8
create temporary table t1 (n int);
 
9
create temporary table t3 (n int not null);
 
10
insert into t1 values(1),(2),(3),(100),(25),(26),(200),(300);
 
11
insert into t2 select * from t1;
 
12
alter table t3 add primary key(n);
 
13
flush logs;
 
14
insert into t3 values (1010);
 
15
insert into t2 select * from t3;
 
16
drop table if exists t3;
 
17
insert into t2 values (1012);
 
18
create temporary table t1 (n int);
 
19
insert into t1 values (4),(5);
 
20
insert into t2 select * from t1;
 
21
insert into t2 values(61);
 
22
select * from t2;
 
23
n
 
24
1
 
25
2
 
26
3
 
27
4
 
28
5
 
29
25
 
30
26
 
31
61
 
32
100
 
33
200
 
34
300
 
35
1010
 
36
1012
 
37
select count(*) from t2;
 
38
count(*)
 
39
13
 
40
select sum(n) from t2;
 
41
sum(n)
 
42
2749
 
43
show status like 'Slave_open_temp_tables';
 
44
Variable_name   Value
 
45
Slave_open_temp_tables  0
 
46
drop table if exists t1,t2;
 
47
Warnings:
 
48
Note    1051    Unknown table 't1'