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/06 04:01:19 UTC

[arrow] branch master updated (d6ba4f8 -> b07027e)

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 d6ba4f8  ARROW-11373: [Python][Docs] Add example of specifying type for a column when reading csv file
     add b07027e  ARROW-11735: [R] Allow Parquet and Arrow Dataset to be optional components

No new revisions were added by this update.

Summary of changes:
 dev/tasks/conda-recipes/r-arrow/configure.win   |   2 +-
 dev/tasks/r/azure.linux.yml                     |   7 +-
 dev/tasks/tasks.yml                             |  13 +
 r/NAMESPACE                                     |   2 +
 r/R/arrow-package.R                             |  25 +-
 r/R/dataset-partition.R                         |   2 +-
 r/R/parquet.R                                   |   6 +-
 r/configure                                     |  49 +-
 r/configure.win                                 |   2 +-
 r/data-raw/codegen.R                            |  30 +-
 r/inst/build_arrow_static.sh                    |   4 +-
 r/man/ParquetFileReader.Rd                      |   2 +-
 r/man/arrow_available.Rd                        |  19 +-
 r/man/hive_partition.Rd                         |   2 +-
 r/man/read_parquet.Rd                           |   2 +-
 r/man/write_parquet.Rd                          |   2 +-
 r/src/arrowExports.cpp                          | 571 +++++++++++++++++++++++-
 r/src/arrow_types.h                             |  16 +
 r/src/dataset.cpp                               |  90 ++--
 r/src/expression.cpp                            |  12 +-
 r/src/parquet.cpp                               |  62 +--
 r/tests/testthat/helper-skip.R                  |   6 +-
 r/tests/testthat/latin1.R                       |   8 +-
 r/tests/testthat/test-backwards-compatibility.R |   6 +
 r/tests/testthat/test-dataset.R                 |  72 ++-
 r/tests/testthat/test-dplyr-mutate.R            |   5 +-
 r/tests/testthat/test-expression.R              |   1 +
 r/tests/testthat/test-metadata.R                |   1 +
 r/tests/testthat/test-parquet.R                 |   2 +
 r/tests/testthat/test-s3-minio.R                | 139 +++---
 r/tests/testthat/test-s3.R                      |   1 +
 r/tools/autobrew                                |   3 +-
 32 files changed, 945 insertions(+), 219 deletions(-)