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 76e61e7 ARROW-7237: [C++] Use Result<T> in arrow/json APIs
add 98f10dc ARROW-9017: [C++][Python] Refactor scalar bindings
No new revisions were added by this update.
Summary of changes:
cpp/src/arrow/array/array_base.cc | 46 +-
cpp/src/arrow/array/array_test.cc | 6 +-
cpp/src/arrow/array/util.cc | 2 -
cpp/src/arrow/compare.cc | 12 +-
cpp/src/arrow/dataset/dataset_test.cc | 2 -
cpp/src/arrow/scalar.cc | 38 +-
cpp/src/arrow/scalar.h | 8 +
cpp/src/arrow/scalar_test.cc | 294 +++++-
python/pyarrow/__init__.py | 71 +-
python/pyarrow/_compute.pyx | 5 +-
python/pyarrow/_dataset.pyx | 24 +-
python/pyarrow/_parquet.pyx | 33 +-
python/pyarrow/array.pxi | 30 +-
python/pyarrow/includes/libarrow.pxd | 64 +-
python/pyarrow/includes/libarrow_dataset.pxd | 6 +-
python/pyarrow/lib.pxd | 100 +-
python/pyarrow/public-api.pxi | 9 +-
python/pyarrow/scalar.pxi | 1400 ++++++++++----------------
python/pyarrow/tests/test_array.py | 8 +-
python/pyarrow/tests/test_compute.py | 16 +-
python/pyarrow/tests/test_convert_builtin.py | 18 +-
python/pyarrow/tests/test_csv.py | 2 +-
python/pyarrow/tests/test_dataset.py | 16 +-
python/pyarrow/tests/test_gandiva.py | 10 +-
python/pyarrow/tests/test_misc.py | 60 +-
python/pyarrow/tests/test_pandas.py | 2 +-
python/pyarrow/tests/test_parquet.py | 3 +-
python/pyarrow/tests/test_scalars.py | 879 ++++++++--------
python/pyarrow/tests/test_table.py | 2 +-
python/pyarrow/util.py | 18 +
30 files changed, 1625 insertions(+), 1559 deletions(-)