We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 328ad3c commit 05e365aCopy full SHA for 05e365a
1 file changed
datafusion/physical-expr/src/array_expressions.rs
@@ -1718,7 +1718,7 @@ pub fn flatten(args: &[ArrayRef]) -> Result<ArrayRef> {
1718
Ok(Arc::new(flattened_array) as ArrayRef)
1719
}
1720
1721
-/// Macro for dispatching array length computation based on the offset type.
+/// Dispatch array length computation based on the offset type.
1722
fn array_length_dispatch<O: OffsetSizeTrait>(array: &[ArrayRef]) -> Result<ArrayRef> {
1723
let list_array = as_generic_list_array::<O>(&array[0])?;
1724
let dimension = if array.len() == 2 {
0 commit comments