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

Function _arrow_ExecPlan_create

r/src/arrowExports.cpp:917–922  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

915#if defined(ARROW_R_WITH_ACERO)
916std::shared_ptr<acero::ExecPlan> ExecPlan_create(bool use_threads);
917extern "C" SEXP _arrow_ExecPlan_create(SEXP use_threads_sexp){
918BEGIN_CPP11
919 arrow::r::Input<bool>::type use_threads(use_threads_sexp);
920 return cpp11::as_sexp(ExecPlan_create(use_threads));
921END_CPP11
922}
923#else
924extern "C" SEXP _arrow_ExecPlan_create(SEXP use_threads_sexp){
925 Rf_error("Cannot call ExecPlan_create(). 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_createFunction · 0.85

Tested by

no test coverage detected