Class StandardSQLFunction

    • Constructor Detail

      • StandardSQLFunction

        public StandardSQLFunction​(String name)
        Construct a standard SQL function definition with a variable return type; the actual return type will depend on the types to which the function is applied.

        Using this form, the return type is considered non-static and assumed to be the type of the first argument.

        Parameters:
        name - The name of the function.
      • StandardSQLFunction

        public StandardSQLFunction​(String name,
                                   Type registeredType)
        Construct a standard SQL function definition with a static return type.
        Parameters:
        name - The name of the function.
        registeredType - The static return type.