[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

@ -316,7 +316,7 @@ where t1.c1 = t2.c1 and
t4.d1 = t5.d1 AND
t1.c1 + t2.c1 = t4.d1 + t5.d2 ;
--echo ### 9. https://work.aone.alibaba-inc.com/issue/22041461 leading hint与join order冲突修复 ###
--echo ### 9.
explain select /*+leading(t1 (t2 t3))*/* from t1,t3 where t1.a = t3.a and t1.b not in (select b from t2); #失效
explain select /*+leading(t2 t3 t1)*/* from t1,t3 where t1.a = t3.a and t1.b not in (select b from t2); #失效
explain select /*+leading(t3 t1 t2)*/* from t1,t3 where t1.a = t3.a and t1.b not in (select b from t2); #生效

View File

@ -399,7 +399,7 @@ explain select * from t1 where (t1.a, t1.b) in (select t2.a, t2.b from t2);
explain select * from t1 where (t1.a, t1.b) in (select t2.a, t2.b from t2) and (t1.a, t1.b) in (select t3.a, t3.b from t3);
explain select * from t1 where (t1.a, t1.b) in (select t2.a, t2.b from t2 where (t2.a, t2.b) in (select t3.a, t3.b from t3));
##bug https://aone.alibaba-inc.com/issue/14360360?from=ak&spm=a2o8d.projectdomain.0.0.549d2a00jnjFhQ
##bug
--disable_warnings
drop table if exists t1, t2, t3;
--enable_warnings
@ -529,7 +529,7 @@ explain select * from (select 1 a except select a from t1 except select b from t
explain select * from (select a from t1 except select a from t2 except select 1 a) as t3, t1 as t4 where t3.a = t4.a;
explain select * from (select t2.a from t1, t2 where t1.a = t2.a except select a from t1 as t3) as t4, t2 as t5 where t4.a = t5.a;
###https://aone.alibaba-inc.com/project/81079/issue/15439492
###
explain select * from (select 1 c1, 1 c2) t2 inner join t1 on t2.c1 = t1.a;
explain select * from (select 1 c1, 1 c2) t2 left join t1 on t2.c1 = t1.a;
explain select * from (select 1 c1, 1 c2) t2 right join t1 on t2.c1 = t1.a;

View File

@ -210,7 +210,7 @@ SELECT c1, c2 FROM (
(SELECT c1, c2 FROM ts2 ORDER BY c2 DESC, c1 LIMIT 1)
) AS res order by 1,2;
# bug: https://work.aone.alibaba-inc.com/issue/21382678
# bug:
--disable_warnings
DROP TABLE IF EXISTS T1, T2, T3;