You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by fs...@apache.org on 2020/05/22 12:05:41 UTC

[arrow] branch master updated (9eee23c -> 14d8d0c)

This is an automated email from the ASF dual-hosted git repository.

fsaintjacques pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.


    from 9eee23c  ARROW-8887: [Java] Avoid runway doubling of buffer size for complex vectors
     add 14d8d0c  ARROW-8885: [R] Don't include everything everywhere

No new revisions were added by this update.

Summary of changes:
 r/data-raw/codegen.R                  |   2 +-
 r/src/array.cpp                       |   2 +
 r/src/array_from_vector.cpp           |   5 +
 r/src/array_to_vector.cpp             |   2 +
 r/src/arraydata.cpp                   |   1 +
 r/src/arrowExports.cpp                |   2 +-
 r/src/arrow_exports.h                 |  56 ++++++++++
 r/src/{arrow_types.h => arrow_rcpp.h} | 137 ------------------------
 r/src/arrow_types.h                   | 193 ++--------------------------------
 r/src/chunkedarray.cpp                |   3 +
 r/src/compression.cpp                 |   4 +
 r/src/compute.cpp                     |   1 +
 r/src/csv.cpp                         |   2 +
 r/src/dataset.cpp                     |   7 ++
 r/src/datatype.cpp                    |   5 +
 r/src/expression.cpp                  |   3 +
 r/src/feather.cpp                     |   2 +
 r/src/field.cpp                       |   1 +
 r/src/filesystem.cpp                  |   9 ++
 r/src/io.cpp                          |   4 +
 r/src/memorypool.cpp                  |   1 +
 r/src/message.cpp                     |   4 +
 r/src/parquet.cpp                     |   3 +
 r/src/py-to-r.cpp                     |   1 +
 r/src/recordbatch.cpp                 |   3 +
 r/src/recordbatchreader.cpp           |   2 +
 r/src/recordbatchwriter.cpp           |   1 +
 r/src/schema.cpp                      |   4 +
 r/src/table.cpp                       |   3 +
 29 files changed, 139 insertions(+), 324 deletions(-)
 create mode 100644 r/src/arrow_exports.h
 copy r/src/{arrow_types.h => arrow_rcpp.h} (53%)