[fix] remove some internal urls and emails
This commit is contained in:
@ -1,25 +1,25 @@
|
||||
|
||||
# 1. opt assert failed: code_generator/ob_expr_generator_impl.cpp:119
|
||||
# http://k3.alibaba-inc.com/issue/6354515?stat=1.5.12&toPage=1&versionId=1043693
|
||||
#
|
||||
select (select c1 from t1) as field from t1 GROUP BY field;
|
||||
# http://k3.alibaba-inc.com/issue/6356302?versionId=1043693
|
||||
#
|
||||
select (select c3 from t1 where 1000 > c3) as 'x' from t3;
|
||||
|
||||
# 2. CG vistor invalid idx
|
||||
# http://k3.alibaba-inc.com/issue/6323123?stat=1.5.6&toPage=1&versionId=1043693
|
||||
#
|
||||
select c1 as a FROM t1 GROUP BY (SELECT 1 FROM t1 HAVING a=1);
|
||||
# http://k3.alibaba-inc.com/issue/6381107?stat=1.5.1&toPage=2&versionId=1043693
|
||||
#
|
||||
--error 5217
|
||||
SELECT (SELECT 1) a, (select A)
|
||||
|
||||
# 3. resolver failed due to searching scope
|
||||
# http://k3.alibaba-inc.com/issue/6337963?stat=1.5.10&toPage=1&versionId=1043693
|
||||
#
|
||||
SELECT c1 as a, c1 as b FROM t1 GROUP BY (SELECT a) ORDER BY (SELECT c2*1);
|
||||
SELECT c1 as a, c2 as b FROM t2 GROUP BY (SELECT a) ORDER BY (SELECT c3);
|
||||
--error 5217
|
||||
select c1 as ca from t1 where (select (select ca)) > 1;
|
||||
|
||||
# http://k3.alibaba-inc.com/issue/6397456?stat=1.5.7&toPage=1&versionId=1043693
|
||||
#
|
||||
# works, expected error 1054
|
||||
--error 5217
|
||||
select c1, c1 DD, DD||'kaka' KK, KK || 'haha' from t1;
|
||||
@ -27,7 +27,7 @@ select c1, c1 DD, DD||'kaka' KK, KK || 'haha' from t1;
|
||||
select c1, c1 DD, concat(DD,'kaka') KK, concat(KK,'haha') from t1;
|
||||
|
||||
# 5. OPT all_expr_produced (ob_logical_operator.cpp:1372) [13112][Y8B7E0A7DE005-6C91B] failed to produce expression
|
||||
# http://k3.alibaba-inc.com/issue/6323137?stat=1.5.5&toPage=1&versionId=1043693
|
||||
#
|
||||
--error 5217
|
||||
SELECT 1 FROM (SELECT c1 FROM t1) b HAVING (SELECT b.c1)=1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user