[GitHub] [spark] yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates if run multiple times

2019-07-18 Thread GitBox
yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] 
Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates 
if run multiple times
URL: https://github.com/apache/spark/pull/25164#discussion_r304766364
 
 

 ##
 File path: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/subquery.scala
 ##
 @@ -275,13 +275,16 @@ object PullupCorrelatedPredicates extends 
Rule[LogicalPlan] with PredicateHelper
 plan transformExpressions {
   case ScalarSubquery(sub, children, exprId) if children.nonEmpty =>
 val (newPlan, newCond) = pullOutCorrelatedPredicates(sub, outerPlans)
-ScalarSubquery(newPlan, newCond, exprId)
+val conds = newCond ++ children.filter(_.isInstanceOf[Predicate])
 
 Review comment:
   TBH subquery resolution and optimzation are super tricky and can be 
error-prone. The current code is a bit complex and fragile, because one piece 
of code might have some pre-conditions on some other parts of the codebase, 
which might change over time.


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


With regards,
Apache Git Services

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] [spark] yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates if run multiple times

2019-07-18 Thread GitBox
yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] 
Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates 
if run multiple times
URL: https://github.com/apache/spark/pull/25164#discussion_r304765685
 
 

 ##
 File path: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/subquery.scala
 ##
 @@ -275,13 +275,16 @@ object PullupCorrelatedPredicates extends 
Rule[LogicalPlan] with PredicateHelper
 plan transformExpressions {
   case ScalarSubquery(sub, children, exprId) if children.nonEmpty =>
 val (newPlan, newCond) = pullOutCorrelatedPredicates(sub, outerPlans)
-ScalarSubquery(newPlan, newCond, exprId)
+val conds = newCond ++ children.filter(_.isInstanceOf[Predicate])
 
 Review comment:
   I doubt it... Because the logic for checking `OuterReferences` and the logic 
for actually pulling up predicates are slightly different. With that being 
said, even though `l.children` is non-empty, it does not necessarily mean that 
`newCond` is non-empty.
   
   The most natural way I can think of is that we combine these two rule 
`PullupCorrelatedPredicates` and `RewriteSubqueryPredicates`, 
`RewriteSubqueryPredicates` completely removes those hacky list subqueries. I 
don't think the plan can change if we apply these two rules in a single `Once` 
batch.


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


With regards,
Apache Git Services

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] [spark] yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates if run multiple times

2019-07-18 Thread GitBox
yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] 
Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates 
if run multiple times
URL: https://github.com/apache/spark/pull/25164#discussion_r304765685
 
 

 ##
 File path: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/subquery.scala
 ##
 @@ -275,13 +275,16 @@ object PullupCorrelatedPredicates extends 
Rule[LogicalPlan] with PredicateHelper
 plan transformExpressions {
   case ScalarSubquery(sub, children, exprId) if children.nonEmpty =>
 val (newPlan, newCond) = pullOutCorrelatedPredicates(sub, outerPlans)
-ScalarSubquery(newPlan, newCond, exprId)
+val conds = newCond ++ children.filter(_.isInstanceOf[Predicate])
 
 Review comment:
   I doubt it... Because the logic for checking `OuterReferences` and the logic 
for actually pulling up predicates are slightly different. With that being 
said, even though `l.children` is non-empty, it does not necessarily mean that 
`newCond` is non-empty.
   
   The most natural way I can think of is that we combine these two rule 
`PullupCorrelatedPredicates` and `RewriteSubqueryPredicates`, and 
`RewriteSubqueryPredicates` completely removes those hacky list subqueries. I 
don't think the plan can change if we apply these two rules in a single `Once` 
batch.


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


With regards,
Apache Git Services

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] [spark] yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates if run multiple times

2019-07-18 Thread GitBox
yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] 
Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates 
if run multiple times
URL: https://github.com/apache/spark/pull/25164#discussion_r304766364
 
 

 ##
 File path: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/subquery.scala
 ##
 @@ -275,13 +275,16 @@ object PullupCorrelatedPredicates extends 
Rule[LogicalPlan] with PredicateHelper
 plan transformExpressions {
   case ScalarSubquery(sub, children, exprId) if children.nonEmpty =>
 val (newPlan, newCond) = pullOutCorrelatedPredicates(sub, outerPlans)
-ScalarSubquery(newPlan, newCond, exprId)
+val conds = newCond ++ children.filter(_.isInstanceOf[Predicate])
 
 Review comment:
   TBH subquery resolution and optimzation are super tricky and can be 
error-prone. The current code is a bit complex and fragile, because one piece 
of code might have some pre-conditions on some other part of the codebase, 
which might change over time.


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


With regards,
Apache Git Services

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] [spark] yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates if run multiple times

2019-07-18 Thread GitBox
yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] 
Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates 
if run multiple times
URL: https://github.com/apache/spark/pull/25164#discussion_r304765685
 
 

 ##
 File path: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/subquery.scala
 ##
 @@ -275,13 +275,16 @@ object PullupCorrelatedPredicates extends 
Rule[LogicalPlan] with PredicateHelper
 plan transformExpressions {
   case ScalarSubquery(sub, children, exprId) if children.nonEmpty =>
 val (newPlan, newCond) = pullOutCorrelatedPredicates(sub, outerPlans)
-ScalarSubquery(newPlan, newCond, exprId)
+val conds = newCond ++ children.filter(_.isInstanceOf[Predicate])
 
 Review comment:
   I doubt it... Because the logic for checking `OuterReferences` and the logic 
for actually pulling up predicates are slightly different. With that being 
said, even though `l.children` is non-empty, it does not necessarily mean that 
`newCond` is empty.
   
   The most natural way I can think of is that we combine these two rule 
`PullupCorrelatedPredicates` and `RewriteSubqueryPredicates`, 
`RewriteSubqueryPredicates` completely removes those hacky list subqueries. I 
don't think the plan can change if we apply these two rules in a single `Once` 
batch.


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


With regards,
Apache Git Services

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] [spark] yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates if run multiple times

2019-07-17 Thread GitBox
yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] 
Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates 
if run multiple times
URL: https://github.com/apache/spark/pull/25164#discussion_r304557504
 
 

 ##
 File path: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/subquery.scala
 ##
 @@ -275,13 +275,16 @@ object PullupCorrelatedPredicates extends 
Rule[LogicalPlan] with PredicateHelper
 plan transformExpressions {
   case ScalarSubquery(sub, children, exprId) if children.nonEmpty =>
 val (newPlan, newCond) = pullOutCorrelatedPredicates(sub, outerPlans)
-ScalarSubquery(newPlan, newCond, exprId)
+val conds = newCond ++ children.filter(_.isInstanceOf[Predicate])
 
 Review comment:
   @dilipbiswal Then I'll close this PR for now and wait till you combine those 
two rules. (or you can do that yourself). Thanks!


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


With regards,
Apache Git Services

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] [spark] yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates if run multiple times

2019-07-16 Thread GitBox
yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] 
Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates 
if run multiple times
URL: https://github.com/apache/spark/pull/25164#discussion_r304219902
 
 

 ##
 File path: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/subquery.scala
 ##
 @@ -275,13 +275,16 @@ object PullupCorrelatedPredicates extends 
Rule[LogicalPlan] with PredicateHelper
 plan transformExpressions {
   case ScalarSubquery(sub, children, exprId) if children.nonEmpty =>
 val (newPlan, newCond) = pullOutCorrelatedPredicates(sub, outerPlans)
-ScalarSubquery(newPlan, newCond, exprId)
+val conds = newCond ++ children.filter(_.isInstanceOf[Predicate])
 
 Review comment:
   Ahh, got it. Thanks for your detailed explanation!


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


With regards,
Apache Git Services

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org



[GitHub] [spark] yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates if run multiple times

2019-07-16 Thread GitBox
yeshengm commented on a change in pull request #25164: [SPARK-28375][SQL] 
Prevent the PullupCorrelatedPredicates optimizer rule from removing predicates 
if run multiple times
URL: https://github.com/apache/spark/pull/25164#discussion_r304215574
 
 

 ##
 File path: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/subquery.scala
 ##
 @@ -275,13 +275,16 @@ object PullupCorrelatedPredicates extends 
Rule[LogicalPlan] with PredicateHelper
 plan transformExpressions {
   case ScalarSubquery(sub, children, exprId) if children.nonEmpty =>
 val (newPlan, newCond) = pullOutCorrelatedPredicates(sub, outerPlans)
-ScalarSubquery(newPlan, newCond, exprId)
+val conds = newCond ++ children.filter(_.isInstanceOf[Predicate])
 
 Review comment:
   @dilipbiswal According to jira, it seems that spark-19712 is already 
resolved. That said, we can safely combine the two now, right?


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


With regards,
Apache Git Services

-
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org