Class Ceil

  • All Implemented Interfaces:
    java.lang.Cloneable

    public class Ceil
    extends SimpleFunction

    Implementation of the CEIL(x) / CEILING(x) SQL function, computes the smallest whole number larger than the argument. Returns NULL if the argument is NULL.

    Currently, the result is always a double-precision number, even though it is a whole number, since this is what Math.ceil(double) returns.

    • Constructor Summary

      Constructors 
      Constructor Description
      Ceil()  
    • Constructor Detail

      • Ceil

        public Ceil()
    • Method Detail

      • getReturnType

        public ColumnType getReturnType​(java.util.List<Expression> args,
                                        Schema schema)
        Description copied from class: ScalarFunction
        Returns the column type of the resulting column after applying the function. This generally depends on the column type of the inputs.
        Specified by:
        getReturnType in class ScalarFunction
        Parameters:
        args - the arguments to the function call
        schema - the schema of the table
        Returns:
        the column type of the resulting column
      • evaluate

        public java.lang.Object evaluate​(Environment env,
                                         java.util.List<Expression> args)
        Description copied from class: SimpleFunction
        Evaluates the function. Should be called at runtime for every function call.
        Specified by:
        evaluate in class SimpleFunction
        Parameters:
        env - Environment, in which the arguments are evaluated
        args - Arguments for this function
        Returns:
        The value of the function