Github user akashrn5 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2404#discussion_r197682680
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/datamap/TestDataMapCommand.scala
---
@@ -204,6 +204,37 @@ class TestDataMapCommand extends QueryTest with
BeforeAndAfterAll {
}
}
+ test("test show datamap: show datamap property related information") {
+ val tableName = "datamapshowtest"
+ val datamapName = "bloomdatamap"
+ val datamapName2 = "bloomdatamap2"
+ val datamapName3 = "bloomdatamap3"
+ sql(s"drop table if exists $tableName")
+ sql(s"create table $tableName (a string, b string, c string) stored by
'carbondata'")
--- End diff --
add a test case for preagg also, with DM properties and without
DMProperties behavior
---