diff options
author | Chad MILLER <chad@mysql.com> | 2009-02-04 13:57:33 -0500 |
---|---|---|
committer | Chad MILLER <chad@mysql.com> | 2009-02-04 13:57:33 -0500 |
commit | 9b93c2684c5af408eefd713736007e9cee29c9a4 (patch) | |
tree | 8b913879ceaa4f1ab56fa1aa4a0c203841af4ed6 /scripts | |
parent | f8412b8408b095a208151ceb64a897211dbedb1d (diff) | |
parent | 00c299a886f133ef1cd5e9b1895a8a3bb9131a23 (diff) | |
download | mariadb-git-9b93c2684c5af408eefd713736007e9cee29c9a4.tar.gz |
Merge from bug tree.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mysqld_multi.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/mysqld_multi.sh b/scripts/mysqld_multi.sh index 3cb4665eb1c..631e1e38cc7 100644 --- a/scripts/mysqld_multi.sh +++ b/scripts/mysqld_multi.sh @@ -293,7 +293,12 @@ sub start_mysqlds() @groups = &find_groups($groupids); for ($i = 0; defined($groups[$i]); $i++) { + # Defaults are made explicit parameters to server execution... @options = defaults_for_group($groups[$i]); + # ...so server MUST NOT try to read again from some config file, especially + # as the "right" file may be unknown to the server if we are using + # --defaults-file=... params in here. + unshift(@options,"--no-defaults"); $mysqld_found= 1; # The default $mysqld_found= 0 if (!length($mysqld)); |