Uses of Interface
org.apache.flink.table.catalog.CatalogFunction
Packages that use CatalogFunction
Package
Description
-
Uses of CatalogFunction in org.apache.flink.table.catalog
Methods in org.apache.flink.table.catalog that return CatalogFunctionModifier and TypeMethodDescriptionCatalogFunction.copy()Create a deep copy of the function.Catalog.getFunction(ObjectPath functionPath) Get the function.TemporaryOperationListener.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 CatalogFunctionModifier and TypeMethodDescriptionvoidCatalog.alterFunction(ObjectPath functionPath, CatalogFunction newFunction, boolean ignoreIfNotExists) Modify an existing function.voidCatalog.createFunction(ObjectPath functionPath, CatalogFunction function, boolean ignoreIfExists) Create a function.TemporaryOperationListener.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 CatalogFunctionModifier and TypeMethodDescriptionFunctionDefinitionFactory.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 CatalogFunctionModifier and TypeMethodDescriptionstatic UserDefinedFunctionUserDefinedFunctionHelper.instantiateFunction(ClassLoader classLoader, org.apache.flink.configuration.ReadableConfig config, String name, CatalogFunction catalogFunction) Instantiates aUserDefinedFunctionfrom aCatalogFunction.