diff options
author | unknown <SergeyV@selena.> | 2005-09-08 12:09:30 +0400 |
---|---|---|
committer | unknown <SergeyV@selena.> | 2005-09-08 12:09:30 +0400 |
commit | 34422f78c17ced6ae43a030a4d772273b7406405 (patch) | |
tree | fb06048fc85d9f8c8e6c1e777b0f70b4e217e8a6 /mysql-test/r/connect.result | |
parent | 1a170dc092f3f65b58ea4f22e3f663a470e2ab0b (diff) | |
download | mariadb-git-34422f78c17ced6ae43a030a4d772273b7406405.tar.gz |
Modified test case for bug #12517
Diffstat (limited to 'mysql-test/r/connect.result')
-rw-r--r-- | mysql-test/r/connect.result | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/mysql-test/r/connect.result b/mysql-test/r/connect.result index 293ad37c31a..68c86b80e60 100644 --- a/mysql-test/r/connect.result +++ b/mysql-test/r/connect.result @@ -1,3 +1,4 @@ +drop table if exists t1,t2; show tables; Tables_in_mysql columns_priv @@ -65,19 +66,8 @@ show tables; Tables_in_test delete from mysql.user where user=_binary"test"; flush privileges; -use test; -drop table if exists t1; -Warnings: -Note 1051 Unknown table 't1' create table t1 (id integer not null auto_increment primary key); -drop table if exists t2; -Warnings: -Note 1051 Unknown table 't2' create temporary table t2(id integer not null auto_increment primary key); set @id := 1; delete from t1 where id like @id; -use test; -drop table if exists t2; -Warnings: -Note 1051 Unknown table 't2' -drop table if exists t1; +drop table t1; |