Skip to content

Commit

Permalink
Remove deprecated limit kernel (#4597)
Browse files Browse the repository at this point in the history
  • Loading branch information
tustvold authored Jul 31, 2023
1 parent 16744e5 commit 9568343
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 212 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@

//! Computation kernels on Arrow Arrays

pub mod limit;

pub use arrow_arith::{
aggregate, arithmetic, arity, bitwise, boolean, numeric, temporal,
};
Expand Down
208 changes: 0 additions & 208 deletions arrow/src/compute/kernels/limit.rs

This file was deleted.

1 change: 0 additions & 1 deletion arrow/src/compute/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ pub use self::kernels::comparison::*;
pub use self::kernels::concat::*;
pub use self::kernels::filter::*;
pub use self::kernels::interleave::*;
pub use self::kernels::limit::*;
pub use self::kernels::nullif::*;
pub use self::kernels::partition::*;
pub use self::kernels::regexp::*;
Expand Down
2 changes: 1 addition & 1 deletion arrow/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
//! * All boolean binary operators such as [`equality`](compute::kernels::comparison::eq)
//! * [`cast`](compute::kernels::cast::cast)
//! * [`filter`](compute::kernels::filter::filter)
//! * [`take`](compute::kernels::take::take) and [`limit`](compute::kernels::limit::limit)
//! * [`take`](compute::kernels::take::take)
//! * [`sort`](compute::kernels::sort::sort)
//! * some string operators such as [`substring`](compute::kernels::substring::substring) and [`length`](compute::kernels::length::length)
//!
Expand Down

0 comments on commit 9568343

Please sign in to comment.