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

Function _arrow_ExecPlan_run

r/src/arrowExports.cpp:992–999  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

990#if defined(ARROW_R_WITH_ACERO)
991std::shared_ptr<ExecPlanReader> ExecPlan_run(const std::shared_ptr<acero::ExecPlan>& plan, const std::shared_ptr<acero::ExecNode>& final_node, cpp11::strings metadata);
992extern "C" SEXP _arrow_ExecPlan_run(SEXP plan_sexp, SEXP final_node_sexp, SEXP metadata_sexp){
993BEGIN_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));
998END_CPP11
999}
1000#else
1001extern "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. ");

Callers

nothing calls this directly

Calls 2

as_sexpFunction · 0.85
ExecPlan_runFunction · 0.85

Tested by

no test coverage detected