You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by np...@apache.org on 2020/01/16 21:24:27 UTC

[arrow] branch master updated (48dfa50 -> 8b09ecc)

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

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


    from 48dfa50  ARROW-7472: [Java] Fix some incorrect behavior in UnionListWriter
     add 8b09ecc  ARROW-7498: [Dataset] Rename core classes before stable API

No new revisions were added by this update.

Summary of changes:
 cpp/examples/arrow/dataset-parquet-scan-example.cc |  18 +-
 cpp/src/arrow/dataset/dataset.cc                   |  23 +-
 cpp/src/arrow/dataset/dataset.h                    |  90 ++---
 cpp/src/arrow/dataset/dataset_internal.h           |  18 +-
 cpp/src/arrow/dataset/dataset_test.cc              | 154 ++++-----
 cpp/src/arrow/dataset/discovery.cc                 |  61 ++--
 cpp/src/arrow/dataset/discovery.h                  | 109 +++---
 cpp/src/arrow/dataset/discovery_test.cc            | 124 ++++---
 cpp/src/arrow/dataset/disk_store.h                 |  56 ---
 cpp/src/arrow/dataset/file_base.cc                 |  34 +-
 cpp/src/arrow/dataset/file_base.h                  |  82 ++---
 cpp/src/arrow/dataset/file_ipc.cc                  |   2 +-
 cpp/src/arrow/dataset/file_ipc.h                   |  16 +-
 cpp/src/arrow/dataset/file_parquet.cc              |   2 +-
 cpp/src/arrow/dataset/file_parquet.h               |  16 +-
 cpp/src/arrow/dataset/file_parquet_test.cc         |   4 +-
 cpp/src/arrow/dataset/file_test.cc                 |   8 +-
 cpp/src/arrow/dataset/partition.cc                 |  45 ++-
 cpp/src/arrow/dataset/partition.h                  | 117 +++----
 cpp/src/arrow/dataset/partition_test.cc            |  68 ++--
 cpp/src/arrow/dataset/scanner.cc                   |  20 +-
 cpp/src/arrow/dataset/scanner.h                    |  26 +-
 cpp/src/arrow/dataset/scanner_test.cc              |  12 +-
 cpp/src/arrow/dataset/test_util.h                  |  40 +--
 cpp/src/arrow/dataset/transaction.h                |  25 --
 cpp/src/arrow/dataset/type_fwd.h                   |  25 +-
 cpp/src/arrow/dataset/writer.h                     |  36 --
 python/pyarrow/_dataset.pyx                        | 382 ++++++++++-----------
 python/pyarrow/dataset.py                          |  20 +-
 python/pyarrow/includes/libarrow_dataset.pxd       | 144 ++++----
 python/pyarrow/tests/test_dataset.py               |  99 +++---
 r/NAMESPACE                                        |  14 +-
 r/R/arrowExports.R                                 |  44 +--
 r/R/dataset.R                                      | 203 ++++++-----
 r/README.md                                        | 135 ++------
 r/man/DataSource.Rd                                |  52 ---
 r/man/Dataset.Rd                                   |   4 +-
 r/man/{PartitionScheme.Rd => Partitioning.Rd}      |  20 +-
 r/man/Scanner.Rd                                   |   2 +-
 r/man/Source.Rd                                    |  51 +++
 r/man/hive_partition.Rd                            |   6 +-
 r/man/open_dataset.Rd                              |  12 +-
 r/man/{data_source.Rd => open_source.Rd}           |  20 +-
 r/src/arrowExports.cpp                             | 148 ++++----
 r/src/dataset.cpp                                  |  72 ++--
 r/tests/testthat/test-dataset.R                    |  44 +--
 46 files changed, 1228 insertions(+), 1475 deletions(-)
 delete mode 100644 cpp/src/arrow/dataset/disk_store.h
 delete mode 100644 cpp/src/arrow/dataset/transaction.h
 delete mode 100644 cpp/src/arrow/dataset/writer.h
 delete mode 100644 r/man/DataSource.Rd
 rename r/man/{PartitionScheme.Rd => Partitioning.Rd} (56%)
 create mode 100644 r/man/Source.Rd
 rename r/man/{data_source.Rd => open_source.Rd} (79%)