mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Use switch --old-log-format to mysqld started by im only in 5.1 and up
This commit is contained in:
@ -2539,7 +2539,10 @@ EOF
|
|||||||
;
|
;
|
||||||
|
|
||||||
print OUT "nonguarded\n" if $instance->{'nonguarded'};
|
print OUT "nonguarded\n" if $instance->{'nonguarded'};
|
||||||
print OUT "log-output=FILE\n" if $instance->{'old_log_format'};
|
if ( $mysql_version_id >= 50100 )
|
||||||
|
{
|
||||||
|
print OUT "log-output=FILE\n" if $instance->{'old_log_format'};
|
||||||
|
}
|
||||||
print OUT "\n";
|
print OUT "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user