summaryrefslogtreecommitdiff
path: root/mysql-test/main/bind_address_resolution.result
blob: 9dc6c7a1f77c9f86c54111971395dd03f42164c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CREATE TABLE t (a TEXT);
connect con1,localhost,root,,test;
SELECT * FROM t;
a
connect con2,127.0.0.1,root,,test;
SELECT * FROM t;
a
connect con3,::1,root,,test;
SELECT * FROM t;
a
connection default;
DROP TABLE t;
disconnect con1;
disconnect con2;
disconnect con3;