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 | 26e7a74fa57911a45bd9cb6592a79d5f64ab24f1 (patch) | |
tree | 498e5e55be2ce0642e357e784b6a93d9e98afff2 /scripts/mysqld_multi.sh | |
parent | 37c9d2724de3b3d52e657581184b6b9fda97c3a5 (diff) | |
download | mariadb-git-26e7a74fa57911a45bd9cb6592a79d5f64ab24f1.tar.gz |
Fixed a problem with reading some innodb options that may contain semicolin.
Diffstat (limited to 'scripts/mysqld_multi.sh')
-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]"; } } |