Github user xuchuanyin commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2456#discussion_r204616746
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/execution/command/table/CarbonDescribeFormattedCommand.scala
---
@@ -114,6 +114,13 @@ private[sql] case class CarbonDescribeFormattedCommand(
CarbonCommonConstants.CACHE_LEVEL_DEFAULT_VALUE), ""))
val isStreaming = tblProps.asScala.getOrElse("streaming", "false")
results ++= Seq(("Streaming", isStreaming, ""))
+
+ // longstring related info
+ if (tblProps.containsKey(CarbonCommonConstants.LONG_STRING_COLUMNS)) {
--- End diff --
ok~
---