| 1207 | #if defined(ARROW_R_WITH_ACERO) |
| 1208 | std::shared_ptr<acero::ExecNode> ExecNode_Fetch(const std::shared_ptr<acero::ExecNode>& input, int64_t offset, int64_t limit); |
| 1209 | extern "C" SEXP _arrow_ExecNode_Fetch(SEXP input_sexp, SEXP offset_sexp, SEXP limit_sexp){ |
| 1210 | BEGIN_CPP11 |
| 1211 | arrow::r::Input<const std::shared_ptr<acero::ExecNode>&>::type input(input_sexp); |
| 1212 | arrow::r::Input<int64_t>::type offset(offset_sexp); |
| 1213 | arrow::r::Input<int64_t>::type limit(limit_sexp); |
| 1214 | return cpp11::as_sexp(ExecNode_Fetch(input, offset, limit)); |
| 1215 | END_CPP11 |
| 1216 | } |
| 1217 | #else |
| 1218 | extern "C" SEXP _arrow_ExecNode_Fetch(SEXP input_sexp, SEXP offset_sexp, SEXP limit_sexp){ |
| 1219 | Rf_error("Cannot call ExecNode_Fetch(). See https://arrow.apache.org/docs/r/articles/install.html for help installing Arrow C++ libraries. "); |
nothing calls this directly
no test coverage detected