Github user pawanmalwal commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1472#discussion_r149586000
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/CarbonDescribeFormattedCommand.scala
---
@@ -105,6 +105,10 @@ private[sql] case class CarbonDescribeFormattedCommand(
results ++= Seq(("Table Name: ",
relation.tableMeta.carbonTableIdentifier.getTableName, ""))
results ++= Seq(("CARBON Store Path: ", relation.tableMeta.storePath,
""))
val carbonTable = relation.tableMeta.carbonTable
+ // Carbon table support table comment
+ val tableComment =
carbonTable.getTableInfo.getFactTable.getTableProperties
+ .getOrDefault("comment", "")
--- End diff --
Done.
---