Commit 023b86b9 authored by hf@deer.(none)'s avatar hf@deer.(none)

small addition to the fix for #3188

dropping of tables added to the testcase
parent ea2c1609
...@@ -1706,3 +1706,4 @@ create table t2(id int); ...@@ -1706,3 +1706,4 @@ create table t2(id int);
create table t3(flag int); create table t3(flag int);
select (select * from t3 where id not null) from t1, t2; 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 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;
...@@ -1114,3 +1114,4 @@ create table t2(id int); ...@@ -1114,3 +1114,4 @@ create table t2(id int);
create table t3(flag int); create table t3(flag int);
-- error 1064 -- error 1064
select (select * from t3 where id not null) from t1, t2; select (select * from t3 where id not null) from t1, t2;
drop table t1,t2,t3;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment