Skip to content

Commit a449297

Browse files
committed
Use arrow re-export instead of direct arrow-string dependency
1 parent 27929a3 commit a449297

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

native/spark-expr/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ edition = { workspace = true }
2828

2929
[dependencies]
3030
arrow = { workspace = true }
31-
arrow-string = "57.0.0"
3231
chrono = { workspace = true }
3332
datafusion = { workspace = true }
3433
chrono-tz = { workspace = true }

native/spark-expr/src/string_funcs/contains.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
2828
use arrow::array::{Array, ArrayRef, AsArray, BooleanArray};
2929
use arrow::datatypes::DataType;
30-
use arrow_string::like::contains as arrow_contains;
30+
use arrow::compute::kernels::comparison::contains as arrow_contains;
3131
use datafusion::common::{exec_err, Result, ScalarValue};
3232
use datafusion::logical_expr::{
3333
ColumnarValue, ScalarFunctionArgs, ScalarUDFImpl, Signature, Volatility,

0 commit comments

Comments
 (0)