Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1689#discussion_r158573828
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/partition/TestShowPartitions.scala
---
@@ -150,6 +150,14 @@ class TestShowPartition extends QueryTest with
BeforeAndAfterAll {
}
+ test("show partition table: desc formatted should show partition type"){
+ //check for partition type exist in desc formatted
+ checkExistence(sql("describe formatted hashTable"),true,"Partition
Type")
+ val result: Array[Row] =sql("describe formatted hashTable").collect()
--- End diff --
you can run this sql once and get result in Line 155
---