pvary commented on a change in pull request #2040: URL: https://github.com/apache/hive/pull/2040#discussion_r589337642
########## File path: ql/src/java/org/apache/hadoop/hive/ql/io/avro/AvroGenericRecordReader.java ########## @@ -88,22 +88,39 @@ public AvroGenericRecordReader(JobConf job, FileSplit split, Reporter reporter) gdr.setExpected(latest); } - if (split.getLength() == 0) { - this.isEmptyInput = true; - this.start = 0; - this.reader = null; + org.apache.avro.file.FileReader<GenericRecord> nonFinalReader = null; + try { + if (split.getLength() == 0) { + this.isEmptyInput = true; + this.start = 0; + this.reader = null; + } + else { + this.isEmptyInput = false; + nonFinalReader = new DataFileReader<GenericRecord>(new FsInput(split.getPath(), job), gdr); + this.reader = nonFinalReader; + this.reader.sync(split.getStart()); + this.start = reader.tell(); + } + this.stop = split.getStart() + split.getLength(); + this.recordReaderID = new UID(); + + this.writerTimezone = extractWriterTimezoneFromMetadata(job, split, gdr); + this.writerProleptic = extractWriterProlepticFromMetadata(job, split, gdr); } - else { - this.isEmptyInput = false; - this.reader = new DataFileReader<GenericRecord>(new FsInput(split.getPath(), job), gdr); - this.reader.sync(split.getStart()); - this.start = reader.tell(); + catch (Exception e) { + if (nonFinalReader != null) { + try { + nonFinalReader.close(); + } + catch (Exception closeException) { + if (closeException != e) { + e.addSuppressed(closeException); + } + } + } + throw e; Review comment: Got it. Thanks! ---------------------------------------------------------------- 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For additional commands, e-mail: gitbox-h...@hive.apache.org