ravipesala commented on a change in pull request #3150: [CARBONDATA-3309] MV datamap supports Spark 2.1
URL:
https://github.com/apache/carbondata/pull/3150#discussion_r284117025
##########
File path: datamap/mv/plan/src/main/scala/org/apache/carbondata/mv/plans/modular/AggregatePushDown.scala
##########
@@ -106,12 +106,14 @@ trait AggregatePushDown { // self: ModularPlan =>
} else {
Map.empty[Int, (NamedExpression, Seq[NamedExpression])]
}
- case sum@AggregateExpression(Sum(Cast(expr, dataType, timeZoneId)), _, false, _)
- if expr.isInstanceOf[Attribute] =>
- val tAttr = selAliasMap.get(expr.asInstanceOf[Attribute]).getOrElse(expr)
+ case sum@AggregateExpression(Sum(child), _, false, _)
Review comment:
You are not using timeZoneId here, so you can use as below.
```
case sum@AggregateExpression(Sum(MatchCast(expr, dataType)), _, false, _) =>
val tAttr = selAliasMap.get(expr.asInstanceOf[Attribute]).getOrElse(expr)
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[hidden email]
With regards,
Apache Git Services