Github user xuchuanyin commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2565#discussion_r206367396
--- Diff:
core/src/main/java/org/apache/carbondata/core/indexstore/blockletindex/BlockletDataMapFactory.java
---
@@ -71,7 +71,7 @@
/**
* variable for cache level BLOCKLET
*/
- private static final String CACHE_LEVEL_BLOCKLET = "BLOCKLET";
+ public static final String CACHE_LEVEL_BLOCKLET = "BLOCKLET";
--- End diff --
Because this member needs to be accessed outside this class. Currently in
`CarbonInputFormat` we need to use this variable to know the current cache
level.
---