tustvold commented on PR #3399:
URL: https://github.com/apache/arrow-rs/pull/3399#issuecomment-1368495662

   Hmm... I'm not sure about this, what is the reason to prefer a callback over 
just yielding errors through the iterator trait?
   
   I.e. Iterator::next might return
   
   ```
   Some(Ok(batch1))
   Some(Ok(batch2))
   Some(Err(e))
   Some(Ok(batch3_skipping_error))
   Some(Ok(batch4))
   None
   ```


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to