mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
caf604282f
mysql-test/suite/binlog/r/binlog_multi_engine.result: updated result mysql-test/suite/binlog/t/binlog_multi_engine.test: fix for bug#32663 mysql-test/suite/binlog/t/disabled.def: updated mysql-test/suite/rpl/r/rpl_invoked_features.result: updated result mysql-test/suite/rpl/t/disabled.def: updated mysql-test/suite/rpl/t/rpl_invoked_features.test: fix for bug#33045 mysql-test/suite/bugs/r/rpl_bug23533.result: result file mysql-test/suite/bugs/t/rpl_bug23533.test: test case for bug#23533
23 lines
624 B
Text
23 lines
624 B
Text
stop slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
start slave;
|
|
DROP TABLE IF EXISTS t1,t2;
|
|
SET AUTOCOMMIT=0;
|
|
SET GLOBAL max_binlog_cache_size=4096;
|
|
SHOW VARIABLES LIKE 'max_binlog_cache_size';
|
|
Variable_name Value
|
|
max_binlog_cache_size 4096
|
|
CREATE TABLE t1 (a INT NOT NULL AUTO_INCREMENT, b TEXT, PRIMARY KEY(a)) ENGINE=InnoDB;
|
|
SELECT COUNT(*) FROM t1;
|
|
COUNT(*)
|
|
1000
|
|
START TRANSACTION;
|
|
CREATE TABLE t2 SELECT * FROM t1;
|
|
ERROR HY000: Writing one row to the row-based binary log failed
|
|
COMMIT;
|
|
SHOW TABLES LIKE 't%';
|
|
Tables_in_test (t%)
|
|
t1
|