You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2020/03/07 09:37:49 UTC

[arrow] branch master updated (88e3267 -> fe71388)

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

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


    from 88e3267  ARROW-7993: [Java] Support decimal type in ComplexCopier
     add fe71388  ARROW-7444: [GLib] Add LocalFileSystem support

No new revisions were added by this update.

Summary of changes:
 c_glib/arrow-cuda-glib/cuda.cpp                    |   14 +-
 c_glib/arrow-glib/Makefile.am                      |   12 +
 c_glib/arrow-glib/arrow-glib.h                     |    3 +
 c_glib/arrow-glib/file-system.cpp                  | 1346 ++++++++++++++++++++
 c_glib/arrow-glib/file-system.h                    |  240 ++++
 c_glib/arrow-glib/{compute.hpp => file-system.hpp} |   30 +-
 c_glib/arrow-glib/input-stream.cpp                 |   55 +-
 c_glib/arrow-glib/input-stream.h                   |   15 +-
 c_glib/arrow-glib/input-stream.hpp                 |    6 +-
 c_glib/arrow-glib/local-file-system.cpp            |  211 +++
 c_glib/arrow-glib/local-file-system.h              |   60 +
 .../local-file-system.hpp}                         |   13 +-
 c_glib/arrow-glib/meson.build                      |   15 +
 c_glib/arrow-glib/readable.cpp                     |   41 +-
 c_glib/arrow-glib/readable.h                       |   30 +-
 c_glib/arrow-glib/readable.hpp                     |    2 +-
 c_glib/configure.ac                                |    6 +-
 c_glib/doc/arrow-glib/arrow-glib-docs.xml          |   12 +
 c_glib/doc/parquet-glib/parquet-glib-docs.xml      |    4 +
 c_glib/meson.build                                 |    6 +
 c_glib/test/file-system-tests.rb                   |  383 ++++++
 c_glib/test/test-buffer-input-stream.rb            |   21 +
 c_glib/test/test-file-info.rb                      |  170 +++
 c_glib/test/test-file-selector.rb                  |   82 ++
 ...y-literal-node.rb => test-local-file-system.rb} |   48 +-
 ...-list-data-type.rb => test-slow-file-system.rb} |   32 +-
 26 files changed, 2769 insertions(+), 88 deletions(-)
 create mode 100644 c_glib/arrow-glib/file-system.cpp
 create mode 100644 c_glib/arrow-glib/file-system.h
 copy c_glib/arrow-glib/{compute.hpp => file-system.hpp} (56%)
 create mode 100644 c_glib/arrow-glib/local-file-system.cpp
 create mode 100644 c_glib/arrow-glib/local-file-system.h
 copy c_glib/{gandiva-glib/projector.hpp => arrow-glib/local-file-system.hpp} (72%)
 create mode 100644 c_glib/test/file-system-tests.rb
 create mode 100644 c_glib/test/test-file-info.rb
 create mode 100644 c_glib/test/test-file-selector.rb
 copy c_glib/test/{gandiva/test-binary-literal-node.rb => test-local-file-system.rb} (51%)
 copy c_glib/test/{test-list-data-type.rb => test-slow-file-system.rb} (61%)