summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/r/rpl_max_binlog_size_func.result
blob: 0d0a1ae03c493d5ad2feb74241df37d85d3ab19a (plain)
1
2
3
4
5
6
7
8
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));
'mylog.000002 exists'
SET @@global.max_binlog_size= @saved_max_binlog_size;
DROP TABLE t1;