Skip to content

Commit fb9edf0

Browse files
committed
refactor_boolean_cast_ops_add_benchmarks
1 parent c4ce12f commit fb9edf0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

native/spark-expr/benches/cast_boolean.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ fn criterion_benchmark(c: &mut Criterion) {
3636
let cast_to_f64 = Cast::new(expr.clone(), DataType::Float64, spark_cast_options.clone());
3737
let cast_to_str = Cast::new(expr, DataType::Utf8, spark_cast_options);
3838

39-
let mut group = c.benchmark_group(format!("cast_bool_to_int"));
39+
let mut group = c.benchmark_group("cast_bool_to_int".to_string());
4040
group.bench_function("i8", |b| {
4141
b.iter(|| cast_to_i8.evaluate(&boolean_batch).unwrap());
4242
});

0 commit comments

Comments
 (0)