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

    https://github.com/apache/spark/pull/22701#discussion_r224596662
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/analysis/Analyzer.scala
 ---
    @@ -2151,7 +2151,7 @@ class Analyzer(
                 // TODO: skip null handling for not-nullable primitive inputs 
after we can completely
                 // trust the `nullable` information.
                 val inputsNullCheck = nullableTypes.zip(inputs)
    -              .filter { case (nullable, _) => !nullable }
    +              .filter { case (nullable, expr) => !nullable && 
!expr.isInstanceOf[KnownNotNull] }
    --- End diff --
    
    let us use the original way? in the PR 
https://github.com/apache/spark/pull/21851
    ```Scala
    val needsNullCheck = ... 
    ```


---

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

Reply via email to