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

    https://github.com/apache/spark/pull/18818#discussion_r136421644
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/codegen/CodeGenerator.scala
 ---
    @@ -582,6 +582,7 @@ class CodegenContext {
         case array: ArrayType => genComp(array, c1, c2) + " == 0"
         case struct: StructType => genComp(struct, c1, c2) + " == 0"
         case udt: UserDefinedType[_] => genEqual(udt.sqlType, c1, c2)
    +    case NullType => "true"
    --- End diff --
    
    Yea, codegen fails without this. I had originally made the value `false` 
but when i noticed the codegen for comparison 
(https://github.com/aray/spark/blob/cc2f3eca28ee6b9faa87853568205307567827cc/sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/codegen/CodeGenerator.scala#L606)
 returned `0`, I changed it to be consistent. Happy to change it back though. 


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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

Reply via email to