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/29 14:36:22 UTC

[arrow] branch master updated (53384de -> 7ec1731)

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 53384de  ARROW-6372: [Rust][Datafusion] Casting from Un-signed to Signed Integers not supported
     add 7ec1731  ARROW-453: [C++] Filesystem implementation for Amazon S3

No new revisions were added by this update.

Summary of changes:
 .travis.yml                                     |    1 +
 appveyor.yml                                    |    3 +
 ci/appveyor-cpp-setup.bat                       |    5 +
 ci/conda_env_cpp.yml                            |    1 +
 ci/cpp-msvc-build-main.bat                      |    1 +
 ci/travis_before_script_cpp.sh                  |    4 +
 ci/travis_install_linux.sh                      |    8 +
 cpp/CMakeLists.txt                              |    4 +
 cpp/cmake_modules/DefineOptions.cmake           |    2 +
 cpp/cmake_modules/ThirdpartyToolchain.cmake     |   87 +-
 cpp/src/arrow/CMakeLists.txt                    |    4 +
 cpp/src/arrow/filesystem/CMakeLists.txt         |   11 +
 cpp/src/arrow/filesystem/filesystem.cc          |   21 +
 cpp/src/arrow/filesystem/filesystem.h           |    3 +
 cpp/src/arrow/filesystem/filesystem_test.cc     |   12 +-
 cpp/src/arrow/filesystem/path_util.cc           |    7 +
 cpp/src/arrow/filesystem/path_util.h            |    9 +
 cpp/src/arrow/filesystem/s3_internal.h          |  150 +++
 cpp/src/arrow/filesystem/s3fs.cc                | 1204 +++++++++++++++++++++++
 cpp/src/arrow/filesystem/{mockfs.h => s3fs.h}   |   86 +-
 cpp/src/arrow/filesystem/s3fs_narrative_test.cc |  229 +++++
 cpp/src/arrow/filesystem/s3fs_test.cc           |  727 ++++++++++++++
 cpp/src/arrow/filesystem/test_util.cc           |  167 +++-
 cpp/src/arrow/filesystem/test_util.h            |   39 +-
 cpp/src/arrow/testing/util.cc                   |    7 +
 cpp/src/arrow/testing/util.h                    |    1 +
 cpp/thirdparty/versions.txt                     |    2 +
 27 files changed, 2701 insertions(+), 94 deletions(-)
 create mode 100644 cpp/src/arrow/filesystem/s3_internal.h
 create mode 100644 cpp/src/arrow/filesystem/s3fs.cc
 copy cpp/src/arrow/filesystem/{mockfs.h => s3fs.h} (51%)
 create mode 100644 cpp/src/arrow/filesystem/s3fs_narrative_test.cc
 create mode 100644 cpp/src/arrow/filesystem/s3fs_test.cc