| 960 | #if defined(ARROW_R_WITH_ACERO) |
| 961 | std::shared_ptr<acero::ExecPlan> ExecPlanReader__Plan(const std::shared_ptr<ExecPlanReader>& reader); |
| 962 | extern "C" SEXP _arrow_ExecPlanReader__Plan(SEXP reader_sexp){ |
| 963 | BEGIN_CPP11 |
| 964 | arrow::r::Input<const std::shared_ptr<ExecPlanReader>&>::type reader(reader_sexp); |
| 965 | return cpp11::as_sexp(ExecPlanReader__Plan(reader)); |
| 966 | END_CPP11 |
| 967 | } |
| 968 | #else |
| 969 | extern "C" SEXP _arrow_ExecPlanReader__Plan(SEXP reader_sexp){ |
| 970 | Rf_error("Cannot call ExecPlanReader__Plan(). See https://arrow.apache.org/docs/r/articles/install.html for help installing Arrow C++ libraries. "); |
nothing calls this directly
no test coverage detected