You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2020/03/05 03:42:07 UTC

[arrow] branch master updated (6fa6c91 -> 34a7522)

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

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


    from 6fa6c91  ARROW-8003: [C++] Use CMAKE_C_COMPILER when building bundled bzip2
     add 34a7522  ARROW-7977: [C++] Rename fs::FileStats to fs::FileInfo

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/dataset/dataset_test.cc           |   2 +-
 cpp/src/arrow/dataset/discovery.cc              |  32 +--
 cpp/src/arrow/dataset/discovery.h               |   4 +-
 cpp/src/arrow/dataset/discovery_test.cc         |   2 +-
 cpp/src/arrow/dataset/file_base.cc              |  20 +-
 cpp/src/arrow/dataset/file_base.h               |  16 +-
 cpp/src/arrow/dataset/file_test.cc              |   2 +-
 cpp/src/arrow/dataset/partition.h               |   5 -
 cpp/src/arrow/dataset/test_util.h               |  18 +-
 cpp/src/arrow/dataset/type_fwd.h                |   3 +-
 cpp/src/arrow/filesystem/filesystem.cc          |  52 ++--
 cpp/src/arrow/filesystem/filesystem.h           |  53 ++--
 cpp/src/arrow/filesystem/filesystem_test.cc     | 168 ++++++------
 cpp/src/arrow/filesystem/hdfs.cc                |  58 ++---
 cpp/src/arrow/filesystem/hdfs.h                 |   7 +-
 cpp/src/arrow/filesystem/hdfs_test.cc           | 130 ++++-----
 cpp/src/arrow/filesystem/localfs.cc             |  97 +++----
 cpp/src/arrow/filesystem/localfs.h              |   7 +-
 cpp/src/arrow/filesystem/localfs_test.cc        |  36 +--
 cpp/src/arrow/filesystem/mockfs.cc              |  96 +++----
 cpp/src/arrow/filesystem/mockfs.h               |  27 +-
 cpp/src/arrow/filesystem/path_forest.cc         |  22 +-
 cpp/src/arrow/filesystem/path_forest.h          |  40 +--
 cpp/src/arrow/filesystem/path_forest_test.cc    |  54 ++--
 cpp/src/arrow/filesystem/s3fs.cc                |  83 +++---
 cpp/src/arrow/filesystem/s3fs.h                 |   7 +-
 cpp/src/arrow/filesystem/s3fs_narrative_test.cc |  59 +++--
 cpp/src/arrow/filesystem/s3fs_test.cc           | 261 +++++++++----------
 cpp/src/arrow/filesystem/test_util.cc           | 333 ++++++++++++------------
 cpp/src/arrow/filesystem/test_util.h            |  75 +++---
 cpp/src/arrow/util/macros.h                     |   5 +
 docs/source/cpp/api/filesystem.rst              |   2 +-
 python/pyarrow/_dataset.pyx                     |  16 +-
 python/pyarrow/_fs.pxd                          |   8 +-
 python/pyarrow/_fs.pyx                          |  50 ++--
 python/pyarrow/dataset.py                       |   6 +-
 python/pyarrow/fs.py                            |   5 +-
 python/pyarrow/includes/libarrow_dataset.pxd    |   7 +-
 python/pyarrow/includes/libarrow_fs.pxd         |  18 +-
 python/pyarrow/tests/test_fs.py                 |  98 +++----
 r/NAMESPACE                                     |   1 +
 r/R/arrowExports.R                              |  48 ++--
 r/R/filesystem.R                                |  51 ++--
 r/man/{FileStats.Rd => FileInfo.Rd}             |   8 +-
 r/man/FileStats.Rd                              |  24 +-
 r/man/FileSystem.Rd                             |   4 +-
 r/man/data-type.Rd                              |   2 +-
 r/src/arrowExports.cpp                          | 164 ++++++------
 r/src/filesystem.cpp                            |  42 ++-
 r/tests/testthat/test-filesystem.R              |  70 ++---
 50 files changed, 1189 insertions(+), 1209 deletions(-)
 copy r/man/{FileStats.Rd => FileInfo.Rd} (86%)