| 930 | #if defined(ARROW_R_WITH_ACERO) |
| 931 | cpp11::list ExecPlanReader__batches(const std::shared_ptr<arrow::RecordBatchReader>& reader); |
| 932 | extern "C" SEXP _arrow_ExecPlanReader__batches(SEXP reader_sexp){ |
| 933 | BEGIN_CPP11 |
| 934 | arrow::r::Input<const std::shared_ptr<arrow::RecordBatchReader>&>::type reader(reader_sexp); |
| 935 | return cpp11::as_sexp(ExecPlanReader__batches(reader)); |
| 936 | END_CPP11 |
| 937 | } |
| 938 | #else |
| 939 | extern "C" SEXP _arrow_ExecPlanReader__batches(SEXP reader_sexp){ |
| 940 | Rf_error("Cannot call ExecPlanReader__batches(). See https://arrow.apache.org/docs/r/articles/install.html for help installing Arrow C++ libraries. "); |
nothing calls this directly
no test coverage detected