csun5285 commented on code in PR #51145:
URL: https://github.com/apache/doris/pull/51145#discussion_r2115042154
##########
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/scalar/ArrayJoin.java:
##########
@@ -60,6 +62,15 @@ public ArrayJoin(Expression arg0, Expression arg1,
Expression arg2) {
super("array_join", arg0, arg1, arg2);
}
+ @Override
+ public void checkLegalityBeforeTypeCoercion() {
+ DataType argType = child(0).getDataType();
+ if (((ArrayType) argType).getItemType().isComplexType()) {
Review Comment:
BE doesnât support this
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]