jayzhan211 commented on code in PR #7008:
URL: https://github.com/apache/arrow-datafusion/pull/7008#discussion_r1268028734
##########
datafusion/expr/src/built_in_function.rs:
##########
@@ -464,12 +479,16 @@ impl BuiltinScalarFunction {
},
BuiltinScalarFunction::ArrayConcat => {
let mut expr_type = Null;
+ let mut max_dims = 1;
for input_expr_type in input_expr_types {
match input_expr_type {
List(field) => {
if !field.data_type().equals_datatype(&Null) {
Review Comment:
Is it possible to get a nested list array with a null type? i.e.
List(List(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]