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 2021/09/02 19:48:23 UTC

[arrow] branch master updated (8c70a5f -> a1d207e)

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 8c70a5f  ARROW-13459: [C++][Docs]Missing param docs for RecordBatch::SetColumn
     add a1d207e  ARROW-13831: [GLib][Ruby] Add support for writing by Arrow Dataset

No new revisions were added by this update.

Summary of changes:
 c_glib/arrow-dataset-glib/arrow-dataset-glib.h     |   2 +
 c_glib/arrow-dataset-glib/arrow-dataset-glib.hpp   |   1 +
 c_glib/arrow-dataset-glib/dataset-factory.cpp      |  68 ++++
 c_glib/arrow-dataset-glib/dataset.cpp              | 403 ++++++++++++++++++-
 c_glib/arrow-dataset-glib/dataset.h                |  25 ++
 c_glib/arrow-dataset-glib/dataset.hpp              |  10 +-
 .../enums.c.template                               |   2 +-
 .../enums.h.template                               |   2 +-
 c_glib/arrow-dataset-glib/file-format.cpp          | 380 ++++++++++++++++--
 c_glib/arrow-dataset-glib/file-format.h            |  59 ++-
 c_glib/arrow-dataset-glib/file-format.hpp          |  18 +-
 c_glib/arrow-dataset-glib/meson.build              |  22 +-
 c_glib/arrow-dataset-glib/partitioning.cpp         | 440 +++++++++++++++++++++
 c_glib/arrow-dataset-glib/partitioning.h           | 110 ++++++
 .../{file-format.hpp => partitioning.hpp}          |  13 +-
 c_glib/arrow-dataset-glib/scanner.cpp              |  19 +
 c_glib/arrow-dataset-glib/scanner.h                |   4 +
 c_glib/arrow-glib/compute.cpp                      |   4 +-
 c_glib/arrow-glib/input-stream.cpp                 | 124 +++++-
 c_glib/arrow-glib/input-stream.h                   |  68 ++--
 c_glib/arrow-glib/input-stream.hpp                 |  11 +-
 .../arrow-dataset-glib/arrow-dataset-glib-docs.xml |   8 +-
 c_glib/test/dataset/test-file-system-dataset.rb    |  64 ++-
 c_glib/test/dataset/test-file-writer.rb            |  65 +++
 ...file-format.rb => test-partitioning-options.rb} |  26 +-
 .../{test-file-format.rb => test-partitioning.rb}  |  18 +-
 c_glib/test/dataset/test-scanner.rb                |   7 +
 c_glib/test/helper/buildable.rb                    |   7 +
 c_glib/test/helper/{writable.rb => readable.rb}    |  32 +-
 c_glib/test/run-test.rb                            |   2 +
 ...d-input-stream.rb => test-file-input-stream.rb} |  36 +-
 .../lib/arrow-dataset/arrow-table-savable.rb       |  68 ++++
 .../lib/arrow-dataset/file-format.rb               |  14 +
 ruby/red-arrow-dataset/lib/arrow-dataset/loader.rb |   1 +
 ruby/red-arrow-dataset/test/test-arrow-table.rb    |   5 +-
 .../arrow/{block-closable.rb => file-system.rb}    |  23 +-
 ruby/red-arrow/lib/arrow/loader.rb                 |   1 +
 ruby/red-arrow/lib/arrow/table-saver.rb            |  32 +-
 38 files changed, 1996 insertions(+), 198 deletions(-)
 copy c_glib/{gandiva-glib => arrow-dataset-glib}/enums.c.template (96%)
 copy c_glib/{arrow-glib => arrow-dataset-glib}/enums.h.template (96%)
 create mode 100644 c_glib/arrow-dataset-glib/partitioning.cpp
 create mode 100644 c_glib/arrow-dataset-glib/partitioning.h
 copy c_glib/arrow-dataset-glib/{file-format.hpp => partitioning.hpp} (72%)
 create mode 100644 c_glib/test/dataset/test-file-writer.rb
 copy c_glib/test/dataset/{test-file-format.rb => test-partitioning-options.rb} (54%)
 copy c_glib/test/dataset/{test-file-format.rb => test-partitioning.rb} (70%)
 copy c_glib/test/helper/{writable.rb => readable.rb} (56%)
 copy c_glib/test/{test-memory-mapped-input-stream.rb => test-file-input-stream.rb} (67%)
 create mode 100644 ruby/red-arrow-dataset/lib/arrow-dataset/arrow-table-savable.rb
 copy ruby/red-arrow/lib/arrow/{block-closable.rb => file-system.rb} (74%)