mirror of
https://github.com/MariaDB/server.git
synced 2025-05-07 04:01:59 +03:00
18 lines
294 B
Plaintext
18 lines
294 B
Plaintext
source include/have_log_bin.inc;
|
|
|
|
SET @old_binlog_format=@@binlog_format;
|
|
|
|
let $engine = MyISAM;
|
|
|
|
SET BINLOG_FORMAT=ROW;
|
|
RESET MASTER;
|
|
|
|
source include/binlog_truncate.test;
|
|
|
|
SET BINLOG_FORMAT=STATEMENT;
|
|
RESET MASTER;
|
|
|
|
source include/binlog_truncate.test;
|
|
|
|
SET BINLOG_FORMAT=@old_binlog_format;
|