1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

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
This commit is contained in:
unknown
2007-02-19 12:59:19 +01:00
parent a4a619dcb1
commit dbfa53d22d

View File

@ -757,7 +757,7 @@ sub command_line_setup () {
foreach my $arg ( @opt_extra_mysqld_opt )
{
if ( $arg =~ /binlog-format=(\S+)/ )
if ( $arg =~ /binlog[-_]format=(\S+)/ )
{
$used_binlog_format= $1;
}