Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2678#discussion_r216207701
--- Diff:
core/src/main/java/org/apache/carbondata/core/util/AbstractDataFileFooterConverter.java
---
@@ -135,16 +138,17 @@ private static BitSet getPresenceMeta(
* @return list of index info
* @throws IOException problem while reading the index file
*/
- public List<DataFileFooter> getIndexInfo(String filePath, byte[]
fileData) throws IOException {
- return getIndexInfo(filePath, fileData, true);
+ public List<DataFileFooter> getIndexInfo(String filePath, byte[]
fileData,
+ Configuration configuration) throws IOException {
--- End diff --
Is it not possible to take from constructor?
---