init push
This commit is contained in:
15
unittest/sql/resolver/sql/test_resolver_precast.test
Normal file
15
unittest/sql/resolver/sql/test_resolver_precast.test
Normal file
@ -0,0 +1,15 @@
|
||||
select * from t3 where c3='2';
|
||||
select * from t3 where c3>'2';
|
||||
select * from t3 where c3<'2';
|
||||
select * from t3 where c3>='2';
|
||||
select * from t3 where c3<='2';
|
||||
select * from t3 where c3!='2';
|
||||
select * from t3 where c3<=>'2';
|
||||
select * from t3 where c3 is null;
|
||||
select * from t3 where c3 is false;
|
||||
select * from t3 where c3 is true;
|
||||
select * from t3 where c3+'2'>'1';
|
||||
select * from t3 where c3-'2'>'1';
|
||||
select * from t3 where c3*'2'>'1';
|
||||
select * from t3 where c3/'2'>'1';
|
||||
select * from t3 where length(concat(c3, '2'))>'1';
|
||||
Reference in New Issue
Block a user