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 2020/06/09 17:06:40 UTC

[arrow] branch master updated (bd58907 -> 7518cd3)

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 bd58907  ARROW-9074: [GLib] Add missing arrow-json check
     add 7518cd3  ARROW-8766: [Python] Allow implementing filesystems in Python

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/python/CMakeLists.txt     |   4 +
 cpp/src/arrow/python/datetime.h         |  10 +
 cpp/src/arrow/python/filesystem.cc      | 189 ++++++++++++++
 cpp/src/arrow/python/filesystem.h       | 115 +++++++++
 python/pyarrow/_fs.pxd                  |  13 +
 python/pyarrow/_fs.pyx                  | 351 +++++++++++++++++++++++++-
 python/pyarrow/fs.py                    |   4 +-
 python/pyarrow/includes/libarrow.pxd    |   2 +
 python/pyarrow/includes/libarrow_fs.pxd |  54 +++-
 python/pyarrow/io.pxi                   |   2 +-
 python/pyarrow/tests/test_fs.py         | 435 ++++++++++++++++++++++++++++++--
 11 files changed, 1146 insertions(+), 33 deletions(-)
 create mode 100644 cpp/src/arrow/python/filesystem.cc
 create mode 100644 cpp/src/arrow/python/filesystem.h