Packages

o

org.apache.spark.sql.catalyst.expressions

CurDateExpressionBuilder

object CurDateExpressionBuilder extends ExpressionBuilder

Annotations
@ExpressionDescription()
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CurDateExpressionBuilder
  2. ExpressionBuilder
  3. FunctionBuilderBase
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def build(funcName: String, expressions: Seq[Expression]): Expression
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def functionSignature: Option[FunctionSignature]

    A method that returns the method signature for this function.

    A method that returns the method signature for this function. Each function signature includes a list of parameters to which the analyzer can compare a function call with provided arguments to determine if that function call is a match for the function signature.

    IMPORTANT: For now, each function expression builder should have only one function signature. Also, for any function signature, required arguments must always come before optional ones.

    Definition Classes
    FunctionBuilderBase
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. def rearrange(expectedSignature: FunctionSignature, providedArguments: Seq[Expression], functionName: String): Seq[Expression]

    This function rearranges the arguments provided during function invocation in positional order according to the function signature.

    This function rearranges the arguments provided during function invocation in positional order according to the function signature. This method will fill in the default values if optional parameters do not have their values specified. Any function which supports named arguments will have this routine invoked, even if no named arguments are present in the argument list. This is done to eliminate constructor overloads in some methods which use them for default values prior to the implementation of the named argument framework. This function will also check if the number of arguments are correct. If that is not the case, then an error will be thrown.

    IMPORTANT: This method will be called before the FunctionBuilderBase.build method is invoked. It is guaranteed that the expressions provided to the FunctionBuilderBase.build functions forms a valid set of argument expressions that can be used in the construction of the function expression.

    expectedSignature

    The method signature which we rearrange our arguments according to

    providedArguments

    The list of arguments passed from function invocation

    functionName

    The name of the function

    returns

    The rearranged argument list with arguments in positional order

    Definition Classes
    FunctionBuilderBase
  18. def supportsLambda: Boolean
    Definition Classes
    FunctionBuilderBase
  19. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  20. def toString(): String
    Definition Classes
    AnyRef → Any
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from ExpressionBuilder

Inherited from AnyRef

Inherited from Any

Ungrouped