| 945 | #if defined(ARROW_R_WITH_ACERO) |
| 946 | std::shared_ptr<arrow::Table> Table__from_ExecPlanReader(const std::shared_ptr<arrow::RecordBatchReader>& reader); |
| 947 | extern "C" SEXP _arrow_Table__from_ExecPlanReader(SEXP reader_sexp){ |
| 948 | BEGIN_CPP11 |
| 949 | arrow::r::Input<const std::shared_ptr<arrow::RecordBatchReader>&>::type reader(reader_sexp); |
| 950 | return cpp11::as_sexp(Table__from_ExecPlanReader(reader)); |
| 951 | END_CPP11 |
| 952 | } |
| 953 | #else |
| 954 | extern "C" SEXP _arrow_Table__from_ExecPlanReader(SEXP reader_sexp){ |
| 955 | Rf_error("Cannot call Table__from_ExecPlanReader(). See https://arrow.apache.org/docs/r/articles/install.html for help installing Arrow C++ libraries. "); |
nothing calls this directly
no test coverage detected