From 25c43dd933d6f72405552ba8c6a955c8acd71aaa Mon Sep 17 00:00:00 2001 From: RIchard Baah Date: Mon, 24 Aug 2026 15:16:15 -0400 Subject: [PATCH] clean up : remove overlay --- datafusion/functions/src/string/mod.rs | 1 - datafusion/functions/src/string/overlay.rs | 22 ---------------------- 2 files changed, 23 deletions(-) delete mode 100644 datafusion/functions/src/string/overlay.rs diff --git a/datafusion/functions/src/string/mod.rs b/datafusion/functions/src/string/mod.rs index b4a026db9f894..429a64ec02a60 100644 --- a/datafusion/functions/src/string/mod.rs +++ b/datafusion/functions/src/string/mod.rs @@ -34,7 +34,6 @@ pub mod levenshtein; pub mod lower; pub mod ltrim; pub mod octet_length; -pub mod overlay; pub mod repeat; pub mod replace; pub mod rtrim; diff --git a/datafusion/functions/src/string/overlay.rs b/datafusion/functions/src/string/overlay.rs deleted file mode 100644 index 4adb9cafcb21f..0000000000000 --- a/datafusion/functions/src/string/overlay.rs +++ /dev/null @@ -1,22 +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. - -#[deprecated( - since = "47.0.0", - note = "overlay has been moved to core. Update imports to use core::overlay." -)] -pub use crate::core::overlay::*;