Skip to content

Commit

Permalink
fix(rust, python): fix pipeline dtypes (#5224)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Oct 16, 2022
1 parent bac952e commit 3f1faeb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 30 deletions.
26 changes: 0 additions & 26 deletions examples/read_csv/benches/streaming.rs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ where
DataType::UInt8 => AggregateFunction::SumI64(SumAgg::<i64>::new()),
DataType::UInt16 => AggregateFunction::SumI64(SumAgg::<i64>::new()),
// these stay true to there types
DataType::UInt32 => AggregateFunction::SumI32(SumAgg::<i32>::new()),
DataType::UInt64 => AggregateFunction::SumI64(SumAgg::<i64>::new()),
DataType::Int32 => AggregateFunction::SumU32(SumAgg::<u32>::new()),
DataType::Int64 => AggregateFunction::SumU64(SumAgg::<u64>::new()),
DataType::UInt32 => AggregateFunction::SumU32(SumAgg::<u32>::new()),
DataType::UInt64 => AggregateFunction::SumU64(SumAgg::<u64>::new()),
DataType::Int32 => AggregateFunction::SumI32(SumAgg::<i32>::new()),
DataType::Int64 => AggregateFunction::SumI64(SumAgg::<i64>::new()),
DataType::Float32 => AggregateFunction::SumF32(SumAgg::<f32>::new()),
DataType::Float64 => AggregateFunction::SumF64(SumAgg::<f64>::new()),
_ => unreachable!(),
Expand Down

0 comments on commit 3f1faeb

Please sign in to comment.