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/03/26 02:12:46 UTC

[arrow] branch master updated (b619cae -> 515b05c)

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 b619cae  ARROW-12086: [C++] Fix environment variables for bzip2, utf8proc URLs
     add 515b05c  ARROW-11703: [R] Implement dplyr::arrange()

No new revisions were added by this update.

Summary of changes:
 r/NAMESPACE                           |   4 +
 r/R/array.R                           |   8 ++
 r/R/arrow-datum.R                     |  20 ++++
 r/R/arrow-package.R                   |   2 +-
 r/R/arrow-tabular.R                   |  17 +++
 r/R/arrowExports.R                    |   8 ++
 r/R/chunked-array.R                   |  14 +++
 r/R/dataset-scan.R                    |   5 +-
 r/R/dplyr.R                           | 135 ++++++++++++++++++++--
 r/R/record-batch.R                    |   7 +-
 r/R/scalar.R                          |  11 +-
 r/R/table.R                           |   7 +-
 r/man/ChunkedArray.Rd                 |   2 +
 r/man/RecordBatch.Rd                  |   5 +
 r/man/Table.Rd                        |   5 +
 r/man/array.Rd                        |   2 +
 r/src/arrowExports.cpp                |  20 ++++
 r/src/compute.cpp                     |  27 +++++
 r/src/scalar.cpp                      |  12 ++
 r/tests/testthat/helper-arrow.R       |   4 +
 r/tests/testthat/helper-data.R        |  33 ++++++
 r/tests/testthat/helper-expectation.R |  41 ++++++-
 r/tests/testthat/test-compute-sort.R  | 165 ++++++++++++++++++++++++++
 r/tests/testthat/test-dataset.R       |  37 +++++-
 r/tests/testthat/test-dplyr-arrange.R | 211 ++++++++++++++++++++++++++++++++++
 r/tests/testthat/test-dplyr.R         |  11 --
 r/tests/testthat/test-scalar.R        |  24 +++-
 27 files changed, 807 insertions(+), 30 deletions(-)
 create mode 100644 r/tests/testthat/test-compute-sort.R
 create mode 100644 r/tests/testthat/test-dplyr-arrange.R