Bug #38100 support-files/mysql-multi.server.sh uses deprecated set-variable construct
Submitted: 14 Jul 2008 14:12 Modified: 25 May 2010 16:35
Reporter: Paul DuBois Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Server: Command-line Clients Severity:S3 (Non-critical)
Version:5.0 and up OS:Any
Assigned to: CPU Architecture:Any

[14 Jul 2008 14:12] Paul DuBois
Description:
This is a minor problem, but it's also easy to fix.

The --set-variable and -O options have been deprecated since 4.0.2, but a couple of instances of them appear in support-files/mysql-multi-server.sh:

# A typical multi-instance /etc/my.cnf file would look like:
# [mysqld]
# basedir=...
# set-variable = key_buffer_size=16M
# set-variable = max_allowed_packet=1M
# [mysql_multi_server]
# svr1-datadir=/foo1/bar
# svr2-datadir=/foo2/bar

How to repeat:
By inspection.

Suggested fix:
Remove "set-variable =" in both lines:

# A typical multi-instance /etc/my.cnf file would look like:
# [mysqld]
# basedir=...
# key_buffer_size=16M
# max_allowed_packet=1M
# [mysql_multi_server]
# svr1-datadir=/foo1/bar
# svr2-datadir=/foo2/bar
[14 Jul 2008 14:43] Valeriy Kravchuk
Thank you for a problem report.
[25 May 2010 16:35] Paul DuBois
Fixed in 5.5.3 by the work for Bug#48048, WL#5154.