Github user xubo245 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1852#discussion_r163845741
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/datamap/TestDataMapCommand.scala
---
@@ -210,6 +211,16 @@ class TestDataMapCommand extends QueryTest with
BeforeAndAfterAll {
Seq(Row(1, 31), Row(2, 27), Row(3, 70), Row(4, 55)))
}
+ test("test preaggregate load for decimal column for hivemetastore") {
+
CarbonProperties.getInstance().addProperty(CarbonCommonConstants.ENABLE_HIVE_SCHEMA_META_STORE,
"true")
+ sql("drop datamap if exists uniqdata_agg on table uniqdata")
--- End diff --
where is uniqdata table?
---