1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

New patch for bug#49579, now with "have_ipv4_mapped.inc".

This commit is contained in:
Horst.Hunger
2010-01-29 11:48:11 +01:00
parent eab68c5d48
commit f594cc4b3b
30 changed files with 36 additions and 1629 deletions

View File

@ -0,0 +1,14 @@
# Check if ipv4 mapped to ipv6 is available.
--disable_query_log
--disable_abort_on_error
connect (checkcon123456789,::FFFF:127.0.0.1,root,,test);
if($mysql_errno)
{
skip wrong IP;
}
connection default;
disconnect checkcon123456789;
--enable_abort_on_error
--enable_query_log
# end check