Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion datafusion/common/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ config_namespace! {
/// will be removed after the migration is finished.
///
/// See <https://github.com/apache/datafusion/issues/22710> for details.
pub enable_migration_aggregate: bool, default = false
pub enable_migration_aggregate: bool, default = true

/// Sets the compression codec used when spilling data to disk.
///
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
use crate::metrics::{ExecutionPlanMetricsSet, MetricBuilder, Time};

#[derive(Clone)]
pub(crate) struct GroupByMetrics {
/// Time spent calculating the group IDs from the evaluated grouping columns.
pub(crate) time_calculating_group_ids: Time,
Expand Down
Loading
Loading