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).
| Thread |
|---|
| • bzr push into mysql-5.5 branch (annamalai.gurusami:3815 to 3816) | Annamalai Gurusami | 8 May |