Commit dbfa53d2 authored by unknown's avatar unknown

Bug#25592 wrong reporting for mysql-test-run.pl --mysqld=--binlog-format=...


mysql-test/mysql-test-run.pl:
  Allow both dash and underscore as separator for mysqld option
parent a4a619dc
...@@ -757,7 +757,7 @@ sub command_line_setup () { ...@@ -757,7 +757,7 @@ sub command_line_setup () {
foreach my $arg ( @opt_extra_mysqld_opt ) foreach my $arg ( @opt_extra_mysqld_opt )
{ {
if ( $arg =~ /binlog-format=(\S+)/ ) if ( $arg =~ /binlog[-_]format=(\S+)/ )
{ {
$used_binlog_format= $1; $used_binlog_format= $1;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment