Github user xubo245 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1865#discussion_r164326309
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/timeseries/TimeSeriesUtil.scala
---
@@ -54,6 +56,107 @@ object TimeSeriesUtil {
}
}
+ def getGranularityKey(dmProperties: Map[String, String]): String = {
--- End diff --
I need know what is the key, and then remove it for updatedDmProperties
val updatedDmProperties = dmproperties -
TimeSeriesUtil.getGranularityKey(dmproperties)
---