Github user ajantha-bhat commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2869#discussion_r229243919
--- Diff:
hadoop/src/main/java/org/apache/carbondata/hadoop/CarbonInputSplit.java ---
@@ -138,6 +138,19 @@ public CarbonInputSplit(String segmentId, Path path,
long start, long length, St
version = CarbonProperties.getInstance().getFormatVersion();
}
+ public CarbonInputSplit(String segmentId, Path path, long start, long
length,
--- End diff --
This is not required. can use above constructor and pass
FileFormat.COLUMNAR_V3 for fileFormat
---