You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by bk...@apache.org on 2021/03/16 13:22:29 UTC

[arrow] branch master updated (1b7e396 -> 6789465)

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

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


    from 1b7e396  ARROW-11970: [C++][CI] Fix Valgrind error in arrow-csv-test
     add 6789465  ARROW-9749: [C++][GLib][Python][R][Ruby][Dataset] Introduce FragmentScanOptions, consolidate ScanContext/ScanOptions

No new revisions were added by this update.

Summary of changes:
 c_glib/arrow-dataset-glib/scanner.cpp              | 221 ++-------------------
 c_glib/arrow-dataset-glib/scanner.h                |  19 --
 c_glib/arrow-dataset-glib/scanner.hpp              |   6 -
 c_glib/test/dataset/test-in-memory-scan-task.rb    |   7 -
 c_glib/test/dataset/test-scan-context.rb           |  33 ---
 c_glib/test/dataset/test-scan-options.rb           |  10 +
 cpp/src/arrow/dataset/dataset.cc                   |  13 +-
 cpp/src/arrow/dataset/dataset.h                    |  21 +-
 cpp/src/arrow/dataset/file_base.cc                 |  17 +-
 cpp/src/arrow/dataset/file_base.h                  |   5 +-
 cpp/src/arrow/dataset/file_csv.cc                  |  16 +-
 cpp/src/arrow/dataset/file_csv.h                   |  14 +-
 cpp/src/arrow/dataset/file_csv_test.cc             |  30 ++-
 cpp/src/arrow/dataset/file_ipc.cc                  |  24 +--
 cpp/src/arrow/dataset/file_ipc.h                   |   2 +-
 cpp/src/arrow/dataset/file_ipc_test.cc             |   5 +-
 cpp/src/arrow/dataset/file_parquet.cc              |  16 +-
 cpp/src/arrow/dataset/file_parquet.h               |   6 +-
 cpp/src/arrow/dataset/file_parquet_test.cc         |   9 +-
 cpp/src/arrow/dataset/scanner.cc                   |  52 ++---
 cpp/src/arrow/dataset/scanner.h                    |  69 +++----
 cpp/src/arrow/dataset/scanner_internal.h           |  14 +-
 cpp/src/arrow/dataset/scanner_test.cc              |  14 +-
 cpp/src/arrow/dataset/test_util.h                  |  15 +-
 cpp/src/arrow/dataset/type_fwd.h                   |   1 -
 cpp/src/jni/dataset/jni_wrapper.cc                 |   6 +-
 python/pyarrow/_dataset.pyx                        |  39 ++--
 python/pyarrow/includes/libarrow_dataset.pxd       |  20 +-
 r/src/dataset.cpp                                  |   6 +-
 .../lib/arrow-dataset/in-memory-scan-task.rb       |   3 +-
 30 files changed, 238 insertions(+), 475 deletions(-)
 delete mode 100644 c_glib/test/dataset/test-scan-context.rb