You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by jo...@apache.org on 2020/12/11 04:41:11 UTC

[arrow] branch master updated (a774ae7 -> 2816f37)

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

jorgecarleitao pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.


    from a774ae7  ARROW-10839: [Rust] [Data Fusion] Implement BETWEEN operator
     add 2816f37  ARROW-10812: [Rust] Make BooleanArray not a PrimitiveArray

No new revisions were added by this update.

Summary of changes:
 rust/arrow/benches/csv_writer.rs             |   2 +-
 rust/arrow/benches/take_kernels.rs           |  22 +-
 rust/arrow/src/array/array_boolean.rs        | 307 ++++++++++++++++++++++
 rust/arrow/src/array/array_primitive.rs      | 138 +---------
 rust/arrow/src/array/array_union.rs          | 114 ++------
 rust/arrow/src/array/builder.rs              | 371 +++++++++++++++++++++------
 rust/arrow/src/array/equal/mod.rs            |  12 +-
 rust/arrow/src/array/equal_json.rs           |  28 +-
 rust/arrow/src/array/iterator.rs             |  77 +++++-
 rust/arrow/src/array/mod.rs                  |   7 +-
 rust/arrow/src/array/ord.rs                  |   8 +-
 rust/arrow/src/compute/kernels/boolean.rs    |   7 +-
 rust/arrow/src/compute/kernels/cast.rs       |   2 +-
 rust/arrow/src/compute/kernels/comparison.rs |  22 +-
 rust/arrow/src/compute/kernels/concat.rs     |   8 +-
 rust/arrow/src/compute/kernels/filter.rs     |  44 +++-
 rust/arrow/src/compute/kernels/sort.rs       |  86 ++++++-
 rust/arrow/src/compute/kernels/take.rs       |  14 +-
 rust/arrow/src/csv/reader.rs                 |  92 ++++---
 rust/arrow/src/csv/writer.rs                 |   8 +-
 rust/arrow/src/datatypes.rs                  |  32 +--
 rust/arrow/src/util/string_writer.rs         |   2 +-
 rust/parquet/src/arrow/array_reader.rs       |  17 +-
 rust/parquet/src/arrow/record_reader.rs      |   2 +-
 24 files changed, 988 insertions(+), 434 deletions(-)
 create mode 100644 rust/arrow/src/array/array_boolean.rs