vrozov commented on issue #272: Refactor AvroIterable and prevent multiple 
iterators
URL: https://github.com/apache/incubator-iceberg/pull/272#issuecomment-511160290
 
 
   It will mitigate such possibility, but will not eliminate it completely. For 
example, it won't work in case of 
   ``` java
   try (AvroIterable records = Avro.read(...).build()) {
     for (R record1 : records) {
       for (R record2 : records) {
         ...
       }
     }
   ```
   

----------------------------------------------------------------
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]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to