Skip to content
Closed
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
5 changes: 0 additions & 5 deletions differential-dataflow/src/operators/int_proxy/history.rs

This file was deleted.

3 changes: 2 additions & 1 deletion differential-dataflow/src/operators/int_proxy/join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
use crate::operators::join::{Fresh, JoinTactic};
use crate::operators::ValueHistory;

use super::history::IdHistory;
/// A value history suitable for integer proxy values.
type IdHistory<T, R> = ValueHistory<u64, T, R>;

/// A type that can interpret and retire pairs of lists of batches, joined by key hashes.
///
Expand Down Expand Up @@ -238,7 +239,7 @@
/// If either history is small, this performs a direct cross product.
/// If both histories are large, this replays the histories compacting as it goes in
/// order to (potentially) avoid quadratic blow-up.
fn join_key<T, R0, R1, RO>(

Check warning on line 242 in differential-dataflow/src/operators/int_proxy/join.rs

View workflow job for this annotation

GitHub Actions / Cargo clippy

this function has too many arguments (8/7)
kh: u64,
p0: &ProxyBridge<T, R0>,
r0: std::ops::Range<usize>,
Expand Down
1 change: 0 additions & 1 deletion differential-dataflow/src/operators/int_proxy/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
//! Both are welcome to efficiently notice that there have been no collisions and optimize,
//! or to ignore the risk entirely and live dangerously.

mod history;

pub mod join;
pub mod reduce;
Expand Down
Loading
Loading