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 2021/05/13 15:49:58 UTC

[arrow] branch master updated (b34c8f6 -> 9347731)

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 b34c8f6  MINOR: [Docs] Add link to File.fbs in columnar format docs
     add 9347731  ARROW-12731: [R] Use InMemoryDataset for Table/RecordBatch in dplyr code

No new revisions were added by this update.

Summary of changes:
 r/DESCRIPTION                                    |   11 +-
 r/NAMESPACE                                      |    5 +-
 r/R/arrow-datum.R                                |   71 +-
 r/R/arrow-package.R                              |   16 +-
 r/R/arrow-tabular.R                              |    6 +-
 r/R/arrowExports.R                               |    4 +
 r/R/dataset-scan.R                               |   14 +-
 r/R/dataset-write.R                              |    8 -
 r/R/dplyr-arrange.R                              |   93 ++
 r/R/dplyr-collect.R                              |   62 ++
 r/R/dplyr-eval.R                                 |   99 +++
 r/R/dplyr-filter.R                               |   84 ++
 r/R/dplyr-functions.R                            |  352 ++++++++
 r/R/dplyr-group-by.R                             |   65 ++
 r/R/dplyr-mutate.R                               |  117 +++
 r/R/dplyr-select.R                               |  120 +++
 r/{extra-tests/helpers.R => R/dplyr-summarize.R} |   30 +-
 r/R/dplyr.R                                      | 1005 +---------------------
 r/R/expression.R                                 |  194 +----
 r/man/contains_regex.Rd                          |    2 +-
 r/man/get_stringr_pattern_options.Rd             |    2 +-
 r/src/arrowExports.cpp                           |   17 +
 r/src/expression.cpp                             |    8 +
 r/tests/testthat/helper-arrow.R                  |    2 +-
 r/tests/testthat/test-RecordBatch.R              |    7 +-
 r/tests/testthat/test-Table.R                    |    7 +-
 r/tests/testthat/test-compute-arith.R            |    3 +-
 r/tests/testthat/test-compute-sort.R             |   17 +-
 r/tests/testthat/test-dataset.R                  |  339 +-------
 r/tests/testthat/test-dplyr-arrange.R            |    2 +
 r/tests/testthat/test-dplyr-filter.R             |   57 +-
 r/tests/testthat/test-dplyr-group-by.R           |    2 +
 r/tests/testthat/test-dplyr-mutate.R             |   39 +-
 r/tests/testthat/test-dplyr-string-functions.R   |  114 +--
 r/tests/testthat/test-dplyr.R                    |   28 +-
 r/tests/testthat/test-expression.R               |   56 +-
 r/tests/testthat/test-filesystem.R               |    4 +
 37 files changed, 1339 insertions(+), 1723 deletions(-)
 create mode 100644 r/R/dplyr-arrange.R
 create mode 100644 r/R/dplyr-collect.R
 create mode 100644 r/R/dplyr-eval.R
 create mode 100644 r/R/dplyr-filter.R
 create mode 100644 r/R/dplyr-functions.R
 create mode 100644 r/R/dplyr-group-by.R
 create mode 100644 r/R/dplyr-mutate.R
 create mode 100644 r/R/dplyr-select.R
 copy r/{extra-tests/helpers.R => R/dplyr-summarize.R} (53%)