[ https://issues.apache.org/jira/browse/HIVE-8176?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Ted Yu updated HIVE-8176: ------------------------- Description: {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. was: {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. > 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 > Assignee: SUYEON LEE > Priority: Minor > Attachments: HIVE-8176.patch > > > {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)