Skip to content

Commit

Permalink
Update datafusion/physical-expr/src/array_expressions.rs
Browse files Browse the repository at this point in the history
Co-authored-by: comphead <[email protected]>
  • Loading branch information
edmondop and comphead authored Oct 21, 2023
1 parent 633a5e5 commit 4e451d3
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 @@ -1495,7 +1495,7 @@ pub fn array_union(args: &[ArrayRef]) -> Result<ArrayRef> {
Ok(array1.clone())
}
(DataType::List(_), DataType::List(_)) => concat_internal(args),
_ => return exec_err!("can only concatenate lists")
_ => return exec_err!("array_union can only concatenate lists")
}
}

Expand Down

0 comments on commit 4e451d3

Please sign in to comment.