You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@orc.apache.org by "Dongjoon Hyun (JIRA)" <ji...@apache.org> on 2018/10/11 05:55:00 UTC

[jira] [Created] (ORC-419) Ensure to call `close` at RecordReaderImpl constructor exception

Dongjoon Hyun created ORC-419:
---------------------------------

             Summary: Ensure to call `close` at RecordReaderImpl constructor exception
                 Key: ORC-419
                 URL: https://issues.apache.org/jira/browse/ORC-419
             Project: ORC
          Issue Type: Bug
          Components: Java
    Affects Versions: 1.5.3, 1.5.2, 1.5.1, 1.5.0
            Reporter: Dongjoon Hyun


Currently, there is no way to call `RecordReaderImpl.close` if `RecordReader.rows` fails at creating `RecordReaderImpl`. This issue aims to try to invoke `close` in the constructor in case of Exceptions.

{code}
  @Override
  public RecordReader rows(Options options) throws IOException {
    LOG.info("Reading ORC rows from " + path + " with " + options);
    return new RecordReaderImpl(this, options);
  }
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)