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 2020/08/25 16:43:58 UTC

[arrow] branch master updated (7ed91f7 -> f8b285b)

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 7ed91f7  ARROW-9702: [C++] Register bpacking SIMD to runtime path.
     add f8b285b  ARROW-8001: [R][Dataset] Bindings for dataset writing

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/dataset/type_fwd.h |   2 +
 r/DESCRIPTION                    |   6 +-
 r/NAMESPACE                      |   1 +
 r/NEWS.md                        |   2 +-
 r/R/arrowExports.R               |   4 +
 r/R/dataset-factory.R            | 159 ++++++++++++
 r/R/dataset-format.R             | 122 ++++++++++
 r/R/dataset-partition.R          | 113 +++++++++
 r/R/dataset-scan.R               | 170 +++++++++++++
 r/R/dataset-write.R              |  32 ++-
 r/R/dataset.R                    | 506 +--------------------------------------
 r/man/Dataset.Rd                 |   3 +-
 r/man/FileFormat.Rd              |   2 +-
 r/man/Partitioning.Rd            |   2 +-
 r/man/Scanner.Rd                 |   2 +-
 r/man/dataset_factory.Rd         |   2 +-
 r/man/hive_partition.Rd          |   2 +-
 r/man/map_batches.Rd             |   2 +-
 r/man/write_dataset.Rd           |  11 +-
 r/src/arrowExports.cpp           |  16 ++
 r/src/dataset.cpp                |   6 +
 r/tests/testthat/test-dataset.R  |  87 ++++++-
 r/vignettes/dataset.Rmd          |  88 ++++++-
 23 files changed, 815 insertions(+), 525 deletions(-)
 create mode 100644 r/R/dataset-factory.R
 create mode 100644 r/R/dataset-format.R
 create mode 100644 r/R/dataset-partition.R
 create mode 100644 r/R/dataset-scan.R