You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2023/01/04 18:53:45 UTC

[arrow-rs] 02/02: Re-export nullif kernel (#3451)

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

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

commit adf70d1b371d0a6364f9139aa1258858841eb99d
Author: Raphael Taylor-Davies <17...@users.noreply.github.com>
AuthorDate: Wed Jan 4 18:21:04 2023 +0000

    Re-export nullif kernel (#3451)
---
 arrow/src/compute/kernels/mod.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arrow/src/compute/kernels/mod.rs b/arrow/src/compute/kernels/mod.rs
index 19f3c27a0..d9c948c60 100644
--- a/arrow/src/compute/kernels/mod.rs
+++ b/arrow/src/compute/kernels/mod.rs
@@ -23,7 +23,7 @@ pub use arrow_arith::{aggregate, arithmetic, arity, bitwise, boolean, temporal};
 pub use arrow_cast::cast;
 pub use arrow_cast::parse as cast_utils;
 pub use arrow_ord::{partition, sort};
-pub use arrow_select::{concat, filter, interleave, take, window, zip};
+pub use arrow_select::{concat, filter, interleave, nullif, take, window, zip};
 pub use arrow_string::{concat_elements, length, regexp, substring};
 
 /// Comparison kernels for `Array`s.