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

Function _arrow_ExecNode_Union

r/src/arrowExports.cpp:1193–1199  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1191#if defined(ARROW_R_WITH_ACERO)
1192std::shared_ptr<acero::ExecNode> ExecNode_Union(const std::shared_ptr<acero::ExecNode>& input, const std::shared_ptr<acero::ExecNode>& right_data);
1193extern "C" SEXP _arrow_ExecNode_Union(SEXP input_sexp, SEXP right_data_sexp){
1194BEGIN_CPP11
1195 arrow::r::Input<const std::shared_ptr<acero::ExecNode>&>::type input(input_sexp);
1196 arrow::r::Input<const std::shared_ptr<acero::ExecNode>&>::type right_data(right_data_sexp);
1197 return cpp11::as_sexp(ExecNode_Union(input, right_data));
1198END_CPP11
1199}
1200#else
1201extern "C" SEXP _arrow_ExecNode_Union(SEXP input_sexp, SEXP right_data_sexp){
1202 Rf_error("Cannot call ExecNode_Union(). 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
ExecNode_UnionFunction · 0.85

Tested by

no test coverage detected