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/10 13:58:47 UTC

[arrow] branch master updated (bf1e2b4 -> 1500d39)

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 bf1e2b4  ARROW-7359: [C++][Gandiva] Don't throw error for locate function for start position exceeding string length
     add 1500d39  ARROW-7261: [Python] Add Python support for Fixed Size List type

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/array.cc                       | 18 +++++++
 cpp/src/arrow/array.h                        |  8 +++
 cpp/src/arrow/python/python_to_arrow.cc      | 78 +++++++++++++++++++++++++---
 python/pyarrow/__init__.py                   |  8 +--
 python/pyarrow/array.pxi                     | 50 ++++++++++++++++++
 python/pyarrow/includes/libarrow.pxd         | 20 ++++++-
 python/pyarrow/lib.pxd                       | 20 +++++++
 python/pyarrow/lib.pyx                       |  3 +-
 python/pyarrow/public-api.pxi                |  2 +
 python/pyarrow/scalar.pxi                    | 52 +++++++++++++++++++
 python/pyarrow/tests/test_array.py           | 57 ++++++++++++++++++++
 python/pyarrow/tests/test_convert_builtin.py | 43 ++++++++++++++-
 python/pyarrow/tests/test_misc.py            |  4 ++
 python/pyarrow/tests/test_scalars.py         | 16 ++++++
 python/pyarrow/tests/test_schema.py          |  1 +
 python/pyarrow/tests/test_types.py           | 17 ++++++
 python/pyarrow/types.pxi                     | 45 ++++++++++++++--
 python/pyarrow/types.py                      |  7 +++
 18 files changed, 431 insertions(+), 18 deletions(-)