| 1565 | #if defined(ARROW_R_WITH_DATASET) |
| 1566 | std::shared_ptr<arrow::Schema> dataset___Dataset__schema(const std::shared_ptr<ds::Dataset>& dataset); |
| 1567 | extern "C" SEXP _arrow_dataset___Dataset__schema(SEXP dataset_sexp){ |
| 1568 | BEGIN_CPP11 |
| 1569 | arrow::r::Input<const std::shared_ptr<ds::Dataset>&>::type dataset(dataset_sexp); |
| 1570 | return cpp11::as_sexp(dataset___Dataset__schema(dataset)); |
| 1571 | END_CPP11 |
| 1572 | } |
| 1573 | #else |
| 1574 | extern "C" SEXP _arrow_dataset___Dataset__schema(SEXP dataset_sexp){ |
| 1575 | Rf_error("Cannot call dataset___Dataset__schema(). See https://arrow.apache.org/docs/r/articles/install.html for help installing Arrow C++ libraries. "); |
nothing calls this directly
no test coverage detected