You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by al...@apache.org on 2022/05/26 18:26:38 UTC

[arrow-rs] branch master updated: rename (#1752)

This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 949ad4396 rename (#1752)
949ad4396 is described below

commit 949ad4396e206c857117922be9aaabe0490ddb63
Author: Remzi Yang <59...@users.noreply.github.com>
AuthorDate: Fri May 27 02:26:33 2022 +0800

    rename (#1752)
    
    Signed-off-by: remzi <13...@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(-)

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 73fef5b3d..c615d3a55 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;