djKooks edited a comment on issue #47: URL: https://github.com/apache/arrow-datafusion/issues/47#issuecomment-846565698
@andygrove currently `collect` is collecting `SendableRecordBatchStream` to Vector inside function before returning. ``` let it: SendableRecordBatchStream = plan.execute(0).await?; common::collect(it).await ``` Are you intend to make this not collecting before return? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
