2
drop table if exists t1;
5
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
6
set global transaction_message_threshold=2000000;
8
create table t1 (a int primary key);
9
insert into t1 values (1),(2),(3);
11
show create table data_dictionary.INNODB_REPLICATION_LOG;
12
select count(*) >= 3 from data_dictionary.INNODB_REPLICATION_LOG;