You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ap...@apache.org on 2020/01/14 08:49:42 UTC

[arrow] branch master updated (91114cf -> 123d9b1)

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

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


    from 91114cf  ARROW-7559: [Rust] Incorrect index check assertion in StringArray and BinaryArray
     add 123d9b1  ARROW-7415: [C++][Dataset] implement IpcFormat

No new revisions were added by this update.

Summary of changes:
 .gitignore                                         |   1 +
 cpp/src/arrow/dataset/CMakeLists.txt               |   2 +
 cpp/src/arrow/dataset/file_ipc.cc                  | 124 ++++++++++++++
 .../arrow/dataset/{file_parquet.h => file_ipc.h}   |  33 ++--
 cpp/src/arrow/dataset/file_ipc_test.cc             | 182 +++++++++++++++++++++
 cpp/src/arrow/dataset/file_parquet.cc              |   6 +-
 cpp/src/arrow/io/interfaces.h                      |   5 +-
 cpp/src/arrow/ipc/reader.h                         |   5 +-
 cpp/src/arrow/ipc/writer.h                         |   5 +-
 cpp/src/arrow/status.h                             |  10 +-
 10 files changed, 329 insertions(+), 44 deletions(-)
 create mode 100644 cpp/src/arrow/dataset/file_ipc.cc
 copy cpp/src/arrow/dataset/{file_parquet.h => file_ipc.h} (62%)
 create mode 100644 cpp/src/arrow/dataset/file_ipc_test.cc