Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2661#discussion_r214737914
--- Diff:
core/src/main/java/org/apache/carbondata/core/indexstore/blockletindex/SegmentIndexFileStore.java
---
@@ -338,6 +338,24 @@ private MergedBlockIndex
readMergeBlockIndex(ThriftReader thriftReader) throws I
});
}
+ /**
+ * List all the index files of the segment.
+ *
+ * @param carbonFile directory
+ */
+ public static void getCarbonIndexFilesRecursively(CarbonFile carbonFile,
--- End diff --
Its a recursive call, and it adds file to the passed list if it finds any.
---