diff options
Diffstat (limited to 'mysql-test/suite/binlog/t/binlog_truncate_myisam.test')
-rw-r--r-- | mysql-test/suite/binlog/t/binlog_truncate_myisam.test | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mysql-test/suite/binlog/t/binlog_truncate_myisam.test b/mysql-test/suite/binlog/t/binlog_truncate_myisam.test new file mode 100644 index 00000000..864e9c63 --- /dev/null +++ b/mysql-test/suite/binlog/t/binlog_truncate_myisam.test @@ -0,0 +1,17 @@ +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; |