Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
frankmcsherry committed Nov 10, 2023
1 parent aa56b26 commit 1c66dfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/trace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ use differential_dataflow::trace::{Trace, TraceReader, Batch, Batcher};
use differential_dataflow::trace::cursor::Cursor;
use differential_dataflow::trace::implementations::spine_fueled::Spine;

pub type OrdValSpine<K, V, T, R> = Spine<Rc<OrdValBatch<K, V, T, R>>>;
pub type OrdValSpine<K, V, T, R> = Spine<Rc<OrdValBatch<K, V, T, R, Vec<((K,V),T,R)>>>>;

type IntegerTrace = OrdValSpine<u64, u64, usize, i64>;

fn get_trace() -> Spine<Rc<OrdValBatch<u64, u64, usize, i64>>> {
fn get_trace() -> Spine<Rc<OrdValBatch<u64, u64, usize, i64, Vec<((u64,u64),usize,i64)>>>> {
let op_info = OperatorInfo::new(0, 0, &[]);
let mut trace = IntegerTrace::new(op_info, None, None);
{
Expand Down

0 comments on commit 1c66dfd

Please sign in to comment.