wayneguow commented on code in PR #47105:
URL: https://github.com/apache/spark/pull/47105#discussion_r1665404268


##########
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/aggregate/linearRegression.scala:
##########
@@ -311,7 +312,8 @@ case class RegrIntercept(left: Expression, right: 
Expression) extends Declarativ
 
   private val covarPop = new CovPopulation(right, left)
 
-  private val varPop = new VariancePop(right)
+  private val varPop = new VariancePop(If(And(IsNotNull(left), 
IsNotNull(right)),

Review Comment:
   I haven't found a better way to implement this logic. If can use `if else` 
directly, it may not be calculated in advance, but it cannot be expressed 
directly here.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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

Reply via email to