From 023b86b984e4f712b19d6feada0a88f24f1859f1 Mon Sep 17 00:00:00 2001 From: "hf@deer.(none)" <> Date: Tue, 23 Mar 2004 18:25:44 +0400 Subject: [PATCH] small addition to the fix for #3188 dropping of tables added to the testcase --- mysql-test/r/subselect.result | 1 + mysql-test/t/subselect.test | 1 + 2 files changed, 2 insertions(+) diff --git a/mysql-test/r/subselect.result b/mysql-test/r/subselect.result index 55068c4a00c..cf0f9b4cc14 100644 --- a/mysql-test/r/subselect.result +++ b/mysql-test/r/subselect.result @@ -1706,3 +1706,4 @@ create table t2(id int); create table t3(flag int); select (select * from t3 where id not null) from t1, t2; 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 'null) from t1, t2' at line 1 +drop table t1,t2,t3; diff --git a/mysql-test/t/subselect.test b/mysql-test/t/subselect.test index 93380f341dc..9e82a77b036 100644 --- a/mysql-test/t/subselect.test +++ b/mysql-test/t/subselect.test @@ -1114,3 +1114,4 @@ create table t2(id int); create table t3(flag int); -- error 1064 select (select * from t3 where id not null) from t1, t2; +drop table t1,t2,t3;