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/11/11 20:30:56 UTC

[arrow] branch master updated (cf243d4 -> 1c18706)

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 cf243d4  ARROW-10525: [C++] Fix crash on unsupported IPC stream
     add 1c18706  ARROW-9001: [R] Box outputs as correct type in call_function

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/compute/type_fwd.h                   |   2 +
 cpp/src/arrow/csv/options.h                        |   1 +
 cpp/src/{parquet => arrow/csv}/type_fwd.h          |  16 +-
 cpp/src/arrow/dataset/type_fwd.h                   |   6 +-
 cpp/src/arrow/ipc/feather.h                        |   2 +-
 cpp/src/arrow/json/options.h                       |   1 +
 cpp/src/{parquet => arrow/json}/type_fwd.h         |  15 +-
 cpp/src/arrow/util/compression.h                   |  22 +-
 cpp/src/arrow/util/type_fwd.h                      |  25 ++
 cpp/src/parquet/arrow/generate_fuzz_corpus.cc      |   2 +-
 cpp/src/parquet/arrow/schema_internal.cc           |   4 +-
 cpp/src/parquet/column_writer.cc                   |   8 +-
 cpp/src/parquet/encoding.cc                        | 269 +++++++++++----------
 cpp/src/parquet/encoding_benchmark.cc              |  38 +--
 cpp/src/parquet/encoding_test.cc                   | 121 ++++-----
 cpp/src/parquet/file_reader.cc                     |  18 +-
 cpp/src/parquet/level_conversion_test.cc           |   2 +-
 cpp/src/parquet/metadata.cc                        |   2 +-
 cpp/src/parquet/platform.cc                        |   2 +-
 cpp/src/parquet/printer.cc                         |   4 +-
 cpp/src/parquet/properties.h                       |   5 +-
 cpp/src/parquet/properties_test.cc                 |   2 +-
 cpp/src/parquet/reader_test.cc                     |  10 +-
 cpp/src/parquet/statistics.cc                      |  22 +-
 cpp/src/parquet/statistics_test.cc                 |   4 +-
 cpp/src/parquet/stream_reader.h                    |   2 +-
 cpp/src/parquet/stream_reader_test.cc              |  18 +-
 cpp/src/parquet/stream_writer.cc                   |   2 +-
 cpp/src/parquet/stream_writer.h                    |   4 +-
 cpp/src/parquet/stream_writer_test.cc              |   5 +-
 cpp/src/parquet/test_encryption_util.h             |   6 +-
 cpp/src/parquet/type_fwd.h                         |  12 +
 cpp/src/parquet/types.h                            |   1 +
 r/NAMESPACE                                        |   2 +-
 r/R/array-data.R                                   |   4 +-
 r/R/array.R                                        |  69 ++----
 r/R/arrow-package.R                                |  11 +-
 r/R/arrowExports.R                                 |  16 +-
 r/R/buffer.R                                       |   2 +-
 r/R/chunked-array.R                                |  18 +-
 r/R/compression.R                                  |   8 +-
 r/R/compute.R                                      |  17 +-
 r/R/csv.R                                          |  24 +-
 r/R/dataset-factory.R                              |  11 +-
 r/R/dataset-format.R                               |  23 +-
 r/R/dataset-partition.R                            |  16 +-
 r/R/dataset-scan.R                                 |  12 +-
 r/R/dataset.R                                      |  32 +--
 r/R/dictionary.R                                   |   6 +-
 r/R/dplyr.R                                        |  11 +-
 r/R/expression.R                                   |  55 ++---
 r/R/feather.R                                      |   4 +-
 r/R/field.R                                        |   4 +-
 r/R/filesystem.R                                   |  52 +---
 r/R/io.R                                           |  22 +-
 r/R/json.R                                         |  11 +-
 r/R/list.R                                         |  18 +-
 r/R/memory-pool.R                                  |   2 +-
 r/R/message.R                                      |  10 +-
 r/R/parquet.R                                      |  68 +++---
 r/R/python.R                                       |   5 +-
 r/R/record-batch-reader.R                          |  20 +-
 r/R/record-batch-writer.R                          |  24 +-
 r/R/record-batch.R                                 |  37 +--
 r/R/scalar.R                                       |  31 +--
 r/R/schema.R                                       |  18 +-
 r/R/struct.R                                       |   4 +-
 r/R/table.R                                        |  34 +--
 r/R/type.R                                         | 106 +++-----
 r/data-raw/codegen.R                               |  33 ++-
 ...operties.Rd => ParquetArrowReaderProperties.Rd} |   8 +-
 r/man/ParquetFileReader.Rd                         |   2 +-
 r/man/read_parquet.Rd                              |   4 +-
 r/src/array.cpp                                    |  28 ++-
 r/src/arraydata.cpp                                |   2 +-
 r/src/arrowExports.cpp                             | 134 +++++-----
 r/src/arrow_cpp11.h                                | 112 ++++++---
 r/src/arrow_exports.h                              |  87 -------
 r/src/arrow_types.h                                |  95 +++++++-
 r/src/chunkedarray.cpp                             |   2 +-
 r/src/compute.cpp                                  |  18 +-
 r/src/dataset.cpp                                  |  67 +++--
 r/src/datatype.cpp                                 | 144 ++++++++---
 r/src/filesystem.cpp                               |  33 ++-
 r/src/memorypool.cpp                               |   2 +-
 r/src/message.cpp                                  |   8 +-
 r/src/nameof.h                                     |  11 +-
 r/src/parquet.cpp                                  |  28 +--
 r/src/py-to-r.cpp                                  |   6 +-
 r/src/recordbatch.cpp                              |   5 +-
 r/src/recordbatchreader.cpp                        |  12 +-
 r/src/scalar.cpp                                   |  13 +
 r/src/schema.cpp                                   |   5 +-
 r/src/symbols.cpp                                  |   2 +
 r/src/table.cpp                                    |   5 +-
 r/tests/testthat/helper-roundtrip.R                |   4 +-
 r/tests/testthat/test-data-type.R                  | 104 ++++----
 r/tests/testthat/test-read-record-batch.R          |   2 +-
 r/tests/testthat/test-record-batch-reader.R        |   4 +-
 r/tests/testthat/test-schema.R                     |   2 +-
 100 files changed, 1263 insertions(+), 1179 deletions(-)
 copy cpp/src/{parquet => arrow/csv}/type_fwd.h (85%)
 copy cpp/src/{parquet => arrow/json}/type_fwd.h (85%)
 rename r/man/{ParquetReaderProperties.Rd => ParquetArrowReaderProperties.Rd} (72%)
 delete mode 100644 r/src/arrow_exports.h