| 990 | #if defined(ARROW_R_WITH_ACERO) |
| 991 | std::shared_ptr<ExecPlanReader> ExecPlan_run(const std::shared_ptr<acero::ExecPlan>& plan, const std::shared_ptr<acero::ExecNode>& final_node, cpp11::strings metadata); |
| 992 | extern "C" SEXP _arrow_ExecPlan_run(SEXP plan_sexp, SEXP final_node_sexp, SEXP metadata_sexp){ |
| 993 | BEGIN_CPP11 |
| 994 | arrow::r::Input<const std::shared_ptr<acero::ExecPlan>&>::type plan(plan_sexp); |
| 995 | arrow::r::Input<const std::shared_ptr<acero::ExecNode>&>::type final_node(final_node_sexp); |
| 996 | arrow::r::Input<cpp11::strings>::type metadata(metadata_sexp); |
| 997 | return cpp11::as_sexp(ExecPlan_run(plan, final_node, metadata)); |
| 998 | END_CPP11 |
| 999 | } |
| 1000 | #else |
| 1001 | extern "C" SEXP _arrow_ExecPlan_run(SEXP plan_sexp, SEXP final_node_sexp, SEXP metadata_sexp){ |
| 1002 | Rf_error("Cannot call ExecPlan_run(). See https://arrow.apache.org/docs/r/articles/install.html for help installing Arrow C++ libraries. "); |
nothing calls this directly
no test coverage detected