Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2310#discussion_r188847466
--- Diff:
core/src/main/java/org/apache/carbondata/core/datamap/DistributableDataMapFormat.java
---
@@ -58,14 +57,23 @@
private List<PartitionSpec> partitions;
+ private DataMapDistributableWrapper distributable;
+
+ private boolean isJobToClearDataMaps = false;
+
DistributableDataMapFormat(CarbonTable table,
DataMapExprWrapper dataMapExprWrapper, List<Segment> validSegments,
- List<PartitionSpec> partitions, String className) {
--- End diff --
Remove the `className`, it seems not used
---