2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
7
DROP TABLE IF EXISTS t1,t2;
9
SET GLOBAL max_binlog_cache_size=4096;
10
SHOW VARIABLES LIKE 'max_binlog_cache_size';
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;
18
CREATE TABLE t2 SELECT * FROM t1;
19
ERROR HY000: Writing one row to the row-based binary log failed
21
SHOW TABLES LIKE 't%';