Github user hvanhovell commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22205#discussion_r213124828
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/Optimizer.scala
 ---
    @@ -1349,6 +1353,12 @@ object ConvertToLocalRelation extends 
Rule[LogicalPlan] {
     
         case Limit(IntegerLiteral(limit), LocalRelation(output, data, 
isStreaming)) =>
           LocalRelation(output, data.take(limit), isStreaming)
    +
    +    case Filter(condition, LocalRelation(output, data, isStreaming))
    +        if !hasUnevaluableExpr(condition) =>
    --- End diff --
    
    I suppose it is fine in this case. The only thing is that it violates the 
contract of the optimizer: it should not change the results of a query.


---

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

Reply via email to