This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-datafusion.git
The following commit(s) were added to refs/heads/main by this push:
new a23a7393ac Remove unused array_expression.rs and SUPPORTED_ARRAY_TYPES
(#8807)
a23a7393ac is described below
commit a23a7393ac41e55a811b85a8544d152a9d619018
Author: Andrew Lamb <[email protected]>
AuthorDate: Thu Jan 11 15:19:17 2024 -0500
Remove unused array_expression.rs and SUPPORTED_ARRAY_TYPES (#8807)
---
datafusion/expr/src/array_expressions.rs | 37 --------------------------------
datafusion/expr/src/lib.rs | 1 -
2 files changed, 38 deletions(-)
diff --git a/datafusion/expr/src/array_expressions.rs
b/datafusion/expr/src/array_expressions.rs
deleted file mode 100644
index 6469437866..0000000000
--- a/datafusion/expr/src/array_expressions.rs
+++ /dev/null
@@ -1,37 +0,0 @@
-// Licensed to the Apache Software Foundation (ASF) under one
-// or more contributor license agreements. See the NOTICE file
-// distributed with this work for additional information
-// regarding copyright ownership. The ASF licenses this file
-// to you under the Apache License, Version 2.0 (the
-// "License"); you may not use this file except in compliance
-// with the License. You may obtain a copy of the License at
-//
-// http://www.apache.org/licenses/LICENSE-2.0
-//
-// Unless required by applicable law or agreed to in writing,
-// software distributed under the License is distributed on an
-// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-// KIND, either express or implied. See the License for the
-// specific language governing permissions and limitations
-// under the License.
-
-use arrow::datatypes::DataType;
-
-/// Currently supported types by the array function.
-/// The order of these types correspond to the order on which coercion applies
-/// This should thus be from least informative to most informative
-pub static SUPPORTED_ARRAY_TYPES: &[DataType] = &[
- DataType::Boolean,
- DataType::UInt8,
- DataType::UInt16,
- DataType::UInt32,
- DataType::UInt64,
- DataType::Int8,
- DataType::Int16,
- DataType::Int32,
- DataType::Int64,
- DataType::Float32,
- DataType::Float64,
- DataType::Utf8,
- DataType::LargeUtf8,
-];
diff --git a/datafusion/expr/src/lib.rs b/datafusion/expr/src/lib.rs
index 0d431f10c4..21647f3841 100644
--- a/datafusion/expr/src/lib.rs
+++ b/datafusion/expr/src/lib.rs
@@ -40,7 +40,6 @@ mod udf;
mod udwf;
pub mod aggregate_function;
-pub mod array_expressions;
pub mod conditional_expressions;
pub mod expr;
pub mod expr_fn;