~ubuntu-branches/ubuntu/precise/mysql-5.1/precise

« back to all changes in this revision

Viewing changes to mysql-test/suite/bugs/r/rpl_bug23533.result

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Tretkowski
  • Date: 2010-03-17 14:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20100317145602-x7e30l1b2sb5s6w6
Tags: upstream-5.1.45
ImportĀ upstreamĀ versionĀ 5.1.45

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