blob: 356e931ba4d5c67a1be3f453d8beba1fc7055077 (
plain)
1
2
3
4
5
6
7
|
# connect with read timeout so SLEEP() should timeout
# Check ssl turned on
SHOW STATUS LIKE 'Ssl_cipher';
Variable_name Value
Ssl_cipher DHE-RSA-AES256-SHA
SELECT SLEEP(600);
ERROR HY000: Lost connection to MySQL server during query
|