mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
13 lines
271 B
Text
13 lines
271 B
Text
|
call mtr.add_suppression("Can't start server: Bind on TCP/IP port.");
|
||
|
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
|
||
|
connection default;
|
||
|
DROP TABLE t;
|
||
|
disconnect con1;
|
||
|
disconnect con2;
|