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 2019/08/27 09:20:12 UTC

[arrow] branch master updated (3690fba -> 17a0709)

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 3690fba  ARROW-6363: [R] segfault in Table__from_dots with unexpected schema
     add 17a0709  ARROW-6229: [C++][Dataset] implement FileSystemBasedDataSource

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/dataset/dataset.cc            |   2 +-
 cpp/src/arrow/dataset/dataset.h             |   2 +-
 cpp/src/arrow/dataset/file_base.cc          |  67 +++++++++++++
 cpp/src/arrow/dataset/file_base.h           |  39 ++++++++
 cpp/src/arrow/dataset/file_parquet.cc       |   9 ++
 cpp/src/arrow/dataset/file_parquet.h        |   5 +-
 cpp/src/arrow/dataset/file_parquet_test.cc  |  14 +++
 cpp/src/arrow/dataset/file_test.cc          |  24 ++++-
 cpp/src/arrow/dataset/scanner.cc            |   4 +-
 cpp/src/arrow/dataset/test_util.h           | 148 ++++++++++++++++++++++++++++
 cpp/src/arrow/filesystem/filesystem.cc      |   4 +
 cpp/src/arrow/filesystem/filesystem.h       |   3 +
 cpp/src/arrow/filesystem/filesystem_test.cc |  11 +++
 cpp/src/arrow/filesystem/path_util.cc       |  14 +++
 cpp/src/arrow/filesystem/path_util.h        |   4 +
 cpp/src/arrow/type_fwd.h                    |   7 +-
 cpp/src/arrow/type_traits.h                 |   5 +-
 cpp/src/arrow/util/functional.h             |  71 +++++++++++++
 cpp/src/arrow/util/iterator.h               |  37 ++++++-
 19 files changed, 456 insertions(+), 14 deletions(-)
 create mode 100644 cpp/src/arrow/util/functional.h