mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 18:41:56 +01:00
Use switch --old-log-format to mysqld started by im only in 5.1 and up
This commit is contained in:
parent
d7b6fdcd6c
commit
4e75b44749
1 changed files with 4 additions and 1 deletions
|
@ -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";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue