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/01/29 19:28:01 UTC

[arrow] branch master updated (e10d606 -> 7cb4496)

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 e10d606  ARROW-11362:[Rust][DataFusion] Use iterator APIs in to_array_of_size to improve performance
     add 7cb4496  ARROW-10089: [R] inject base class for Array, ChunkedArray and Scalar

No new revisions were added by this update.

Summary of changes:
 r/DESCRIPTION                          |   3 +
 r/NAMESPACE                            |  97 +++++-----------
 r/R/array.R                            | 118 +------------------
 r/R/arrow-datum.R                      | 140 +++++++++++++++++++++++
 r/R/arrow-package.R                    |   2 +-
 r/R/arrow-tabular.R                    | 192 +++++++++++++++++++++++++++++++
 r/R/arrowExports.R                     |  12 --
 r/R/chunked-array.R                    |  38 +------
 r/R/compute.R                          |  63 ++++-------
 r/R/dplyr.R                            |  25 ++---
 r/R/expression.R                       |   8 +-
 r/R/metadata.R                         | 132 ++++++++++++++++++++++
 r/R/record-batch.R                     | 199 ++-------------------------------
 r/R/scalar.R                           |  25 +----
 r/R/table.R                            | 199 ++-------------------------------
 r/R/type.R                             |   6 +-
 r/_pkgdown.yml                         |   1 -
 r/man/cast_options.Rd                  |  21 ++--
 r/src/arrowExports.cpp                 |  41 +------
 r/src/compute.cpp                      |  91 ++++++---------
 r/tests/testthat/test-Table.R          |   7 +-
 r/tests/testthat/test-compute-vector.R |  69 +++++++-----
 22 files changed, 653 insertions(+), 836 deletions(-)
 create mode 100644 r/R/arrow-datum.R
 create mode 100644 r/R/arrow-tabular.R
 create mode 100644 r/R/metadata.R