Skip to content

Commit

Permalink
address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Dec 7, 2024
1 parent 2fa5b13 commit 9c9e499
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 50 deletions.
4 changes: 0 additions & 4 deletions arrow-cast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,3 @@ harness = false
[[bench]]
name = "parse_decimal"
harness = false

[[bench]]
name = "cast_decimal"
harness = false
46 changes: 0 additions & 46 deletions arrow-cast/benches/cast_decimal.rs

This file was deleted.

3 changes: 3 additions & 0 deletions arrow/benches/cast_kernels.rs
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,9 @@ fn add_benchmark(c: &mut Criterion) {
c.bench_function("cast decimal128 to decimal128 512", |b| {
b.iter(|| cast_array(&decimal128_array, DataType::Decimal128(30, 5)))
});
c.bench_function("cast decimal128 to decimal128 512 lower precision", |b| {
b.iter(|| cast_array(&decimal128_array, DataType::Decimal128(6, 5)))
});
c.bench_function("cast decimal128 to decimal256 512", |b| {
b.iter(|| cast_array(&decimal128_array, DataType::Decimal256(50, 5)))
});
Expand Down

0 comments on commit 9c9e499

Please sign in to comment.