Skip to content

Commit c46f7a9

Browse files
committed
fix cargo doc
1 parent 25058de commit c46f7a9

File tree

1 file changed

+3
-3
lines changed
  • datafusion/physical-plan/src/aggregates/group_values

1 file changed

+3
-3
lines changed

datafusion/physical-plan/src/aggregates/group_values/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
// specific language governing permissions and limitations
1616
// under the License.
1717

18-
//! [`GroupValues`] trait for storing and interning group keys
18+
//! `GroupValues` trait for storing and interning group keys
1919
2020
use arrow::array::types::{
2121
Date32Type, Date64Type, Decimal128Type, Time32MillisecondType, Time32SecondType,
@@ -84,7 +84,7 @@ mod null_builder;
8484
/// Each distinct group in a hash aggregation is identified by a unique group id
8585
/// (usize) which is assigned by instances of this trait. Group ids are
8686
/// continuous without gaps, starting from 0.
87-
pub trait GroupValues: Send {
87+
pub(crate) trait GroupValues: Send {
8888
/// Calculates the group id for each input row of `cols`, assigning new
8989
/// group ids as necessary.
9090
///
@@ -127,7 +127,7 @@ pub trait GroupValues: Send {
127127
///
128128
/// [`GroupColumn`]: crate::aggregates::group_values::multi_group_by::GroupColumn
129129
///
130-
pub fn new_group_values(
130+
pub(crate) fn new_group_values(
131131
schema: SchemaRef,
132132
group_ordering: &GroupOrdering,
133133
) -> Result<Box<dyn GroupValues>> {

0 commit comments

Comments
 (0)