Fixed a problem with reading some innodb options that may contain semicolin.
This commit is contained in:
parent
47a164c156
commit
cacd611a0c
@ -4,7 +4,7 @@ use Getopt::Long;
|
||||
use POSIX qw(strftime);
|
||||
|
||||
$|=1;
|
||||
$VER="2.4";
|
||||
$VER="2.5";
|
||||
|
||||
$opt_config_file = undef();
|
||||
$opt_example = 0;
|
||||
@ -212,6 +212,7 @@ sub start_mysqlds()
|
||||
}
|
||||
else
|
||||
{
|
||||
$options[$j]=~ s/;/\\;/g;
|
||||
$tmp.= " $options[$j]";
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user