You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2020/03/30 00:05:54 UTC

[arrow] branch master updated (db50352 -> e03251c)

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 db50352  ARROW-2587: [Python][Parquet] Verify nested data can be written
     add e03251c  ARROW-5510: [C++][Python][R][GLib] Implement Feather "V2" using Arrow IPC file format

No new revisions were added by this update.

Summary of changes:
 .github/workflows/ruby.yml                        |    1 +
 c_glib/arrow-glib/file-system.cpp                 |   49 +-
 c_glib/arrow-glib/file-system.hpp                 |    2 +-
 c_glib/arrow-glib/reader.cpp                      |  183 +---
 c_glib/arrow-glib/reader.h                        |   16 -
 c_glib/arrow-glib/reader.hpp                      |    9 +-
 c_glib/arrow-glib/table.cpp                       |  184 +++-
 c_glib/arrow-glib/table.h                         |   25 +
 c_glib/arrow-glib/table.hpp                       |    4 +
 c_glib/arrow-glib/writer.cpp                      |  228 -----
 c_glib/arrow-glib/writer.h                        |   28 -
 c_glib/arrow-glib/writer.hpp                      |    3 -
 c_glib/test/test-feather-file-reader.rb           |  118 +--
 c_glib/test/test-feather-file-writer.rb           |   94 --
 c_glib/test/test-table.rb                         |   44 +
 cpp/src/arrow/ipc/feather.cc                      | 1039 ++++++++++-----------
 cpp/src/arrow/ipc/feather.fbs                     |    6 +
 cpp/src/arrow/ipc/feather.h                       |  130 +--
 cpp/src/arrow/ipc/feather_internal.h              |  233 -----
 cpp/src/arrow/ipc/feather_test.cc                 |  552 +++--------
 cpp/src/arrow/table.cc                            |    4 +-
 python/pyarrow/feather.pxi                        |   95 +-
 python/pyarrow/feather.py                         |  181 ++--
 python/pyarrow/includes/libarrow.pxd              |   35 +-
 python/pyarrow/tests/test_feather.py              |  884 +++++++++---------
 r/NAMESPACE                                       |    3 +-
 r/R/arrowExports.R                                |   64 +-
 r/R/feather.R                                     |  165 ++--
 r/_pkgdown.yml                                    |    3 +-
 r/man/{FeatherTableReader.Rd => FeatherReader.Rd} |   20 +-
 r/man/FeatherTableWriter.Rd                       |   34 -
 r/man/read_feather.Rd                             |    2 +-
 r/man/write_feather.Rd                            |   32 +-
 r/src/arrowExports.cpp                            |  258 +----
 r/src/feather.cpp                                 |  124 +--
 r/tests/testthat/test-feather.R                   |   84 +-
 ruby/red-arrow/lib/arrow/table-saver.rb           |   10 +-
 ruby/red-arrow/test/test-feather.rb               |   27 +-
 38 files changed, 1894 insertions(+), 3079 deletions(-)
 delete mode 100644 c_glib/test/test-feather-file-writer.rb
 delete mode 100644 cpp/src/arrow/ipc/feather_internal.h
 rename r/man/{FeatherTableReader.Rd => FeatherReader.Rd} (64%)
 delete mode 100644 r/man/FeatherTableWriter.Rd