You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2020/02/21 08:19:14 UTC

[arrow] branch master updated (7fb03c0 -> f609298)

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

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


    from 7fb03c0  ARROW-7887: [Rust] Add date/time/duration/timestamp types to filter kernel
     add f609298  ARROW-7080: [C++][Parquet] Read and write "field_id" attribute in Parquet files, propagate to Arrow field metadata. Assorted additional changes

No new revisions were added by this update.

Summary of changes:
 c_glib/arrow-glib/table.cpp                       |  21 +++
 c_glib/arrow-glib/table.h                         |   5 +
 c_glib/test/parquet/test-arrow-file-writer.rb     |   4 +-
 c_glib/test/test-table.rb                         |  26 ++-
 cpp/src/arrow/dataset/file_parquet_test.cc        |   5 +-
 cpp/src/arrow/table.cc                            |  85 +++++----
 cpp/src/arrow/table.h                             |  78 ++++++++
 cpp/src/arrow/table_test.cc                       |  14 ++
 cpp/src/arrow/testing/gtest_util.cc               |  38 ++--
 cpp/src/arrow/type.cc                             |  24 ++-
 cpp/src/arrow/type.h                              |  11 +-
 cpp/src/arrow/type_test.cc                        |  77 +++++---
 cpp/src/arrow/util/key_value_metadata.cc          |  38 +++-
 cpp/src/arrow/util/key_value_metadata.h           |   8 +-
 cpp/src/arrow/util/key_value_metadata_test.cc     |  21 +++
 cpp/src/parquet/arrow/arrow_reader_writer_test.cc |  50 +++--
 cpp/src/parquet/arrow/arrow_schema_test.cc        |   5 +-
 cpp/src/parquet/arrow/reader.cc                   |   5 +-
 cpp/src/parquet/arrow/reader_internal.cc          |  29 ++-
 cpp/src/parquet/metadata.cc                       |  11 +-
 cpp/src/parquet/schema.cc                         | 214 ++++++++++------------
 cpp/src/parquet/schema.h                          | 103 ++++++-----
 cpp/src/parquet/schema_internal.h                 |  44 +----
 cpp/src/parquet/schema_test.cc                    | 158 ++++++++--------
 python/pyarrow/_parquet.pxd                       |   4 +
 python/pyarrow/_parquet.pyx                       |  20 +-
 python/pyarrow/parquet.py                         |  11 ++
 python/pyarrow/tests/test_parquet.py              | 108 ++++++++---
 python/pyarrow/types.pxi                          |   4 +
 r/tests/testthat/helper-parquet.R                 |   2 +-
 r/tests/testthat/test-parquet.R                   |   6 +-
 ruby/red-parquet/test/test-arrow-table.rb         |   8 +-
 32 files changed, 774 insertions(+), 463 deletions(-)