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

    https://github.com/apache/spark/pull/18323#discussion_r123401878
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/Expression.scala
 ---
    @@ -631,3 +631,109 @@ abstract class TernaryExpression extends Expression {
         }
       }
     }
    +
    +/**
    + * An expression with four inputs and one output. The output is by default 
evaluated to null
    + * if any input is evaluated to null.
    + */
    +abstract class QuaternaryExpression extends Expression {
    +
    +  override def foldable: Boolean = children.forall(_.foldable)
    +
    +  override def nullable: Boolean = children.exists(_.nullable)
    +
    +  /**
    +   * Default behavior of evaluation according to the default nullability 
of TernaryExpression.
    --- End diff --
    
    `TernaryExpression` -> `QuaternaryExpression`,  please also fix other places


---
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