Github user sandeep-katta commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2366#discussion_r196654954
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/bigdecimal/TestBigDecimal.scala
---
@@ -149,8 +149,9 @@ class TestBigDecimal extends QueryTest with
BeforeAndAfterAll {
}
test("test sum*10 aggregation on big decimal column with high
precision") {
- checkAnswer(sql("select sum(salary)*10 from carbonBigDecimal_2"),
- sql("select sum(salary)*10 from hiveBigDecimal"))
+ val carbonSeq = sql("select sum(salary)*10 from
carbonBigDecimal_2").collect
--- End diff --
fixed
---