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/09/17 16:13:50 UTC

[arrow] branch master updated (5926ac4 -> ae20ce8)

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 5926ac4  ARROW-6391: [Python][Flight] Add built-in methods on FlightServerBase to start server and wait for it to be available
     add ae20ce8  ARROW-5494: [Python] Create FileSystem bindings

No new revisions were added by this update.

Summary of changes:
 .../{python/util/test_main.cc => filesystem/api.h} |  26 +-
 cpp/src/arrow/filesystem/filesystem.h              |   2 +-
 cpp/src/arrow/python/CMakeLists.txt                |   1 +
 cpp/src/arrow/python/api.h                         |   1 +
 cpp/src/arrow/python/arrow_to_pandas.cc            |   6 +-
 .../arrow/python/{util/datetime.h => datetime.cc}  |  84 +---
 cpp/src/arrow/python/datetime.h                    | 108 +++++
 cpp/src/arrow/python/deserialize.cc                |   4 +-
 cpp/src/arrow/python/inference.cc                  |   2 +-
 cpp/src/arrow/python/numpy_to_arrow.cc             |   2 +-
 cpp/src/arrow/python/python_to_arrow.cc            |  24 +-
 cpp/src/arrow/python/serialize.cc                  |   4 +-
 python/CMakeLists.txt                              |   2 +-
 python/pyarrow/_fs.pyx                             | 526 +++++++++++++++++++++
 python/pyarrow/{benchmark.py => fs.py}             |   4 +-
 python/pyarrow/includes/common.pxd                 |   1 +
 python/pyarrow/includes/libarrow.pxd               |  10 +
 python/pyarrow/includes/libarrow_fs.pxd            |  92 ++++
 python/pyarrow/io.pxi                              |   5 +-
 python/pyarrow/lib.pxd                             |  16 +
 python/pyarrow/tests/test_fs.py                    | 309 ++++++++++++
 python/setup.py                                    |   1 +
 22 files changed, 1117 insertions(+), 113 deletions(-)
 copy cpp/src/arrow/{python/util/test_main.cc => filesystem/api.h} (69%)
 rename cpp/src/arrow/python/{util/datetime.h => datetime.cc} (76%)
 create mode 100644 cpp/src/arrow/python/datetime.h
 create mode 100644 python/pyarrow/_fs.pyx
 copy python/pyarrow/{benchmark.py => fs.py} (92%)
 create mode 100644 python/pyarrow/includes/libarrow_fs.pxd
 create mode 100644 python/pyarrow/tests/test_fs.py