You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ap...@apache.org on 2019/12/04 19:27:42 UTC

[arrow] branch master updated (70aea01 -> e0c1ffe)

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

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


    from 70aea01  ARROW-6508: [C++] Add Tensor and SparseTensor factory function with validations
     add e0c1ffe  ARROW-6904: [Python] Add support for MapArray

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/array.cc                       |  99 ++++++++++++-----
 cpp/src/arrow/array.h                        |  24 +++-
 cpp/src/arrow/array/builder_nested.cc        |  35 ++++--
 cpp/src/arrow/array/builder_nested.h         |  20 +++-
 cpp/src/arrow/array_list_test.cc             | 158 +++++++++++++++++++++++++++
 cpp/src/arrow/python/python_to_arrow.cc      |  57 ++++++++++
 cpp/src/arrow/type_traits.h                  |   3 +
 python/pyarrow/__init__.py                   |   9 +-
 python/pyarrow/array.pxi                     |  49 ++++++++-
 python/pyarrow/includes/libarrow.pxd         |  22 ++++
 python/pyarrow/lib.pxd                       |  21 ++++
 python/pyarrow/public-api.pxi                |   2 +
 python/pyarrow/scalar.pxi                    |  56 ++++++++++
 python/pyarrow/tests/test_array.py           |  51 +++++++++
 python/pyarrow/tests/test_convert_builtin.py |  54 +++++++++
 python/pyarrow/tests/test_misc.py            |   4 +
 python/pyarrow/tests/test_scalars.py         |  26 +++++
 python/pyarrow/tests/test_schema.py          |   1 +
 python/pyarrow/tests/test_types.py           |  25 +++++
 python/pyarrow/types.pxi                     |  54 ++++++++-
 20 files changed, 721 insertions(+), 49 deletions(-)