JiajunBernoulli commented on code in PR #3579:
URL: https://github.com/apache/calcite/pull/3579#discussion_r1424764366
##########
core/src/main/java/org/apache/calcite/sql/fun/SqlLibraryOperators.java:
##########
@@ -1061,23 +1061,29 @@ static RelDataType deriveTypeSplit(SqlOperatorBinding
operatorBinding,
private static RelDataType arrayReturnType(SqlOperatorBinding opBinding) {
final List<RelDataType> operandTypes = opBinding.collectOperandTypes();
- // only numeric & character types check
+ // only numeric & character types check, this is a special spark array case
+ // the form like ARRAY(1, 2, '3') will return ["1", "2", "3"]
boolean hasNumeric = false;
boolean hasCharacter = false;
boolean hasOthers = false;
for (RelDataType type : operandTypes) {
SqlTypeFamily family = type.getSqlTypeName().getFamily();
- requireNonNull(family, "array element type family");
+ // some types such as Row, the family is null, fallback to normal
inferred type logic
+ if (family == null) {
+ hasOthers = true;
+ break;
+ }
+ // skip it because we allow NULL literal
+ if (SqlTypeUtil.isNull(type)) {
+ continue;
Review Comment:
Why use `continue`?
Old code in 1078~1080 line handle NULL.
--
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]