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/07/06 19:30:16 UTC

[arrow] branch master updated (780e95c -> f247e3ab)

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 780e95c  ARROW-13246: [C++] Using CSV skip_rows_after_names can cause data to be discarded prematurely
     add f247e3ab ARROW-12891: [C++] Move subtree pruning to compute

No new revisions were added by this update.

Summary of changes:
 cpp/src/arrow/compute/exec/CMakeLists.txt          |   7 +-
 .../{dataset => compute/exec}/forest_internal.h    |  11 +-
 cpp/src/arrow/compute/exec/subtree_internal.h      | 178 ++++++++++
 cpp/src/arrow/compute/exec/subtree_test.cc         | 377 +++++++++++++++++++++
 cpp/src/arrow/dataset/dataset_internal.h           | 117 -------
 cpp/src/arrow/dataset/file_base.cc                 |  46 +--
 cpp/src/arrow/dataset/file_test.cc                 | 290 ----------------
 7 files changed, 581 insertions(+), 445 deletions(-)
 rename cpp/src/arrow/{dataset => compute/exec}/forest_internal.h (96%)
 create mode 100644 cpp/src/arrow/compute/exec/subtree_internal.h
 create mode 100644 cpp/src/arrow/compute/exec/subtree_test.cc