You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ne...@apache.org on 2020/11/10 06:03:35 UTC

[arrow] branch master updated (3e72c70 -> e7d56ee)

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

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


    from 3e72c70  ARROW-5394: [C++][Benchmark] IsIn and IndexIn benchmark for integer and string types
     add e7d56ee  ARROW-9361 [Rust] Move array types into their own modules

No new revisions were added by this update.

Summary of changes:
 rust/arrow/src/array/array.rs                      | 3828 +-------------------
 rust/arrow/src/array/array_binary.rs               |  797 ++++
 rust/arrow/src/array/array_dictionary.rs           |  412 +++
 rust/arrow/src/array/array_list.rs                 |  815 +++++
 rust/arrow/src/array/array_primitive.rs            |  989 +++++
 rust/arrow/src/array/array_string.rs               |  445 +++
 rust/arrow/src/array/array_struct.rs               |  535 +++
 rust/arrow/src/array/equal/mod.rs                  |    8 +-
 rust/arrow/src/array/equal_json.rs                 |    5 +-
 rust/arrow/src/array/iterator.rs                   |    4 +-
 rust/arrow/src/array/mod.rs                        |   40 +-
 .../bool.ts => rust/arrow/src/array/raw_pointer.rs |   32 +-
 rust/arrow/src/buffer.rs                           |    6 +
 13 files changed, 4058 insertions(+), 3858 deletions(-)
 create mode 100644 rust/arrow/src/array/array_binary.rs
 create mode 100644 rust/arrow/src/array/array_dictionary.rs
 create mode 100644 rust/arrow/src/array/array_list.rs
 create mode 100644 rust/arrow/src/array/array_primitive.rs
 create mode 100644 rust/arrow/src/array/array_string.rs
 create mode 100644 rust/arrow/src/array/array_struct.rs
 copy js/src/builder/bool.ts => rust/arrow/src/array/raw_pointer.rs (61%)