You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2020/06/29 04:17:26 UTC

[arrow] branch master updated (cca2db1 -> 4f8504f)

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

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


    from cca2db1  ARROW-8980: [Python] Ensure that ARROW:schema metadata key is scrubbed when converting Parquet schema back to Arrow schema
     add 4f8504f  ARROW-8950: [C++] Avoid HEAD when possible in S3 filesystem

No new revisions were added by this update.

Summary of changes:
 cpp/cmake_modules/BuildUtils.cmake        |  14 +++-
 cpp/src/arrow/dataset/discovery.cc        |  73 ++++++++++-------
 cpp/src/arrow/dataset/discovery.h         |   8 +-
 cpp/src/arrow/dataset/discovery_test.cc   |   5 +-
 cpp/src/arrow/dataset/file_base.cc        |   2 +-
 cpp/src/arrow/dataset/file_base.h         |  12 ++-
 cpp/src/arrow/dataset/file_parquet.cc     |   2 +
 cpp/src/arrow/dataset/partition.cc        |  11 +++
 cpp/src/arrow/dataset/partition.h         |   4 +
 cpp/src/arrow/dataset/test_util.h         |   2 +-
 cpp/src/arrow/filesystem/CMakeLists.txt   |   8 +-
 cpp/src/arrow/filesystem/filesystem.cc    |  54 +++++++++++++
 cpp/src/arrow/filesystem/filesystem.h     |  24 +++++-
 cpp/src/arrow/filesystem/mockfs.cc        |  13 +--
 cpp/src/arrow/filesystem/s3fs.cc          | 127 +++++++++++++++++++-----------
 cpp/src/arrow/filesystem/s3fs.h           |  11 +++
 cpp/src/arrow/filesystem/test_util.cc     |  66 ++++++++++++++++
 cpp/src/arrow/filesystem/test_util.h      |  18 ++---
 cpp/src/arrow/filesystem/util_internal.cc |  12 +++
 cpp/src/arrow/filesystem/util_internal.h  |   9 +++
 20 files changed, 361 insertions(+), 114 deletions(-)