mirror of
https://github.com/MariaDB/server.git
synced 2025-05-28 13:01:41 +03:00
9 lines
293 B
Plaintext
9 lines
293 B
Plaintext
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;
|