mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Adapt mysql-test-run.pl to mysqld in 5.1 using "mixed" binlog format by default
This commit is contained in:
@ -714,12 +714,20 @@ sub command_line_setup () {
|
||||
# --------------------------------------------------------------------------
|
||||
# NOTE if the default binlog format is changed, this has to be changed
|
||||
$used_binlog_format= "stmt";
|
||||
if ( $mysql_version_id >= 50100 )
|
||||
{
|
||||
$used_binlog_format= "mixed";
|
||||
}
|
||||
foreach my $arg ( @opt_extra_mysqld_opt )
|
||||
{
|
||||
if ( defined mtr_match_substring($arg,"binlog-format=row"))
|
||||
{
|
||||
$used_binlog_format= "row";
|
||||
}
|
||||
elsif ( defined mtr_match_substring($arg,"binlog-format=stmt"))
|
||||
{
|
||||
$used_binlog_format= "stmt";
|
||||
}
|
||||
}
|
||||
mtr_report("Using binlog format '$used_binlog_format'");
|
||||
|
||||
|
Reference in New Issue
Block a user