diff options
author | Mikael Ronstrom <mikael@mysql.com> | 2009-11-26 13:58:59 +0100 |
---|---|---|
committer | Mikael Ronstrom <mikael@mysql.com> | 2009-11-26 13:58:59 +0100 |
commit | 8df0c15b36964eac2dfc259ad59fa692fbb63184 (patch) | |
tree | a7cc415963aaae4d1517698d719696a8f49c07b4 | |
parent | 62c39a339b0b5d57595e98dded3c82cc5fc394ac (diff) | |
download | mariadb-git-8df0c15b36964eac2dfc259ad59fa692fbb63184.tar.gz |
Removed extra test case after review comment
-rw-r--r-- | mysql-test/r/kill_alarm.result | 10 | ||||
-rw-r--r-- | mysql-test/t/kill_alarm.test | 13 |
2 files changed, 0 insertions, 23 deletions
diff --git a/mysql-test/r/kill_alarm.result b/mysql-test/r/kill_alarm.result deleted file mode 100644 index 27636f55c97..00000000000 --- a/mysql-test/r/kill_alarm.result +++ /dev/null @@ -1,10 +0,0 @@ -show processlist; -Id User Host db Command Time State Info -2 root localhost test Sleep 0 NULL -3 root localhost test Sleep 0 NULL -4 root localhost test Query 0 NULL show processlist -kill connection 3; -show processlist; -Id User Host db Command Time State Info -2 root localhost test Sleep 4 NULL -4 root localhost test Query 0 NULL show processlist diff --git a/mysql-test/t/kill_alarm.test b/mysql-test/t/kill_alarm.test deleted file mode 100644 index c08eb3dcf83..00000000000 --- a/mysql-test/t/kill_alarm.test +++ /dev/null @@ -1,13 +0,0 @@ --- source include/not_embedded.inc - -connect (con1, localhost, root,,); -connect (con2, localhost, root,,); - -connection con1; -let $ID=`select connection_id()`; - -connection con2; -show processlist; -eval kill connection $ID; ---sleep 4 -show processlist; |