You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2021/05/23 13:45:48 UTC

[GitHub] [arrow-datafusion] djKooks edited a comment on issue #47: DataFrame.collect() should return async stream rather than a Vec

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:
users@infra.apache.org