From 640eb5602bd3ec8852c72a5953f48d305aef1f58 Mon Sep 17 00:00:00 2001 From: remzi <13716567376yh@gmail.com> Date: Thu, 26 May 2022 20:30:06 +0800 Subject: [PATCH] rename Signed-off-by: remzi <13716567376yh@gmail.com> --- arrow/src/compute/kernels/{string.rs => concat_elements.rs} | 0 arrow/src/compute/kernels/mod.rs | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename arrow/src/compute/kernels/{string.rs => concat_elements.rs} (100%) diff --git a/arrow/src/compute/kernels/string.rs b/arrow/src/compute/kernels/concat_elements.rs similarity index 100% rename from arrow/src/compute/kernels/string.rs rename to arrow/src/compute/kernels/concat_elements.rs diff --git a/arrow/src/compute/kernels/mod.rs b/arrow/src/compute/kernels/mod.rs index 73fef5b3d457..c615d3a55e1a 100644 --- a/arrow/src/compute/kernels/mod.rs +++ b/arrow/src/compute/kernels/mod.rs @@ -25,13 +25,13 @@ pub mod cast; pub mod cast_utils; pub mod comparison; pub mod concat; +pub mod concat_elements; pub mod filter; pub mod length; pub mod limit; pub mod partition; pub mod regexp; pub mod sort; -pub mod string; pub mod substring; pub mod take; pub mod temporal;