diff options
author | unknown <serg@serg.mylan> | 2006-03-06 18:26:39 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2006-03-06 18:26:39 +0100 |
commit | a127344a6c6954012c5d750e07927501f40d907b (patch) | |
tree | 6220a39843c5b1809aefa1be4e34376fb612c418 /mysql-test | |
parent | f7eefc02008739f0776a439e87b293a723babaaa (diff) | |
download | mariadb-git-a127344a6c6954012c5d750e07927501f40d907b.tar.gz |
kill (subquery) - three years old bugfix that never worked
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/kill.result | 2 | ||||
-rw-r--r-- | mysql-test/t/kill.test | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/kill.result b/mysql-test/r/kill.result index ba9ba2833f6..7e38311a556 100644 --- a/mysql-test/r/kill.result +++ b/mysql-test/r/kill.result @@ -17,3 +17,5 @@ select 4; 4 4 drop table t1; +kill (select count(*) from mysql.user); +ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'select count(*) from mysql.user)' at line 1 diff --git a/mysql-test/t/kill.test b/mysql-test/t/kill.test index aada8dd2ef3..e9136ce49b4 100644 --- a/mysql-test/t/kill.test +++ b/mysql-test/t/kill.test @@ -40,4 +40,7 @@ connection con2; select 4; drop table t1; +--error 1064 +kill (select count(*) from mysql.user); + # End of 4.1 tests |