MCPcopy Create free account
hub / github.com/apache/arrow / _arrow_csv___WriteCSV__RecordBatchReader

Function _arrow_csv___WriteCSV__RecordBatchReader

r/src/arrowExports.cpp:1549–1557  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1547// csv.cpp
1548void csv___WriteCSV__RecordBatchReader(const std::shared_ptr<arrow::RecordBatchReader>& reader, const std::shared_ptr<arrow::csv::WriteOptions>& write_options, const std::shared_ptr<arrow::io::OutputStream>& stream);
1549extern "C" SEXP _arrow_csv___WriteCSV__RecordBatchReader(SEXP reader_sexp, SEXP write_options_sexp, SEXP stream_sexp){
1550BEGIN_CPP11
1551 arrow::r::Input<const std::shared_ptr<arrow::RecordBatchReader>&>::type reader(reader_sexp);
1552 arrow::r::Input<const std::shared_ptr<arrow::csv::WriteOptions>&>::type write_options(write_options_sexp);
1553 arrow::r::Input<const std::shared_ptr<arrow::io::OutputStream>&>::type stream(stream_sexp);
1554 csv___WriteCSV__RecordBatchReader(reader, write_options, stream);
1555 return R_NilValue;
1556END_CPP11
1557}
1558// dataset.cpp
1559#if defined(ARROW_R_WITH_DATASET)
1560std::shared_ptr<ds::ScannerBuilder> dataset___Dataset__NewScan(const std::shared_ptr<ds::Dataset>& ds);

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected