[fix] remove some internal urls and emails

This commit is contained in:
obdev
2023-03-17 20:55:23 +08:00
committed by ob-robot
parent e386747097
commit 8ce2f275c4
647 changed files with 905 additions and 905 deletions

View File

@ -15,7 +15,7 @@ select * from t2 left join (select * from t1) as v on t2.c1 = v.c2 where (v.c2
#select * from t2 left join (select * from t1) as v on t2.c1 = v.c2 where (v.c2 is null) and (not((1 + 2 > v.c2) and false));
##case should not be eliminated
# TODO shengle pre calc expr extract and calc bug: https://work.aone.alibaba-inc.com/issue/37559700
# TODO shengle pre calc expr extract and calc bug:
# select * from t2 left join (select * from t1) as v on t2.c1 = v.c2 where (v.c2 is null) and (((1 + 2 > v.c2) and false) + 2 > -2);
##case arithmatic operator

View File

@ -141,6 +141,6 @@ select abs(-55), max(c2), 3 + 2, 5 from t9;
select 5, max(c2), c1 from t9;
select c1, min(c2), 233333 from t9;
#bug https://aone.alibaba-inc.com/issue/12669811
#bug
select * from (select c1 as col from t1) as L where col = (select max(c1) from t1 where L.col > 5);
select * from (select a.acctnbr as l1, a.timeuniqueextn as l2 from cb_loan_acctacctstathist_11 a left join cb_loan_acctloaninfotemp_11 b on a.acctnbr = b.acctnbr where a.acctstatcd not in ('CLS', 'DENI') and b.acctnbr is null) as l where l.l2 = (select max(a2.timeuniqueextn) from cb_loan_acctacctstathist_11 a2 where a2.acctnbr = l.l1 and a2.postdate <= '2018-11-10');

View File

@ -27,7 +27,7 @@ select * from t1 order by c2 limit 1, 10;
## with no-column predicate
# 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;
@ -35,7 +35,7 @@ select * from t1 order by c2 limit 1, 10;
## with no-column predicate
# 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;