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 2020/02/27 15:09:16 UTC

[arrow] branch master updated (b77cd0b -> 3d81e4e)

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 b77cd0b  ARROW-7949: [Git] Ignore macOS specific file: 'Brewfile.lock.json'
     add 3d81e4e  ARROW-7886: [C++][Dataset][Python][R] Consolidate Source and Dataset classes

No new revisions were added by this update.

Summary of changes:
 cpp/examples/arrow/dataset-parquet-scan-example.cc |  12 +-
 cpp/src/arrow/dataset/dataset.cc                   |  42 +-
 cpp/src/arrow/dataset/dataset.h                    |  87 +-
 cpp/src/arrow/dataset/dataset_internal.h           |  18 +-
 cpp/src/arrow/dataset/dataset_test.cc              | 103 ++-
 cpp/src/arrow/dataset/discovery.cc                 |  63 +-
 cpp/src/arrow/dataset/discovery.h                  |  80 +-
 cpp/src/arrow/dataset/discovery_test.cc            |  71 +-
 cpp/src/arrow/dataset/file_base.cc                 |  30 +-
 cpp/src/arrow/dataset/file_base.h                  |  72 +-
 cpp/src/arrow/dataset/file_test.cc                 |  20 +-
 cpp/src/arrow/dataset/scanner.cc                   |   8 +-
 cpp/src/arrow/dataset/scanner.h                    |   6 +-
 cpp/src/arrow/dataset/scanner_test.cc              |  31 +-
 cpp/src/arrow/dataset/test_util.h                  |  25 +-
 cpp/src/arrow/dataset/type_fwd.h                   |   7 +-
 python/pyarrow/_dataset.pyx                        | 928 +++++++++------------
 python/pyarrow/dataset.py                          |  82 +-
 python/pyarrow/includes/libarrow_dataset.pxd       |  95 +--
 python/pyarrow/tests/test_dataset.py               | 121 ++-
 r/NAMESPACE                                        |   7 +-
 r/R/arrowExports.R                                 |  84 +-
 r/R/dataset.R                                      | 276 +++---
 r/_pkgdown.yml                                     |   3 +-
 r/man/Dataset.Rd                                   |  38 +-
 r/man/FileFormat.Rd                                |   2 +-
 r/man/Partitioning.Rd                              |   8 +-
 r/man/Source.Rd                                    |  53 --
 r/man/open_dataset.Rd                              |   6 +-
 r/man/{open_source.Rd => open_dataset_factory.Rd}  |  28 +-
 r/src/arrowExports.cpp                             | 319 +++----
 r/src/dataset.cpp                                  | 179 ++--
 r/tests/testthat/test-dataset.R                    |  62 +-
 33 files changed, 1339 insertions(+), 1627 deletions(-)
 delete mode 100644 r/man/Source.Rd
 rename r/man/{open_source.Rd => open_dataset_factory.Rd} (68%)