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

« back to all changes in this revision

Viewing changes to mysql-test/suite/bugs/r/rpl_bug23533.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 TABLE IF EXISTS t1,t2;
8
 
SET AUTOCOMMIT=0;
9
 
SET GLOBAL max_binlog_cache_size=4096;
10
 
SHOW VARIABLES LIKE 'max_binlog_cache_size';
11
 
Variable_name   Value
12
 
max_binlog_cache_size   4096
13
 
CREATE TABLE t1 (a INT NOT NULL AUTO_INCREMENT, b TEXT, PRIMARY KEY(a)) ENGINE=InnoDB;
14
 
SELECT COUNT(*) FROM t1;
15
 
COUNT(*)
16
 
1000
17
 
START TRANSACTION;
18
 
CREATE TABLE t2 SELECT * FROM t1;
19
 
ERROR HY000: Writing one row to the row-based binary log failed
20
 
COMMIT;
21
 
SHOW TABLES LIKE 't%';
22
 
Tables_in_test (t%)
23
 
t1