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

    https://github.com/apache/spark/pull/19522#discussion_r145274601
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/optimizer/expressions.scala
 ---
    @@ -176,6 +176,8 @@ object ReorderAssociativeOperator extends 
Rule[LogicalPlan] {
     object OptimizeIn extends Rule[LogicalPlan] {
       def apply(plan: LogicalPlan): LogicalPlan = plan transform {
         case q: LogicalPlan => q transformExpressionsDown {
    +      case expr @ In(v, _) if expr.isListEmpty =>
    +        If(IsNull(v), Literal.create(null, BooleanType), FalseLiteral)
    --- End diff --
    
    Should I also create a JIRA for the optimizer change then?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to