You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by np...@apache.org on 2019/09/19 19:19:59 UTC

[arrow] branch master updated (d4e489d -> 545fb34)

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

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


    from d4e489d  ARROW-5935: [C++] ArrayBuilder::type() should be kept accurate
     add 545fb34  ARROW-6438 [R]: Add bindings for filesystem API

No new revisions were added by this update.

Summary of changes:
 r/DESCRIPTION                      |   1 +
 r/NAMESPACE                        |   6 +
 r/R/arrowExports.R                 | 116 +++++++++
 r/R/enums.R                        |   6 +
 r/R/filesystem.R                   | 237 ++++++++++++++++++
 r/man/FileStats.Rd                 |  30 +++
 r/man/FileSystem.Rd                |  58 +++++
 r/man/Selector.Rd                  |  32 +++
 r/man/enums.Rd                     |   3 +
 r/src/array_to_vector.cpp          |   4 +-
 r/src/arrowExports.cpp             | 497 +++++++++++++++++++++++++++++++++++++
 r/src/arrow_types.h                |   8 +
 r/src/filesystem.cpp               | 230 +++++++++++++++++
 r/src/parquet.cpp                  |  13 +-
 r/src/symbols.cpp                  |  10 +
 r/tests/testthat/test-filesystem.R | 123 +++++++++
 16 files changed, 1364 insertions(+), 10 deletions(-)
 create mode 100644 r/R/filesystem.R
 create mode 100644 r/man/FileStats.Rd
 create mode 100644 r/man/FileSystem.Rd
 create mode 100644 r/man/Selector.Rd
 create mode 100644 r/src/filesystem.cpp
 create mode 100644 r/tests/testthat/test-filesystem.R