[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

@ -424,7 +424,7 @@ select * from t_not_exist
--error 5207
select c1 a, C2 A from t1 order by a
## bug http://k3.alibaba-inc.com/issue/6347332?stat=1.5.2&toPage=1&versionId=1043693
## bug
select * from (t1);
select * from (t1,t2);
select * from (t1,(t2));
@ -436,11 +436,11 @@ select * from ((t1 join t2) join (select * from t3) a);
#select * from (t1,t2) join (t3,t4);
#select * from (t1 join t2) join (t3,t4);
# http://k3.alibaba-inc.com/issue/6328022?versionId=1043693
#
select * from t1 join t2 on t1.c1=t2.c1, t3 join t4 on t3.c3=t4.c3;
select * from t1 join t2 using(c1), t3 join t4 using(c3);
#http://k3.alibaba-inc.com/issue/6492617?stat=1.5.0&toPage=1&versionId=1043693
#
select '';
select ' ';
select '\n';
@ -457,7 +457,7 @@ select 'abc' '\n\t11111111111111111111111111111111111111111111111111111111111111
select 'abc' as '\n\t11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111a22';
select 'abc' as ` 11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111a22`;
# http://k3.alibaba-inc.com/issue/6358759?stat=1.5.7&toPage=2&versionId=1043693
#
SELECT t1.c1 FROM t2 LEFT JOIN t1 ON t2.c2 = t1.c1 ORDER BY c1;
select default(c1) from t2;
select default(c3) from test2;