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 2019/12/20 15:07:25 UTC

[arrow] branch master updated (bef7418 -> 8bd27fe)

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 bef7418  ARROW-7447: [Java] ComplexCopier does incorrect copy in some cases
     add 8bd27fe  ARROW-7439: [C++][Dataset] Remove pointer aliases

No new revisions were added by this update.

Summary of changes:
 cpp/examples/arrow/dataset-parquet-scan-example.cc |   2 +-
 cpp/src/arrow/dataset/dataset.cc                   |  35 +-
 cpp/src/arrow/dataset/dataset.h                    |  47 +-
 cpp/src/arrow/dataset/dataset_internal.h           |   4 +-
 cpp/src/arrow/dataset/dataset_test.cc              |   2 +-
 cpp/src/arrow/dataset/discovery.cc                 |  27 +-
 cpp/src/arrow/dataset/discovery.h                  |  45 +-
 cpp/src/arrow/dataset/discovery_test.cc            |  12 +-
 cpp/src/arrow/dataset/file_base.cc                 |  42 +-
 cpp/src/arrow/dataset/file_base.h                  |  54 +-
 cpp/src/arrow/dataset/file_parquet.cc              |  40 +-
 cpp/src/arrow/dataset/file_parquet.h               |  13 +-
 cpp/src/arrow/dataset/file_parquet_test.cc         |   4 +-
 cpp/src/arrow/dataset/filter.cc                    |  89 +--
 cpp/src/arrow/dataset/filter.h                     |  91 +--
 cpp/src/arrow/dataset/filter_test.cc               |  16 +-
 cpp/src/arrow/dataset/partition.cc                 |  33 +-
 cpp/src/arrow/dataset/partition.h                  |  38 +-
 cpp/src/arrow/dataset/partition_test.cc            |  15 +-
 cpp/src/arrow/dataset/scanner.cc                   |  22 +-
 cpp/src/arrow/dataset/scanner.h                    |  44 +-
 cpp/src/arrow/dataset/scanner_internal.h           |   4 +-
 cpp/src/arrow/dataset/scanner_test.cc              |   4 +-
 cpp/src/arrow/dataset/test_util.h                  |  50 +-
 cpp/src/arrow/dataset/type_fwd.h                   |  26 +-
 python/pyarrow/_dataset.pyx                        |   2 +-
 python/pyarrow/includes/libarrow_dataset.pxd       | 145 ++--
 r/src/arrowExports.cpp                             | 820 ++++++++++-----------
 r/src/dataset.cpp                                  |  42 +-
 r/src/expression.cpp                               |  42 +-
 30 files changed, 925 insertions(+), 885 deletions(-)