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/24 23:25:09 UTC

[arrow] branch master updated (5e19200 -> 55defbf)

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 5e19200  ARROW-9840: [Python] fs documentation out of date with code (FileStats -> FileInfo)
     add 55defbf  ARROW-9405: [R] Switch to cpp11

No new revisions were added by this update.

Summary of changes:
 dev/release/rat_exclude_files.txt         |    2 +
 r/DESCRIPTION                             |    3 -
 r/NAMESPACE                               |    1 -
 r/NEWS.md                                 |    4 +
 r/R/arrow-package.R                       |    1 -
 r/R/arrowExports.R                        |   36 +-
 r/R/json.R                                |   13 +-
 r/R/parquet.R                             |    3 +-
 r/R/schema.R                              |    5 +-
 r/R/struct.R                              |    2 +-
 r/R/table.R                               |    6 +-
 r/README.md                               |    8 +-
 r/data-raw/codegen.R                      |   27 +-
 r/inst/include/cpp11.hpp                  |   25 +
 r/inst/include/cpp11/R.hpp                |   49 +
 r/inst/include/cpp11/altrep.hpp           |   44 +
 r/inst/include/cpp11/as.hpp               |  339 ++
 r/inst/include/cpp11/attribute_proxy.hpp  |   50 +
 r/inst/include/cpp11/data_frame.hpp       |  102 +
 r/inst/include/cpp11/declarations.hpp     |   53 +
 r/inst/include/cpp11/doubles.hpp          |  136 +
 r/inst/include/cpp11/environment.hpp      |   75 +
 r/inst/include/cpp11/external_pointer.hpp |  165 +
 r/inst/include/cpp11/function.hpp         |   78 +
 r/inst/include/cpp11/integers.hpp         |  142 +
 r/inst/include/cpp11/list.hpp             |  138 +
 r/inst/include/cpp11/list_of.hpp          |   53 +
 r/inst/include/cpp11/logicals.hpp         |  140 +
 r/inst/include/cpp11/matrix.hpp           |  111 +
 r/inst/include/cpp11/named_arg.hpp        |   51 +
 r/inst/include/cpp11/protect.hpp          |  286 ++
 r/inst/include/cpp11/r_string.hpp         |   92 +
 r/inst/include/cpp11/r_vector.hpp         |  986 ++++++
 r/inst/include/cpp11/raws.hpp             |  148 +
 r/inst/include/cpp11/sexp.hpp             |   79 +
 r/inst/include/cpp11/strings.hpp          |  187 ++
 r/src/Makevars.in                         |    2 +-
 r/src/array.cpp                           |   49 +-
 r/src/array_from_vector.cpp               |  171 +-
 r/src/array_to_vector.cpp                 |  487 +--
 r/src/arraydata.cpp                       |    7 +-
 r/src/arrowExports.cpp                    | 5008 +++++++++++++++--------------
 r/src/arrow_cpp11.h                       |  312 ++
 r/src/arrow_exports.h                     |   13 +-
 r/src/arrow_rcpp.h                        |  186 --
 r/src/arrow_types.h                       |   77 +-
 r/src/buffer.cpp                          |   18 +-
 r/src/chunkedarray.cpp                    |   13 +-
 r/src/compression.cpp                     |    4 +-
 r/src/compute.cpp                         |   42 +-
 r/src/csv.cpp                             |   44 +-
 r/src/dataset.cpp                         |    7 +-
 r/src/datatype.cpp                        |   55 +-
 r/src/feather.cpp                         |   14 +-
 r/src/filesystem.cpp                      |   10 +-
 r/src/io.cpp                              |    8 +-
 r/src/json.cpp                            |   14 +-
 r/src/memorypool.cpp                      |    2 +-
 r/src/message.cpp                         |    2 -
 r/src/parquet.cpp                         |   18 +-
 r/src/py-to-r.cpp                         |   54 +-
 r/src/recordbatch.cpp                     |   80 +-
 r/src/recordbatchreader.cpp               |    2 +-
 r/src/recordbatchwriter.cpp               |    2 -
 r/src/schema.cpp                          |   39 +-
 r/src/symbols.cpp                         |   54 +-
 r/src/table.cpp                           |  107 +-
 r/tests/testthat/helper-roundtrip.R       |   43 +
 r/tests/testthat/test-Array-errors.txt    |   25 -
 r/tests/testthat/test-Array.R             |   74 +-
 r/tests/testthat/test-RecordBatch.R       |   22 +-
 r/tests/testthat/test-Table.R             |   18 +-
 r/tests/testthat/test-chunked-array.R     |   10 +-
 r/tests/testthat/test-data-type.R         |    4 +-
 r/tests/testthat/test-python.R            |    2 +
 r/vignettes/install.Rmd                   |    4 +-
 76 files changed, 7133 insertions(+), 3610 deletions(-)
 create mode 100644 r/inst/include/cpp11.hpp
 create mode 100644 r/inst/include/cpp11/R.hpp
 create mode 100644 r/inst/include/cpp11/altrep.hpp
 create mode 100644 r/inst/include/cpp11/as.hpp
 create mode 100644 r/inst/include/cpp11/attribute_proxy.hpp
 create mode 100644 r/inst/include/cpp11/data_frame.hpp
 create mode 100644 r/inst/include/cpp11/declarations.hpp
 create mode 100644 r/inst/include/cpp11/doubles.hpp
 create mode 100644 r/inst/include/cpp11/environment.hpp
 create mode 100644 r/inst/include/cpp11/external_pointer.hpp
 create mode 100644 r/inst/include/cpp11/function.hpp
 create mode 100644 r/inst/include/cpp11/integers.hpp
 create mode 100644 r/inst/include/cpp11/list.hpp
 create mode 100644 r/inst/include/cpp11/list_of.hpp
 create mode 100644 r/inst/include/cpp11/logicals.hpp
 create mode 100644 r/inst/include/cpp11/matrix.hpp
 create mode 100644 r/inst/include/cpp11/named_arg.hpp
 create mode 100644 r/inst/include/cpp11/protect.hpp
 create mode 100644 r/inst/include/cpp11/r_string.hpp
 create mode 100644 r/inst/include/cpp11/r_vector.hpp
 create mode 100644 r/inst/include/cpp11/raws.hpp
 create mode 100644 r/inst/include/cpp11/sexp.hpp
 create mode 100644 r/inst/include/cpp11/strings.hpp
 create mode 100644 r/src/arrow_cpp11.h
 delete mode 100644 r/src/arrow_rcpp.h
 create mode 100644 r/tests/testthat/helper-roundtrip.R
 delete mode 100644 r/tests/testthat/test-Array-errors.txt