patch 4.0

This commit is contained in:
wangzelin.wzl
2022-10-24 10:34:53 +08:00
parent 4ad6e00ec3
commit 93a1074b0c
10533 changed files with 2588271 additions and 2299373 deletions

View File

@ -26,13 +26,17 @@ select * from t1 order by c2 limit 1, 10;
## case 4 ##
## with no-column predicate
select * from (select * from t1 order by c2 desc) a where 1=1 limit 1, 10;
# TODO shengle, core in pre calc expr, mysqltest not core, may unitest problem
# https://work.aone.alibaba-inc.com/issue/37559700
# select * from (select * from t1 order by c2 desc) a where 1=1 limit 1, 10;
select * from t1 order by c2 limit 1, 10;
## case 5 ##
## with no-column predicate
select * from (select * from t1 order by c2 desc) a where (1=1) and (0=0) limit 1, 10;
# TODO shengle, core in pre calc expr, mysqltest not core, may unitest problem
# https://work.aone.alibaba-inc.com/issue/37559700
# select * from (select * from t1 order by c2 desc) a where (1=1) and (0=0) limit 1, 10;
select * from t1 order by c2 limit 1, 10;
## case 6 ##