| 1373 | } |
| 1374 | |
| 1375 | Status FileReader::Make(::arrow::MemoryPool* pool, |
| 1376 | std::unique_ptr<ParquetFileReader> reader, |
| 1377 | const ArrowReaderProperties& properties, |
| 1378 | std::unique_ptr<FileReader>* out) { |
| 1379 | ARROW_ASSIGN_OR_RAISE(*out, Make(pool, std::move(reader), properties)); |
| 1380 | return Status::OK(); |
| 1381 | } |
| 1382 | |
| 1383 | Status FileReader::Make(::arrow::MemoryPool* pool, |
| 1384 | std::unique_ptr<ParquetFileReader> reader, |
nothing calls this directly
no test coverage detected