Ted Yu created HIVE-8176:
----------------------------

             Summary: Close of FSDataOutputStream in OrcRecordUpdater ctor 
should be in finally clause
                 Key: HIVE-8176
                 URL: https://issues.apache.org/jira/browse/HIVE-8176
             Project: Hive
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


{code}
    try {
      FSDataOutputStream strm = fs.create(new Path(path, ACID_FORMAT), false);
      strm.writeInt(ORC_ACID_VERSION);
      strm.close();
    } catch (IOException ioe) {
{code}
If strm.writeInt() throws IOE, strm would be left unclosed.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to