Github user vrozov commented on a diff in the pull request:
https://github.com/apache/drill/pull/1060#discussion_r179296715
--- Diff:
exec/java-exec/src/main/java/org/apache/drill/exec/store/parquet/columnreaders/ParquetRecordReader.java
---
@@ -161,30 +162,25 @@ public ParquetRecordReader(
ParquetMetadata footer,
List<SchemaPath> columns,
ParquetReaderUtility.DateCorruptionStatus dateCorruptionStatus)
throws ExecutionSetupException {
- this.name = path;
- this.hadoopPath = new Path(path);
- this.fileSystem = fs;
- this.codecFactory = codecFactory;
- this.rowGroupIndex = rowGroupIndex;
- this.batchSize = batchSize;
- this.footer = footer;
+
--- End diff --
Please avoid changes that affect code style only.
---