We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4ce12f commit fb9edf0Copy full SHA for fb9edf0
1 file changed
native/spark-expr/benches/cast_boolean.rs
@@ -36,7 +36,7 @@ fn criterion_benchmark(c: &mut Criterion) {
36
let cast_to_f64 = Cast::new(expr.clone(), DataType::Float64, spark_cast_options.clone());
37
let cast_to_str = Cast::new(expr, DataType::Utf8, spark_cast_options);
38
39
- let mut group = c.benchmark_group(format!("cast_bool_to_int"));
+ let mut group = c.benchmark_group("cast_bool_to_int".to_string());
40
group.bench_function("i8", |b| {
41
b.iter(|| cast_to_i8.evaluate(&boolean_batch).unwrap());
42
});
0 commit comments