Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
parkma99 committed Jun 11, 2023
1 parent 82cb2a7 commit ae649be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/physical-expr/src/array_expressions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ pub fn array_concat(args: &[ColumnarValue]) -> Result<ColumnarValue> {
let data_type = arrays[0].data_type();
match data_type {
DataType::List(field) => match field.data_type() {
DataType::Null => return array_concat(&args[1..]),
DataType::Null => array_concat(&args[1..]),
_ => {
let list_arrays = downcast_vec!(arrays, ListArray)
.collect::<Result<Vec<&ListArray>>>()?;
Expand Down

0 comments on commit ae649be

Please sign in to comment.