Skip to content

Commit ab108a5

Browse files
authored
move MinAggregator and MaxAggregator to functions-aggregate-common (#17492)
1 parent 9398af3 commit ab108a5

File tree

5 files changed

+455
-449
lines changed

5 files changed

+455
-449
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

datafusion/datasource-parquet/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ datafusion-common-runtime = { workspace = true }
4040
datafusion-datasource = { workspace = true, features = ["parquet"] }
4141
datafusion-execution = { workspace = true }
4242
datafusion-expr = { workspace = true }
43-
datafusion-functions-aggregate = { workspace = true }
43+
datafusion-functions-aggregate-common = { workspace = true }
4444
datafusion-physical-expr = { workspace = true }
4545
datafusion-physical-expr-adapter = { workspace = true }
4646
datafusion-physical-expr-common = { workspace = true }

datafusion/datasource-parquet/src/metadata.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ use datafusion_common::{
3232
ColumnStatistics, DataFusionError, Result, ScalarValue, Statistics,
3333
};
3434
use datafusion_execution::cache::cache_manager::{FileMetadata, FileMetadataCache};
35-
use datafusion_functions_aggregate::min_max::{MaxAccumulator, MinAccumulator};
35+
use datafusion_functions_aggregate_common::min_max::{MaxAccumulator, MinAccumulator};
3636
use datafusion_physical_plan::Accumulator;
3737
use log::debug;
3838
use object_store::path::Path;

0 commit comments

Comments
 (0)