diff options
author | unknown <jani@rhols221.adsl.netsonic.fi> | 2002-11-12 11:39:52 +0200 |
---|---|---|
committer | unknown <jani@rhols221.adsl.netsonic.fi> | 2002-11-12 11:39:52 +0200 |
commit | 3559b2f158541ed88ad630dcb0b242f5a32f4a3d (patch) | |
tree | 498e5e55be2ce0642e357e784b6a93d9e98afff2 /scripts | |
parent | b18dec6110837099eb79b8ba4dc7216fe454ab0a (diff) | |
download | mariadb-git-3559b2f158541ed88ad630dcb0b242f5a32f4a3d.tar.gz |
Fixed a problem with reading some innodb options that may contain semicolin.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mysqld_multi.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/mysqld_multi.sh b/scripts/mysqld_multi.sh index b868006ee40..3165a01362c 100644 --- a/scripts/mysqld_multi.sh +++ b/scripts/mysqld_multi.sh @@ -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]"; } } |