Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2452#discussion_r200895365
--- Diff:
core/src/main/java/org/apache/carbondata/core/util/CarbonUtil.java ---
@@ -2814,6 +2817,22 @@ public static boolean
hasAggregationDataMap(CarbonTable carbonTable) {
return false;
}
+ /**
+ * Utility function to check whether table has mv datamap or not
+ * @param carbonTable
+ * @return timeseries data map present
--- End diff --
change to `return true if MV datamap present in the specified table`
---