Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1410#discussion_r145032414
--- Diff:
core/src/main/java/org/apache/carbondata/core/datamap/dev/DataMap.java ---
@@ -26,7 +26,7 @@
/**
* Datamap is an entity which can store and retrieve index data.
*/
-public interface DataMap {
+public interface DataMap<T extends Blocklet> {
--- End diff --
Yes, but methods are same for both, so I have added Abstract classes for CG
and FG to distinguish between them.
---