mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
e0a00c5a2f
Based on pull request by Oleg Obleukhov https://github.com/MariaDB/server/pull/400
11 lines
399 B
Text
11 lines
399 B
Text
--source include/not_embedded.inc
|
|
# A smoke test for TCP keepalive options
|
|
set global tcp_keepalive_time = 1;
|
|
set global tcp_keepalive_interval =1;
|
|
set global tcp_keepalive_probes=1;
|
|
connect(con1,"127.0.0.1",root,,test,$MASTER_MYPORT,);
|
|
disconnect con1;
|
|
connection default;
|
|
set global tcp_keepalive_time= default;
|
|
set global tcp_keepalive_interval= default;
|
|
set global tcp_keepalive_probes=default;
|