~stewart/drizzle/embedded-innodb-create-select-transaction-arrgh

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_stm_no_op.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 database mysqltest;
 
8
drop database if exists mysqltest;
 
9
Warnings:
 
10
Note    1008    Can't drop database 'mysqltest'; database doesn't exist
 
11
show tables from mysqltest;
 
12
ERROR 42000: Unknown database 'mysqltest'
 
13
create table t1 (a int);
 
14
drop table if exists t1;
 
15
Warnings:
 
16
Note    1051    Unknown table 't1'
 
17
select * from t1;
 
18
ERROR 42S02: Table 'test.t1' doesn't exist
 
19
create table t1 (a int, b int);
 
20
insert into t1 values(1,1);
 
21
delete from t1;
 
22
select * from t1;
 
23
a       b
 
24
insert into t1 values(1,1);
 
25
insert into t1 values(2,1);
 
26
update t1 set a=2;
 
27
select * from t1;
 
28
a       b
 
29
2       1
 
30
2       1
 
31
create table t2 (a int, b int);
 
32
delete from t1;
 
33
insert into t1 values(1,1);
 
34
insert into t2 values(1,1);
 
35
update t1 set a=2;
 
36
UPDATE t1, t2 SET t1.a = t2.a;
 
37
select * from t1;
 
38
a       b
 
39
1       1
 
40
select * from t2;
 
41
a       b
 
42
1       1
 
43
delete from t1;
 
44
delete from t2;
 
45
insert into t1 values(1,1);
 
46
insert into t2 values(1,1);
 
47
DELETE t1.*, t2.* from t1, t2;
 
48
select * from t1;
 
49
a       b
 
50
select * from t2;
 
51
a       b
 
52
drop table t1, t2;