mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
13 lines
189 B
Text
13 lines
189 B
Text
|
|
-- source include/have_openssl.inc
|
|
|
|
# Repeat connect/disconnect
|
|
|
|
let $i=100;
|
|
while ($i)
|
|
{
|
|
connect (test_con1,localhost,root,,,,,SSL);
|
|
disconnect test_con1;
|
|
dec $i;
|
|
}
|
|
echo completed;
|