You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ks...@apache.org on 2022/04/24 16:15:56 UTC

[arrow] branch master updated (0b06870cbe -> d21f8b1921)

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

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


    from 0b06870cbe MINOR: [C++] Use remove_if
     add d21f8b1921 ARROW-16158: [C++][R] Rename ARROW_ENGINE to ARROW_SUBSTRAIT

No new revisions were added by this update.

Summary of changes:
 ci/appveyor-cpp-build.bat                          |  2 +-
 ci/scripts/cpp_build.sh                            |  2 +-
 cpp/CMakeLists.txt                                 |  2 +-
 cpp/CMakePresets.json                              | 13 ++-
 cpp/cmake_modules/DefineOptions.cmake              |  2 +-
 cpp/cmake_modules/FindArrowEngine.cmake            | 88 ---------------------
 cpp/cmake_modules/FindArrowSubstrait.cmake         | 92 ++++++++++++++++++++++
 cpp/cmake_modules/ThirdpartyToolchain.cmake        | 10 +--
 cpp/examples/arrow/CMakeLists.txt                  |  4 +-
 cpp/src/arrow/CMakeLists.txt                       |  2 +-
 ...nfig.cmake.in => ArrowSubstraitConfig.cmake.in} | 10 +--
 cpp/src/arrow/engine/CMakeLists.txt                | 30 +++----
 .../{arrow-engine.pc.in => arrow-substrait.pc.in}  |  6 +-
 cpp/src/arrow/engine/{ => substrait}/api.h         |  0
 .../arrow/engine/substrait/expression_internal.h   |  2 +-
 cpp/src/arrow/engine/substrait/extension_set.h     |  2 +-
 cpp/src/arrow/engine/substrait/extension_types.h   |  2 +-
 cpp/src/arrow/engine/substrait/plan_internal.h     |  2 +-
 cpp/src/arrow/engine/substrait/relation_internal.h |  2 +-
 cpp/src/arrow/engine/substrait/serde.h             |  2 +-
 cpp/src/arrow/engine/substrait/type_internal.h     |  2 +-
 cpp/src/arrow/engine/{ => substrait}/visibility.h  |  2 +
 format/substrait/extension_types.yaml              |  5 --
 r/NAMESPACE                                        |  2 +-
 r/R/arrow-package.R                                |  8 +-
 r/R/arrowExports.R                                 |  8 +-
 r/R/query-engine.R                                 |  2 +-
 r/configure                                        | 10 +--
 r/configure.win                                    |  6 +-
 r/data-raw/codegen.R                               |  2 +-
 r/man/arrow_available.Rd                           |  4 +-
 r/src/arrowExports.cpp                             | 36 ++++-----
 r/src/compute-exec.cpp                             | 14 ++--
 r/tests/testthat/test-query-engine.R               |  6 +-
 34 files changed, 192 insertions(+), 190 deletions(-)
 delete mode 100644 cpp/cmake_modules/FindArrowEngine.cmake
 create mode 100644 cpp/cmake_modules/FindArrowSubstrait.cmake
 rename cpp/src/arrow/engine/{ArrowEngineConfig.cmake.in => ArrowSubstraitConfig.cmake.in} (75%)
 rename cpp/src/arrow/engine/{arrow-engine.pc.in => arrow-substrait.pc.in} (88%)
 copy cpp/src/arrow/engine/{ => substrait}/api.h (100%)
 rename cpp/src/arrow/engine/{ => substrait}/visibility.h (93%)