caldempsey commented on code in PR #152: URL: https://github.com/apache/spark-connect-go/pull/152#discussion_r2319808497
########## 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) Review Comment: this is outdated now, we use seq2 for pulls which simplifies a bit -- 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