diff --git a/datafusion/functions-aggregate-common/src/aggregate/groups_accumulator/nulls.rs b/datafusion/functions-aggregate-common/src/aggregate/groups_accumulator/nulls.rs index b19624edae36..6a8946034cbc 100644 --- a/datafusion/functions-aggregate-common/src/aggregate/groups_accumulator/nulls.rs +++ b/datafusion/functions-aggregate-common/src/aggregate/groups_accumulator/nulls.rs @@ -113,7 +113,7 @@ pub fn apply_filter_as_nulls( /// Replaces the nulls in the input array with the given `NullBuffer` /// -/// Can replace when upstreamed in arrow-rs: +/// TODO: replace when upstreamed in arrow-rs: pub fn set_nulls_dyn(input: &dyn Array, nulls: Option) -> Result { if let Some(nulls) = nulls.as_ref() { assert_eq!(nulls.len(), input.len());