You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by li...@apache.org on 2021/09/03 13:46:17 UTC

[arrow] branch master updated (a45fc3f -> 5ead375)

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

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


    from a45fc3f  ARROW-13782: [C++] Add skip_nulls/min_count to tdigest/mode/quantile
     add 5ead375  ARROW-13855: [C++][Python] Implement C data interface support for extension types

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/c/bridge.cc                      | 128 ++++++---
 cpp/src/arrow/c/bridge_test.cc                 | 349 +++++++++++++++++++------
 cpp/src/arrow/extension_type_test.cc           |   2 +
 cpp/src/arrow/ipc/read_write_test.cc           |  10 +-
 cpp/src/arrow/ipc/test_common.cc               |  17 ++
 cpp/src/arrow/ipc/test_common.h                |   3 +
 cpp/src/arrow/testing/extension_type.h         |  41 ++-
 cpp/src/arrow/testing/gtest_util.cc            |  84 ++++--
 cpp/src/arrow/testing/json_integration_test.cc |   7 +-
 cpp/src/arrow/util/key_value_metadata.cc       |   8 +-
 cpp/src/arrow/util/key_value_metadata.h        |   5 +-
 python/pyarrow/includes/libarrow.pxd           |   9 +
 python/pyarrow/tests/test_cffi.py              |  64 ++++-
 python/pyarrow/tests/test_extension_type.py    |  28 ++
 python/pyarrow/types.pxi                       |  39 +++
 15 files changed, 626 insertions(+), 168 deletions(-)