You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ag...@apache.org on 2020/05/21 17:49:55 UTC

[arrow] branch master updated (da1c98a -> 3be2dc4)

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

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


    from da1c98a  ARROW-8763: [C++] Add RandomAccessFile::WillNeed
     add 3be2dc4  ARROW-8837: [Rust] Implement Null data type

No new revisions were added by this update.

Summary of changes:
 rust/arrow/src/array/array.rs                      |   1 +
 rust/arrow/src/array/builder.rs                    |   1 +
 rust/arrow/src/array/equal.rs                      | 109 +++++++++++++++++
 rust/arrow/src/array/mod.rs                        |   2 +
 rust/arrow/src/array/null.rs                       | 124 +++++++++++++++++++
 rust/arrow/src/array/union.rs                      |   1 +
 rust/arrow/src/ipc/reader.rs                       |  21 +++-
 rust/arrow/src/ipc/writer.rs                       |  40 +++++-
 rust/arrow/src/json/reader.rs                      |   2 +
 rust/arrow/src/util/integration_util.rs            |  55 ++++++---
 .../src/bin/arrow-json-integration-test.rs         | 136 +++++++++++++++------
 11 files changed, 437 insertions(+), 55 deletions(-)
 create mode 100644 rust/arrow/src/array/null.rs