Rachelint commented on code in PR #12996: URL: https://github.com/apache/datafusion/pull/12996#discussion_r1823151542
########## datafusion/physical-plan/src/aggregates/group_values/group_column.rs: ########## @@ -128,6 +144,84 @@ impl<T: ArrowPrimitiveType, const NULLABLE: bool> GroupColumn } } + fn vectorized_equal_to( + &self, + group_indices: &[usize], + array: &ArrayRef, + rows: &[usize], + equal_to_results: &mut [bool], + ) { + let array = array.as_primitive::<T>(); Review Comment: I plan to try it together with https://github.com/apache/datafusion/pull/12996#discussion_r1818601807 on follow up prs. Seems code changes in this one are already a bit large... ########## datafusion/physical-plan/src/aggregates/group_values/group_column.rs: ########## @@ -128,6 +144,84 @@ impl<T: ArrowPrimitiveType, const NULLABLE: bool> GroupColumn } } + fn vectorized_equal_to( + &self, + group_indices: &[usize], + array: &ArrayRef, + rows: &[usize], + equal_to_results: &mut [bool], + ) { + let array = array.as_primitive::<T>(); Review Comment: I plan to try it together with https://github.com/apache/datafusion/pull/12996#discussion_r1818601807 on follow up prs. Seems code changes in this one are already a bit large. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org