maropu commented on a change in pull request #29695: URL: https://github.com/apache/spark/pull/29695#discussion_r497911856
########## File path: sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/DataSourceStrategy.scala ########## @@ -643,6 +647,34 @@ object DataSourceStrategy { (nonconvertiblePredicates ++ unhandledPredicates, pushedFilters, handledFilters) } + def translateAggregate(aggregates: AggregateExpression): Option[AggregateFunc] = { + + def columnAsString(e: Expression): String = e match { + case AttributeReference(name, _, _, _) => name + case Cast(child, _, _) => child match { Review comment: What if `SALARY` is a tiny int? Looks `sum(SALARY)` can have an overflow easily in the datasource side. ---------------------------------------------------------------- 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org