1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Use switch --old-log-format to mysqld started by im only in 5.1 and up

This commit is contained in:
msvensson@neptunus.(none)
2006-10-04 23:07:49 +02:00
parent c243c7d866
commit 587754cab6

View File

@@ -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";
} }