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

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-02-22 08:30:45 UTC
  • mfrom: (1.4.1)
  • Revision ID: package-import@ubuntu.com-20120222083045-2rd53r4bnyx7qus4
Tags: 5.1.61-0ubuntu0.11.04.1
* SECURITY UPDATE: Update to 5.1.61 to fix multiple security issues
  (LP: #937869)
  - http://www.oracle.com/technetwork/topics/security/cpujan2012-366304.html
  - CVE-2011-2262
  - CVE-2012-0075
  - CVE-2012-0112
  - CVE-2012-0113
  - CVE-2012-0114
  - CVE-2012-0115
  - CVE-2012-0116
  - CVE-2012-0117
  - CVE-2012-0118
  - CVE-2012-0119
  - CVE-2012-0120
  - CVE-2012-0484
  - CVE-2012-0485
  - CVE-2012-0486
  - CVE-2012-0487
  - CVE-2012-0488
  - CVE-2012-0489
  - CVE-2012-0490
  - CVE-2012-0491
  - CVE-2012-0492
  - CVE-2012-0493
  - CVE-2012-0494
  - CVE-2012-0495
  - CVE-2012-0496

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;
 
1
include/master-slave.inc
 
2
[connection master]
7
3
CALL mtr.add_suppression("Statement may not be safe to log in statement format.");
8
4
DROP TABLE IF EXISTS t1;
9
5
DROP TABLE IF EXISTS t2;
863
859
drop table t11;
864
860
STOP SLAVE;
865
861
FLUSH LOGS;
866
 
--> Stop master server
867
 
--> Start master server
 
862
include/rpl_stop_server.inc [server_number=1]
 
863
include/rpl_start_server.inc [server_number=1]
868
864
--> Master binlog: Server ver: 5.0.16-debug-log, Binlog ver: 4
869
865
RESET SLAVE;
870
866
START SLAVE;
979
975
2       b
980
976
3       c
981
977
drop table t1;
982
 
stop slave;
983
 
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
984
 
reset master;
985
 
reset slave;
986
 
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
987
 
start slave;
 
978
include/rpl_reset.inc
988
979
create table t1 ( f int ) engine = innodb;
989
980
create table log ( r int ) engine = myisam;
990
981
create trigger tr
995
986
rollback;
996
987
Warnings:
997
988
Warning 1196    Some non-transactional changed tables couldn't be rolled back
998
 
Comparing tables master:test.t1 and slave:test.t1
999
 
Comparing tables master:test.log and slave:test.log
 
989
include/diff_tables.inc [master:t1, slave:t1]
 
990
include/diff_tables.inc [master:log, slave:log]
1000
991
drop table t1, log;
 
992
include/rpl_end.inc