diff --git a/core/benches/cast_from_string.rs b/core/benches/cast_from_string.rs index 5bfaebf34..9a9ab18cc 100644 --- a/core/benches/cast_from_string.rs +++ b/core/benches/cast_from_string.rs @@ -17,7 +17,7 @@ use arrow_array::{builder::StringBuilder, RecordBatch}; use arrow_schema::{DataType, Field, Schema}; -use comet::execution::datafusion::expressions::cast::{Cast, EvalMode}; +use comet::execution::datafusion::expressions::{cast::Cast, EvalMode}; use criterion::{criterion_group, criterion_main, Criterion}; use datafusion_physical_expr::{expressions::Column, PhysicalExpr}; use std::sync::Arc; diff --git a/core/benches/cast_numeric.rs b/core/benches/cast_numeric.rs index 398be6946..35f24ce53 100644 --- a/core/benches/cast_numeric.rs +++ b/core/benches/cast_numeric.rs @@ -17,7 +17,7 @@ use arrow_array::{builder::Int32Builder, RecordBatch}; use arrow_schema::{DataType, Field, Schema}; -use comet::execution::datafusion::expressions::cast::{Cast, EvalMode}; +use comet::execution::datafusion::expressions::{cast::Cast, EvalMode}; use criterion::{criterion_group, criterion_main, Criterion}; use datafusion_physical_expr::{expressions::Column, PhysicalExpr}; use std::sync::Arc;