Skip to content

Commit 8d4f0f6

Browse files
committed
fix: resolve CI failures for approx_top_k
- Fix testing submodule pointer (reverted to match upstream main) - Fix Cargo.toml formatting (taplo) - Fix unresolved rustdoc link: [`size`] -> `size()`
1 parent 3d1f008 commit 8d4f0f6

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

datafusion/functions-aggregate/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ datafusion-functions-aggregate-common = { workspace = true }
5050
datafusion-macros = { workspace = true }
5151
datafusion-physical-expr = { workspace = true }
5252
datafusion-physical-expr-common = { workspace = true }
53-
hashbrown = { workspace = true }
5453
foldhash = "0.2"
5554
half = { workspace = true }
55+
hashbrown = { workspace = true }
5656
log = { workspace = true }
5757
num-traits = { workspace = true }
5858

datafusion/functions-aggregate/src/approx_top_k.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ struct SpaceSavingSummary {
145145
/// Set to `max(64, requested_capacity * 2)`.
146146
target_capacity: usize,
147147
/// Running total of heap bytes owned by counter item `Vec`s.
148-
/// Updated on push / evict / clone so that [`size`] is O(1).
148+
/// Updated on push / evict / clone so that `size()` is O(1).
149149
item_heap_bytes: usize,
150150
}
151151

testing

Submodule testing updated 129 files

0 commit comments

Comments
 (0)