| 975 | #if defined(ARROW_R_WITH_ACERO) |
| 976 | std::string ExecPlanReader__PlanStatus(const std::shared_ptr<ExecPlanReader>& reader); |
| 977 | extern "C" SEXP _arrow_ExecPlanReader__PlanStatus(SEXP reader_sexp){ |
| 978 | BEGIN_CPP11 |
| 979 | arrow::r::Input<const std::shared_ptr<ExecPlanReader>&>::type reader(reader_sexp); |
| 980 | return cpp11::as_sexp(ExecPlanReader__PlanStatus(reader)); |
| 981 | END_CPP11 |
| 982 | } |
| 983 | #else |
| 984 | extern "C" SEXP _arrow_ExecPlanReader__PlanStatus(SEXP reader_sexp){ |
| 985 | Rf_error("Cannot call ExecPlanReader__PlanStatus(). See https://arrow.apache.org/docs/r/articles/install.html for help installing Arrow C++ libraries. "); |
nothing calls this directly
no test coverage detected