Github user cloud-fan commented on a diff in the pull request:
https://github.com/apache/spark/pull/9959#discussion_r45834951
--- Diff:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/Optimizer.scala
---
@@ -690,7 +690,15 @@ object PushPredicateThroughAggregate extends
Rule[LogicalPlan] with PredicateHel
def apply(plan: LogicalPlan): LogicalPlan = plan transform {
case filter @ Filter(condition,
aggregate @ Aggregate(groupingExpressions, aggregateExpressions,
grandChild)) =>
- val (pushDown, stayUp) =
splitConjunctivePredicates(condition).partition {
+
+ // Create a map of Alias for grouping keys or literals
+ val aliasMap = AttributeMap(aggregateExpressions.collect {
+ case a: Alias if groupingExpressions.contains(a.child) ||
a.child.foldable =>
--- End diff --
This doesn't work if a grouping expression is inside another expression,
for example, `key + 1 as k`, after remove the alias, `groupingExpressions`
doesn't contain `key + 1` and we will fail to push down it.
I think we don't need the `if` here, we have `conjunct.references subsetOf
AttributeSet(groupingExpressions)` below to decide whether to push a condition
or not.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]