| 4784 | // recordbatch.cpp |
| 4785 | std::shared_ptr<arrow::RecordBatch> RecordBatch__RenameColumns(const std::shared_ptr<arrow::RecordBatch>& batch, const std::vector<std::string>& names); |
| 4786 | extern "C" SEXP _arrow_RecordBatch__RenameColumns(SEXP batch_sexp, SEXP names_sexp){ |
| 4787 | BEGIN_CPP11 |
| 4788 | arrow::r::Input<const std::shared_ptr<arrow::RecordBatch>&>::type batch(batch_sexp); |
| 4789 | arrow::r::Input<const std::vector<std::string>&>::type names(names_sexp); |
| 4790 | return cpp11::as_sexp(RecordBatch__RenameColumns(batch, names)); |
| 4791 | END_CPP11 |
| 4792 | } |
| 4793 | // recordbatch.cpp |
| 4794 | std::shared_ptr<arrow::RecordBatch> RecordBatch__ReplaceSchemaMetadata(const std::shared_ptr<arrow::RecordBatch>& x, cpp11::strings metadata); |
| 4795 | extern "C" SEXP _arrow_RecordBatch__ReplaceSchemaMetadata(SEXP x_sexp, SEXP metadata_sexp){ |
nothing calls this directly
no test coverage detected