~linuxjedi/drizzle/trunk-bug-667053

« back to all changes in this revision

Viewing changes to mysql-test/suite/bugs/r/rpl_bug23533.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 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