Github user kunal642 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2450#discussion_r200269178
--- Diff:
integration/spark-common-cluster-test/src/test/scala/org/apache/carbondata/cluster/sdv/generated/CreateTableWithLocalDictionaryTestCase.scala
---
@@ -242,6 +225,7 @@ class CreateTableWithLocalDictionaryTestCase extends
QueryTest with BeforeAndAft
descLoc.find(_.get(0).toString.contains("Local Dictionary Enabled"))
match {
case Some(row) => assert(row.get(1).toString.contains("true"))
}
+ sql("desc formatted local1").show(truncate = false)
--- End diff --
avoid .show in test cases
---