Class CoalesceFunction

All Implemented Interfaces:
ExpressionWithVariableParameters, NamedExpression, HasSQL, Typed

public final class CoalesceFunction extends FunctionN
A COALESCE, GREATEST, or LEAST function.
  • Field Details

  • Constructor Details

    • CoalesceFunction

      public CoalesceFunction(int function)
    • CoalesceFunction

      public CoalesceFunction(int function, Expression... args)
  • Method Details

    • setIgnoreNulls

      public void setIgnoreNulls(boolean ignoreNulls)
    • getValue

      public Value getValue(SessionLocal session)
      Description copied from class: Expression
      Return the resulting value for the current row.
      Overrides:
      getValue in class FunctionN
      Parameters:
      session - the session
      Returns:
      the result
    • optimize

      public Expression optimize(SessionLocal session)
      Description copied from class: Expression
      Try to optimize the expression.
      Specified by:
      optimize in class Expression
      Parameters:
      session - the session
      Returns:
      the optimized expression
    • getName

      public String getName()
      Description copied from interface: NamedExpression
      Get the name.
      Returns:
      the name in uppercase
    • getUnenclosedSQL

      public StringBuilder getUnenclosedSQL(StringBuilder builder, int sqlFlags)
      Description copied from class: Expression
      Get the SQL statement of this expression. This may not always be the original SQL statement, especially after optimization. Enclosing '(' and ')' are never appended.
      Overrides:
      getUnenclosedSQL in class FunctionN
      Parameters:
      builder - string builder
      sqlFlags - formatting flags
      Returns:
      the specified string builder