| 93 | } |
| 94 | |
| 95 | arrow::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 | |
| 102 | arrow::Status WriteFullFile(std::string path_to_file) { |
| 103 | // #include "parquet/arrow/writer.h" |
no test coverage detected