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

    https://github.com/apache/spark/pull/7157#discussion_r33988525
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/math.scala
 ---
    @@ -422,21 +375,11 @@ case class UnHex(child: Expression) extends 
UnaryExpression with ExpectsInputTyp
     case class Atan2(left: Expression, right: Expression)
       extends BinaryMathExpression(math.atan2, "ATAN2") {
     
    -  override def eval(input: InternalRow): Any = {
    -    val evalE1 = left.eval(input)
    -    if (evalE1 == null) {
    -      null
    -    } else {
    -      val evalE2 = right.eval(input)
    -      if (evalE2 == null) {
    -        null
    -      } else {
    -        // With codegen, the values returned by -0.0 and 0.0 are 
different. Handled with +0.0
    -        val result = math.atan2(evalE1.asInstanceOf[Double] + 0.0,
    -          evalE2.asInstanceOf[Double] + 0.0)
    -        if (result.isNaN) null else result
    -      }
    -    }
    +  protected override def nullSafeEval(evalE1: Any, evalE2: Any): Any = {
    +    // With codegen, the values returned by -0.0 and 0.0 are different. 
Handled with +0.0
    +    val result = math.atan2(evalE1.asInstanceOf[Double] + 0.0,
    +      evalE2.asInstanceOf[Double] + 0.0)
    --- End diff --
    
    i don't think u need to wrap here


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

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

Reply via email to