From: Annamalai Gurusami Date: May 4 2012 7:04am Subject: bzr push into mysql-5.5 branch (annamalai.gurusami:3815 to 3816) List-Archive: http://lists.mysql.com/commits/143742 Message-Id: <201205040704.q4474QpV021364@acsmt357.oracle.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 3816 Annamalai Gurusami 2012-05-04 In perl, to break out of a foreach loop we need to use the keyword "last" and not "break". Fixing the failing test case. modified: mysql-test/suite/innodb/t/innodb_bug12902967.test 3815 Alexander Nozdrin 2012-04-27 Third attempt to do a follow-up for Bug#12762885 - 61713: MYSQL WILL NOT BIND TO "LOCALHOST" IF LOCALHOST IS BOTH IPV4/IPV6 ENABLED. Previous commit comments were wrong. The default value has always been NULL. The original patch for Bug#12762885 just makes it visible in the logs. This patch uses "0.0.0.0" string if bind-address is not set. modified: sql/mysqld.cc === modified file 'mysql-test/suite/innodb/t/innodb_bug12902967.test' --- a/mysql-test/suite/innodb/t/innodb_bug12902967.test revid:alexander.nozdrin@stripped +++ b/mysql-test/suite/innodb/t/innodb_bug12902967.test revid:annamalai.gurusami@stripped @@ -33,7 +33,7 @@ foreach $line (reverse @lines) { ++$count; print "$line"; if ($count == 2) { - break; + last; } } } No bundle (reason: useless for push emails).