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

« back to all changes in this revision

Viewing changes to mysql-test/suite/rpl/r/rpl_row_multi_query.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
drop database if exists mysqltest;
 
8
create database mysqltest;
 
9
create table mysqltest.t1 ( n int);
 
10
insert into mysqltest.t1 values(1)/
 
11
insert into mysqltest.t1 values(2);
 
12
insert into mysqltest.t1 values(3);
 
13
insert into mysqltest.t1 values(4);
 
14
insert into mysqltest.t1 values(5)/
 
15
select * from mysqltest.t1;
 
16
n
 
17
1
 
18
2
 
19
3
 
20
4
 
21
5
 
22
show binlog events from 102;
 
23
Log_name        Pos     Event_type      Server_id       End_log_pos     Info
 
24
master-bin.000001       #       Query   1       #       #
 
25
master-bin.000001       #       Query   1       #       #
 
26
master-bin.000001       #       Query   1       #       #
 
27
master-bin.000001       #       Table_map       1       #       #
 
28
master-bin.000001       #       Write_rows      1       #       #
 
29
master-bin.000001       #       Table_map       1       #       #
 
30
master-bin.000001       #       Write_rows      1       #       #
 
31
master-bin.000001       #       Table_map       1       #       #
 
32
master-bin.000001       #       Write_rows      1       #       #
 
33
master-bin.000001       #       Table_map       1       #       #
 
34
master-bin.000001       #       Write_rows      1       #       #
 
35
master-bin.000001       #       Table_map       1       #       #
 
36
master-bin.000001       #       Write_rows      1       #       #
 
37
drop database mysqltest;