summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/r/rpl_max_binlog_size_func.result
blob: 57b708146981f72261b5be90b4dca21ba3c0f488 (plain)
1
2
3
4
5
6
7
8
9
10
11
DROP TABLE IF EXISTS t1;
'--- check if log file is rotated after 4096 bytes ----'
SET @saved_max_binlog_size= @@global.max_binlog_size;
SET @@global.max_binlog_size = 4096;
CREATE TABLE t1(a CHAR(5));
SELECT COUNT(*) FROM t1;
COUNT(*)
50
'mylog.000002 exists'
SET @@global.max_binlog_size= @saved_max_binlog_size;
DROP TABLE t1;