| 1422 | } |
| 1423 | |
| 1424 | Status FileReader::Make(::arrow::MemoryPool* pool, |
| 1425 | std::unique_ptr<ParquetFileReader> reader, |
| 1426 | const ArrowReaderProperties& properties, |
| 1427 | std::unique_ptr<FileReader>* out) { |
| 1428 | ARROW_ASSIGN_OR_RAISE(*out, Make(pool, std::move(reader), properties)); |
| 1429 | return Status::OK(); |
| 1430 | } |
| 1431 | |
| 1432 | Status FileReader::Make(::arrow::MemoryPool* pool, |
| 1433 | std::unique_ptr<ParquetFileReader> reader, |
nothing calls this directly
no test coverage detected