mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Create 'main' test directory and move 't' and 'r' there
This commit is contained in:
16
mysql-test/main/aborted_clients.result
Normal file
16
mysql-test/main/aborted_clients.result
Normal file
@ -0,0 +1,16 @@
|
||||
FLUSH STATUS;
|
||||
connect con1,localhost,root,,;
|
||||
disconnect con1;
|
||||
connection default;
|
||||
SELECT VARIABLE_VALUE FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME='aborted_clients';
|
||||
VARIABLE_VALUE
|
||||
0
|
||||
connect con2,localhost,root,,;
|
||||
KILL CONNECTION_ID();
|
||||
ERROR 70100: Connection was killed
|
||||
disconnect con2;
|
||||
connection default;
|
||||
SELECT VARIABLE_VALUE FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME='aborted_clients';
|
||||
VARIABLE_VALUE
|
||||
1
|
||||
FLUSH STATUS;
|
Reference in New Issue
Block a user