Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2302#discussion_r187779404
--- Diff:
core/src/main/java/org/apache/carbondata/core/datamap/status/DataMapStatusManager.java
---
@@ -53,6 +53,22 @@ private DataMapStatusManager() {
return storageProvider.getDataMapStatusDetails();
}
+ /**
+ * Get enabled datamap status details
+ * @return
+ * @throws IOException
+ */
+ public static DataMapStatusDetail[] getEnabledDataMapStatusDetails()
throws IOException {
--- End diff --
I think this is unused function, no need to add
---