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

Function GetRBR

cpp/examples/arrow/parquet_read_write.cc:95–100  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

93}
94
95arrow::Result<std::shared_ptr<arrow::TableBatchReader>> GetRBR() {
96 ARROW_ASSIGN_OR_RAISE(std::shared_ptr<arrow::Table> table, GetTable());
97 auto reader = std::make_shared<arrow::TableBatchReader>(table);
98 reader->set_chunksize(10);
99 return reader;
100}
101
102arrow::Status WriteFullFile(std::string path_to_file) {
103 // #include "parquet/arrow/writer.h"

Callers 1

WriteInBatchesFunction · 0.85

Calls 3

set_chunksizeMethod · 0.80
ARROW_ASSIGN_OR_RAISEFunction · 0.70
GetTableFunction · 0.70

Tested by

no test coverage detected