~ubuntu-branches/ubuntu/maverick/mysql-5.1/maverick-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 14:16:05 UTC
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: package-import@ubuntu.com-20120222141605-nxlu9yzc6attylc2
Tags: upstream-5.1.61
ImportĀ upstreamĀ versionĀ 5.1.61

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;
 
1
include/master-slave.inc
 
2
[connection master]
8
3
create database mysqltest;
9
4
create table mysqltest.t1 ( n int);
10
5
insert into mysqltest.t1 values(1)/
21
16
5
22
17
show binlog events from <binlog_start>;
23
18
Log_name        Pos     Event_type      Server_id       End_log_pos     Info
24
 
master-bin.000001       #       Query   #       #       drop database if exists mysqltest
25
19
master-bin.000001       #       Query   #       #       create database mysqltest
26
20
master-bin.000001       #       Query   #       #       use `test`; create table mysqltest.t1 ( n int)
27
21
master-bin.000001       #       Query   #       #       use `test`; insert into mysqltest.t1 values(1)
30
24
master-bin.000001       #       Query   #       #       use `test`; insert into mysqltest.t1 values(4)
31
25
master-bin.000001       #       Query   #       #       use `test`; insert into mysqltest.t1 values(5)
32
26
drop database mysqltest;
 
27
include/rpl_end.inc