This is an automated email from the ASF dual-hosted git repository.
icexelloss pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
from 682c112cc3 GH-34605: [C++] Don't use std::move when passing shared_ptr
to named table … (#34606)
add 8524572253 GH-34630: [C++] Second block of refactoring to move acero
out of libarrow (#34575)
No new revisions were added by this update.
Summary of changes:
c_glib/arrow-glib/compute.hpp | 1 +
c_glib/arrow-glib/expression.hpp | 2 +-
cpp/examples/arrow/compute_register_example.cc | 2 +-
.../arrow/dataset_documentation_example.cc | 2 +-
cpp/examples/arrow/dataset_parquet_scan_example.cc | 2 +-
cpp/examples/arrow/dataset_skyhook_scan_example.cc | 2 +-
cpp/examples/arrow/join_example.cc | 2 +-
cpp/src/arrow/CMakeLists.txt | 2 +-
cpp/src/arrow/compute/CMakeLists.txt | 3 +-
cpp/src/arrow/compute/api.h | 14 +-
cpp/src/arrow/compute/exec.h | 2 +-
cpp/src/arrow/compute/exec/CMakeLists.txt | 8 +-
cpp/src/arrow/compute/exec/exec_plan.cc | 2 +-
cpp/src/arrow/compute/exec/exec_plan.h | 2 +-
cpp/src/arrow/compute/exec/expression_benchmark.cc | 2 +-
cpp/src/arrow/compute/exec/fetch_node.cc | 2 +-
cpp/src/arrow/compute/exec/filter_benchmark.cc | 2 +-
cpp/src/arrow/compute/exec/filter_node.cc | 2 +-
.../arrow/compute/exec/light_array_exec_test.cc | 172 ---------------------
cpp/src/arrow/compute/exec/map_node.cc | 2 +-
cpp/src/arrow/compute/exec/options.h | 3 +-
cpp/src/arrow/compute/exec/plan_test.cc | 35 +++--
cpp/src/arrow/compute/exec/project_benchmark.cc | 2 +-
cpp/src/arrow/compute/exec/project_node.cc | 2 +-
cpp/src/arrow/compute/exec/sink_node.cc | 2 +-
cpp/src/arrow/compute/exec/source_node.cc | 2 +-
cpp/src/arrow/compute/exec/subtree_internal.h | 2 +-
cpp/src/arrow/compute/exec/tpch_node.h | 2 +-
.../{row/grouper_internal.h => exec/type_fwd.h} | 13 +-
cpp/src/arrow/compute/exec/util.h | 51 +-----
cpp/src/arrow/compute/{exec => }/expression.cc | 6 +-
cpp/src/arrow/compute/{exec => }/expression.h | 0
.../arrow/compute/{exec => }/expression_internal.h | 2 +-
.../arrow/compute/{exec => }/expression_test.cc | 4 +-
cpp/src/arrow/compute/light_array_test.cc | 152 ++++++++++++++++++
cpp/src/arrow/compute/type_fwd.h | 9 --
cpp/src/arrow/compute/util.h | 52 +++++++
cpp/src/arrow/dataset/api.h | 2 +-
cpp/src/arrow/dataset/dataset.h | 2 +-
cpp/src/arrow/dataset/file_benchmark.cc | 2 +-
cpp/src/arrow/dataset/file_json.cc | 2 +-
cpp/src/arrow/dataset/partition.cc | 2 +-
cpp/src/arrow/dataset/partition.h | 2 +-
cpp/src/arrow/dataset/scan_node.cc | 4 +-
cpp/src/arrow/dataset/scanner.h | 2 +-
cpp/src/arrow/dataset/scanner_test.cc | 2 +-
cpp/src/arrow/dataset/test_util_internal.h | 2 +-
.../arrow/engine/substrait/expression_internal.cc | 4 +-
cpp/src/arrow/engine/substrait/extension_set.h | 2 +-
.../arrow/engine/substrait/relation_internal.cc | 2 +-
cpp/src/arrow/engine/substrait/serde.cc | 2 +-
cpp/src/arrow/engine/substrait/serde_test.cc | 4 +-
cpp/src/arrow/testing/generator.cc | 17 --
cpp/src/arrow/testing/generator.h | 5 -
cpp/src/skyhook/client/file_skyhook.cc | 2 +-
cpp/src/skyhook/cls/cls_skyhook.cc | 2 +-
cpp/src/skyhook/cls/cls_skyhook_test.cc | 2 +-
cpp/src/skyhook/protocol/skyhook_protocol.h | 2 +-
cpp/src/skyhook/protocol/skyhook_protocol_test.cc | 2 +-
python/pyarrow/includes/libarrow.pxd | 2 +-
r/src/compute-exec.cpp | 2 +-
r/src/expression.cpp | 2 +-
62 files changed, 303 insertions(+), 338 deletions(-)
delete mode 100644 cpp/src/arrow/compute/exec/light_array_exec_test.cc
copy cpp/src/arrow/compute/{row/grouper_internal.h => exec/type_fwd.h} (81%)
rename cpp/src/arrow/compute/{exec => }/expression.cc (99%)
rename cpp/src/arrow/compute/{exec => }/expression.h (100%)
rename cpp/src/arrow/compute/{exec => }/expression_internal.h (99%)
rename cpp/src/arrow/compute/{exec => }/expression_test.cc (99%)