Skip to content

Commit a1709b6

Browse files
authored
update physical-plan to use datafusion-functions-aggregate-common for Min/MaxAccumulator (#17502)
1 parent bb7fbe5 commit a1709b6

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Cargo.lock

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

datafusion/physical-plan/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ datafusion-common = { workspace = true, default-features = true }
5353
datafusion-common-runtime = { workspace = true, default-features = true }
5454
datafusion-execution = { workspace = true }
5555
datafusion-expr = { workspace = true }
56-
datafusion-functions-aggregate = { workspace = true }
56+
datafusion-functions-aggregate-common = { workspace = true }
5757
datafusion-functions-window-common = { workspace = true }
5858
datafusion-physical-expr = { workspace = true, default-features = true }
5959
datafusion-physical-expr-common = { workspace = true }

datafusion/physical-plan/src/joins/hash_join/exec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ use datafusion_common::{
6868
use datafusion_execution::memory_pool::{MemoryConsumer, MemoryReservation};
6969
use datafusion_execution::TaskContext;
7070
use datafusion_expr::Accumulator;
71-
use datafusion_functions_aggregate::min_max::{MaxAccumulator, MinAccumulator};
71+
use datafusion_functions_aggregate_common::min_max::{MaxAccumulator, MinAccumulator};
7272
use datafusion_physical_expr::equivalence::{
7373
join_equivalence_properties, ProjectionMapping,
7474
};

0 commit comments

Comments
 (0)