Github user sraghunandan commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2354#discussion_r199743291
--- Diff:
core/src/main/java/org/apache/carbondata/core/cache/dictionary/ManageDictionaryAndBTree.java
---
@@ -131,22 +119,4 @@ public static void
removeDictionaryColumnFromCache(AbsoluteTableIdentifier carbo
dictCache =
CacheProvider.getInstance().createCache(CacheType.FORWARD_DICTIONARY);
dictCache.invalidate(dictionaryColumnUniqueIdentifier);
}
-
- /**
- * This method will remove the BTree instances from LRU cache
- *
- * @param absoluteTableIdentifier
- * @param segments
- */
- public static void invalidateBTreeCache(AbsoluteTableIdentifier
absoluteTableIdentifier,
- String[] segments) {
- Cache<Object, Object> driverBTreeCache =
- CacheProvider.getInstance().createCache(CacheType.DRIVER_BTREE);
--- End diff --
blocket tree is handled through datamaps. not in this flow
---