diff options
author | unknown <serg@serg.mylan> | 2006-03-06 18:34:38 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2006-03-06 18:34:38 +0100 |
commit | 19a1f488a8bfc5b223c86dc64dffc247b31b9ddf (patch) | |
tree | 7ab6741fc54808f10c5e30a851deb2666c0a374d /mysql-test/r/kill.result | |
parent | d86a66d483e4999840958129fa6a2ba9d48ac169 (diff) | |
parent | a127344a6c6954012c5d750e07927501f40d907b (diff) | |
download | mariadb-git-19a1f488a8bfc5b223c86dc64dffc247b31b9ddf.tar.gz |
merged
Diffstat (limited to 'mysql-test/r/kill.result')
-rw-r--r-- | mysql-test/r/kill.result | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/kill.result b/mysql-test/r/kill.result index 239f9d24e9e..eff59b102de 100644 --- a/mysql-test/r/kill.result +++ b/mysql-test/r/kill.result @@ -17,6 +17,8 @@ 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 create table t1 (id int primary key); create table t2 (id int unsigned not null); insert into t2 select id from t1; |