(&self)
| 178 | |
| 179 | impl StreamProvider for FileStreamProvider { |
| 180 | fn schema(&self) -> &SchemaRef { |
| 181 | &self.schema |
| 182 | } |
| 183 | |
| 184 | fn reader(&self) -> Result<Box<dyn RecordBatchReader>> { |
| 185 | let file = File::open(&self.location)?; |
no outgoing calls
no test coverage detected