Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2113#discussion_r181663757
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/datamap/CarbonDataMapShowCommand.scala
---
@@ -40,35 +42,48 @@ case class CarbonDataMapShowCommand(tableIdentifier:
Option[TableIdentifier])
override def output: Seq[Attribute] = {
Seq(AttributeReference("DataMapName", StringType, nullable = false)(),
AttributeReference("ClassName", StringType, nullable = false)(),
- AttributeReference("Associated Table", StringType, nullable =
false)())
+ AttributeReference("Associated Table", StringType, nullable =
false)(),
+ AttributeReference("DMProperties", StringType, nullable = false)())
}
override def processData(sparkSession: SparkSession): Seq[Row] = {
+ val finalSchemaList: util.List[DataMapSchema] = new
util.ArrayList[DataMapSchema]()
--- End diff --
rename to datamapSchemaList
---