@@ -32,6 +32,15 @@ sql_error select * from stb1 where c4 != 'null';
sql_error select * from stb1 where c5 >= 'null';
sql_error select * from stb1 where c6 <= 'null';
sql_error select * from stb1 where c7 < 'nuLl';
sql_error select * from stb1 where c1 match '.*';
sql_error select * from stb1 where c2 match '.*';
sql_error select * from stb1 where c3 match '.*';
sql_error select * from stb1 where c4 match '.*';
sql_error select * from stb1 where c5 match '.*';
sql_error select * from stb1 where c6 match '.*';
sql_error select * from stb1 where c7 match '.*';
sql_error select * from stb1 where c9 match '.*';
sql_error select * from stb1 where ts match '.*';
sql_error select * from (select * from stb1 where c7=true) a, (select * from stb1 where c1 > 30) b;
sql_error select a.ts,a.c1,a.c8 from (select * from stb1 where c7=true) a, (select * from stb1 where c1 > 30) b where a.ts=b.ts and a.c1 > 50 or b.c1 < 60;