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 | 243b2639cc7a486016be6ff72a5fec4a722b6807 (patch) | |
tree | 8b913879ceaa4f1ab56fa1aa4a0c203841af4ed6 /scripts | |
parent | 6f19c0fc46de7840431e38e7a5e6610124d05179 (diff) | |
parent | 79dccabc22456659dc0fa11ebb02bebb4129b9c2 (diff) | |
download | mariadb-git-243b2639cc7a486016be6ff72a5fec4a722b6807.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)); |