Uses of Interface
org.apache.flink.table.catalog.CatalogFunction
-
Packages that use CatalogFunction Package Description org.apache.flink.table.catalog org.apache.flink.table.factories org.apache.flink.table.functions -
-
Uses of CatalogFunction in org.apache.flink.table.catalog
Methods in org.apache.flink.table.catalog that return CatalogFunction Modifier and Type Method Description CatalogFunctionCatalogFunction. copy()Create a deep copy of the function.CatalogFunctionCatalog. getFunction(ObjectPath functionPath)Get the function.CatalogFunctionTemporaryOperationListener. onCreateTemporaryFunction(ObjectPath functionPath, CatalogFunction function)This method is called when a temporary function is to be created in this catalog.Methods in org.apache.flink.table.catalog with parameters of type CatalogFunction Modifier and Type Method Description voidCatalog. alterFunction(ObjectPath functionPath, CatalogFunction newFunction, boolean ignoreIfNotExists)Modify an existing function.voidCatalog. createFunction(ObjectPath functionPath, CatalogFunction function, boolean ignoreIfExists)Create a function.CatalogFunctionTemporaryOperationListener. onCreateTemporaryFunction(ObjectPath functionPath, CatalogFunction function)This method is called when a temporary function is to be created in this catalog. -
Uses of CatalogFunction in org.apache.flink.table.factories
Methods in org.apache.flink.table.factories with parameters of type CatalogFunction Modifier and Type Method Description default FunctionDefinitionFunctionDefinitionFactory. createFunctionDefinition(String name, CatalogFunction catalogFunction)Deprecated.Please implementFunctionDefinitionFactory.createFunctionDefinition(String, CatalogFunction, Context)instead.default FunctionDefinitionFunctionDefinitionFactory. createFunctionDefinition(String name, CatalogFunction catalogFunction, FunctionDefinitionFactory.Context context)Creates aFunctionDefinitionfrom givenCatalogFunctionwith the givenFunctionDefinitionFactory.Contextcontaining the class loader of the current session, which is useful when it's needed to load class from class name. -
Uses of CatalogFunction in org.apache.flink.table.functions
Methods in org.apache.flink.table.functions with parameters of type CatalogFunction Modifier and Type Method Description static UserDefinedFunctionUserDefinedFunctionHelper. instantiateFunction(ClassLoader classLoader, org.apache.flink.configuration.ReadableConfig config, String name, CatalogFunction catalogFunction)Instantiates aUserDefinedFunctionfrom aCatalogFunction.
-