caldempsey commented on code in PR #152: URL: https://github.com/apache/spark-connect-go/pull/152#discussion_r2320212070
########## spark/client/client.go: ########## @@ -434,6 +443,151 @@ func (c *ExecutePlanClient) ToTable() (*types.StructType, arrow.Table, error) { } } +func (c *ExecutePlanClient) ToRecordBatches(ctx context.Context) (<-chan arrow.Record, <-chan error, *types.StructType) { + recordChan := make(chan arrow.Record, 10) + errorChan := make(chan error, 1) + + go func() { + defer func() { + // Ensure channels are always closed to prevent goroutine leaks + close(recordChan) + close(errorChan) + }() + + // Explicitly needed when tracking re-attachable execution. + c.done = false Review Comment: I'm not exactly sure how this is _supposed_ to be implemented, any similar code or resources you can point out before I run over this again? -- 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. To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org