| 150 | } |
| 151 | |
| 152 | Result<std::shared_ptr<Schema>> OrcFileFormat::Inspect(const FileSource& source) const { |
| 153 | ARROW_ASSIGN_OR_RAISE(auto reader, OpenORCReader(source)); |
| 154 | return reader->ReadSchema(); |
| 155 | } |
| 156 | |
| 157 | Result<RecordBatchGenerator> OrcFileFormat::ScanBatchesAsync( |
| 158 | const std::shared_ptr<ScanOptions>& options, |