Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2269#discussion_r186743361
--- Diff:
hadoop/src/main/java/org/apache/carbondata/hadoop/api/AbstractDataMapJob.java
---
@@ -36,7 +36,7 @@
}
@Override public List<ExtendedBlocklet>
execute(DistributableDataMapFormat dataMapFormat,
- FilterResolverIntf resolverIntf) {
+ FilterResolverIntf resolverIntf, CarbonTable carbonTable) {
--- End diff --
No need to pass carbonTable here, it is already present in
`DistributableDataMapFormat`, you can get from there
---