[ 
https://issues.apache.org/jira/browse/AVRO-1249?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13576349#comment-13576349
 ] 

Doug Cutting commented on AVRO-1249:
------------------------------------

Patch looks good.  We should add a test case.

I don't think this level of incompatibility (something that previously 
incorrectly threw an exception no longer does) should block this going out in a 
point release.
                
> DataFileWriter doesn't correctly conform to Closeable
> -----------------------------------------------------
>
>                 Key: AVRO-1249
>                 URL: https://issues.apache.org/jira/browse/AVRO-1249
>             Project: Avro
>          Issue Type: Bug
>          Components: java
>    Affects Versions: 1.7.3
>            Reporter: E. Sammer
>         Attachments: AVRO-1249.patch
>
>
> o.a.avro.file.DataFileWriter implements java.io.Closeable, but violates the 
> contract stated by the interface's close() method javadoc.
> {quote}
> Closes this stream and releases any system resources associated
> with it. If the stream is already closed then invoking this 
> method has no effect.
> {quote}
> DataFileWriter's close() calls flush() calls sync() which calls assertOpen(). 
> This causes repeated calls to close(), or those on a file that failed to 
> open, to throw an exception which violates the contract. Notably, the 
> following idiom fails (and shouldn't).
> {code}
> import com.google.common.io.Closeables;
> // ...
> DataFileWriter writer = null;
> try {
>   writer = new DataFileWriter(...);
>   // ...
> } finally {
>   Closeables.closeQuietly(writer);
> }
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to