mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 18:20:07 +01:00
17 lines
294 B
Text
17 lines
294 B
Text
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;
|