| 1007 | #if defined(ARROW_R_WITH_ACERO) |
| 1008 | std::string ExecPlan_ToString(const std::shared_ptr<acero::ExecPlan>& plan); |
| 1009 | extern "C" SEXP _arrow_ExecPlan_ToString(SEXP plan_sexp){ |
| 1010 | BEGIN_CPP11 |
| 1011 | arrow::r::Input<const std::shared_ptr<acero::ExecPlan>&>::type plan(plan_sexp); |
| 1012 | return cpp11::as_sexp(ExecPlan_ToString(plan)); |
| 1013 | END_CPP11 |
| 1014 | } |
| 1015 | #else |
| 1016 | extern "C" SEXP _arrow_ExecPlan_ToString(SEXP plan_sexp){ |
| 1017 | Rf_error("Cannot call ExecPlan_ToString(). See https://arrow.apache.org/docs/r/articles/install.html for help installing Arrow C++ libraries. "); |
nothing calls this directly
no test coverage detected