summaryrefslogtreecommitdiff
path: root/mysql-test/main/kill_processlist-6619.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/kill_processlist-6619.result')
-rw-r--r--mysql-test/main/kill_processlist-6619.result18
1 files changed, 18 insertions, 0 deletions
diff --git a/mysql-test/main/kill_processlist-6619.result b/mysql-test/main/kill_processlist-6619.result
new file mode 100644
index 00000000000..7dd42790cc7
--- /dev/null
+++ b/mysql-test/main/kill_processlist-6619.result
@@ -0,0 +1,18 @@
+connect con1,localhost,root,,;
+SHOW PROCESSLIST;
+Id User Host db Command Time State Info Progress
+# root # test Sleep # # NULL 0.000
+# root # test Query # # SHOW PROCESSLIST 0.000
+SET DEBUG_SYNC='before_execute_sql_command SIGNAL ready WAIT_FOR go';
+SHOW PROCESSLIST;
+connection default;
+SET DEBUG_SYNC='now WAIT_FOR ready';
+KILL QUERY con_id;
+SET DEBUG_SYNC='now SIGNAL go';
+connection con1;
+ERROR 70100: Query execution was interrupted
+SET DEBUG_SYNC='reset';
+SHOW PROCESSLIST;
+Id User Host db Command Time State Info Progress
+# root # test Sleep # # NULL 0.000
+# root # test Query # # SHOW PROCESSLIST 0.000