summaryrefslogtreecommitdiff
path: root/mysql-test/include/check_ipv6.inc
blob: 14d04b11e83428dfd2e4449f0a6acd38dd2aab29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Check if ipv6 is available. If not, server is crashing (see BUG#48915).
--disable_query_log
--disable_abort_on_error
connect (checkcon123456789,::1,root,,test);
if($mysql_errno)
{
skip wrong IP;
}
connection default;
disconnect checkcon123456789;
--enable_abort_on_error
--enable_query_log
# end check