File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
datafusion/physical-plan/src/aggregates Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ mod null_builder;
8686/// Each distinct group in a hash aggregation is identified by a unique group id
8787/// (usize) which is assigned by instances of this trait. Group ids are
8888/// continuous without gaps, starting from 0.
89- pub ( crate ) trait GroupValues : Send {
89+ pub trait GroupValues : Send {
9090 /// Calculates the group id for each input row of `cols`, assigning new
9191 /// group ids as necessary.
9292 ///
@@ -129,7 +129,7 @@ pub(crate) trait GroupValues: Send {
129129///
130130/// [`GroupColumn`]: crate::aggregates::group_values::multi_group_by::GroupColumn
131131///
132- pub ( crate ) fn new_group_values (
132+ pub fn new_group_values (
133133 schema : SchemaRef ,
134134 group_ordering : & GroupOrdering ,
135135) -> Result < Box < dyn GroupValues > > {
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ use datafusion_physical_expr::{
5252
5353use itertools:: Itertools ;
5454
55- pub ( crate ) mod group_values;
55+ pub mod group_values;
5656mod no_grouping;
5757pub mod order;
5858mod row_hash;
You can’t perform that action at this time.
0 commit comments