MCPcopy Create free account
hub / github.com/apache/arrow / _arrow_ExecPlan_ToString

Function _arrow_ExecPlan_ToString

r/src/arrowExports.cpp:1009–1014  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1007#if defined(ARROW_R_WITH_ACERO)
1008std::string ExecPlan_ToString(const std::shared_ptr<acero::ExecPlan>& plan);
1009extern "C" SEXP _arrow_ExecPlan_ToString(SEXP plan_sexp){
1010BEGIN_CPP11
1011 arrow::r::Input<const std::shared_ptr<acero::ExecPlan>&>::type plan(plan_sexp);
1012 return cpp11::as_sexp(ExecPlan_ToString(plan));
1013END_CPP11
1014}
1015#else
1016extern "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. ");

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
ExecPlan_ToStringFunction · 0.85

Tested by

no test coverage detected