We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40cc826 commit 0e58ca8Copy full SHA for 0e58ca8
datafusion/physical-expr/src/array_expressions.rs
@@ -1745,7 +1745,7 @@ pub fn flatten(args: &[ArrayRef]) -> Result<ArrayRef> {
1745
Ok(Arc::new(flattened_array) as ArrayRef)
1746
}
1747
1748
-/// Macro for dispatching array length computation based on the offset type.
+/// Dispatch array length computation based on the offset type.
1749
fn array_length_dispatch<O: OffsetSizeTrait>(array: &[ArrayRef]) -> Result<ArrayRef> {
1750
let list_array = as_generic_list_array::<O>(&array[0])?;
1751
let dimension = if array.len() == 2 {
0 commit comments