Specify the record batches that should be returned from each file that is successfully scanned
(mut self, records: Vec<RecordBatch>)
| 285 | /// Specify the record batches that should be returned from each |
| 286 | /// file that is successfully scanned |
| 287 | pub fn with_records(mut self, records: Vec<RecordBatch>) -> Self { |
| 288 | self.opener.records = records; |
| 289 | self |
| 290 | } |
| 291 | |
| 292 | /// Collect the results of the `FileStream` |
| 293 | pub async fn result(self) -> Result<Vec<RecordBatch>> { |
no outgoing calls
no test coverage detected