| 1191 | #if defined(ARROW_R_WITH_ACERO) |
| 1192 | std::shared_ptr<acero::ExecNode> ExecNode_Union(const std::shared_ptr<acero::ExecNode>& input, const std::shared_ptr<acero::ExecNode>& right_data); |
| 1193 | extern "C" SEXP _arrow_ExecNode_Union(SEXP input_sexp, SEXP right_data_sexp){ |
| 1194 | BEGIN_CPP11 |
| 1195 | arrow::r::Input<const std::shared_ptr<acero::ExecNode>&>::type input(input_sexp); |
| 1196 | arrow::r::Input<const std::shared_ptr<acero::ExecNode>&>::type right_data(right_data_sexp); |
| 1197 | return cpp11::as_sexp(ExecNode_Union(input, right_data)); |
| 1198 | END_CPP11 |
| 1199 | } |
| 1200 | #else |
| 1201 | extern "C" SEXP _arrow_ExecNode_Union(SEXP input_sexp, SEXP right_data_sexp){ |
| 1202 | Rf_error("Cannot call ExecNode_Union(). See https://arrow.apache.org/docs/r/articles/install.html for help installing Arrow C++ libraries. "); |
nothing calls this directly
no test coverage detected