summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMagne Mahre <magne.mahre@sun.com>2010-01-21 09:10:05 +0100
committerMagne Mahre <magne.mahre@sun.com>2010-01-21 09:10:05 +0100
commit0482b6ebca43fa168550005ecb7f94e3c0729923 (patch)
tree6398d800fa09267e40efa2878d9e026966142170 /scripts
parentcdcf2ae9f93538f129c69952f565c4243b78059a (diff)
downloadmariadb-git-0482b6ebca43fa168550005ecb7f94e3c0729923.tar.gz
WL#5154 Remove deprecated 4.1 features
Several items said to be deprecated in the 4.1 manual have never been removed. This worklog adds deprecation warnings when these items are used, and warns the user that the items will be removed in MySQL 5.6. A couple of previously deprecation decision have been reversed (see single file comments)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mysqld_multi.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/mysqld_multi.sh b/scripts/mysqld_multi.sh
index 430c74874eb..528a1ca2e98 100644
--- a/scripts/mysqld_multi.sh
+++ b/scripts/mysqld_multi.sh
@@ -68,7 +68,10 @@ sub main
# than a correct --defaults-extra-file option
unshift @defaults_options, "--defaults-extra-file=$1";
+ print "WARNING: --config-file is deprecated and will be removed\n";
+ print "in MySQL 5.6. Please use --defaults-extra-file instead\n";
}
+ }
}
foreach (@defaults_options)