| Package | Description |
|---|---|
| org.apache.flink.table.catalog | |
| org.apache.flink.table.factories | |
| org.apache.flink.table.functions |
| Modifier and Type | Method and Description |
|---|---|
CatalogFunction |
CatalogFunction.copy()
Create a deep copy of the function.
|
CatalogFunction |
Catalog.getFunction(ObjectPath functionPath)
Get the function.
|
CatalogFunction |
TemporaryOperationListener.onCreateTemporaryFunction(ObjectPath functionPath,
CatalogFunction function)
This method is called when a temporary function is to be created in this catalog.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Catalog.alterFunction(ObjectPath functionPath,
CatalogFunction newFunction,
boolean ignoreIfNotExists)
Modify an existing function.
|
void |
Catalog.createFunction(ObjectPath functionPath,
CatalogFunction function,
boolean ignoreIfExists)
Create a function.
|
CatalogFunction |
TemporaryOperationListener.onCreateTemporaryFunction(ObjectPath functionPath,
CatalogFunction function)
This method is called when a temporary function is to be created in this catalog.
|
| Modifier and Type | Method and Description |
|---|---|
default FunctionDefinition |
FunctionDefinitionFactory.createFunctionDefinition(String name,
CatalogFunction catalogFunction)
Deprecated.
Please implement
FunctionDefinitionFactory.createFunctionDefinition(String, CatalogFunction,
Context) instead. |
default FunctionDefinition |
FunctionDefinitionFactory.createFunctionDefinition(String name,
CatalogFunction catalogFunction,
FunctionDefinitionFactory.Context context)
Creates a
FunctionDefinition from given CatalogFunction with the given FunctionDefinitionFactory.Context containing the class loader of the current session, which is useful when it's needed
to load class from class name. |
| Modifier and Type | Method and Description |
|---|---|
static UserDefinedFunction |
UserDefinedFunctionHelper.instantiateFunction(ClassLoader classLoader,
org.apache.flink.configuration.ReadableConfig config,
String name,
CatalogFunction catalogFunction)
Instantiates a
UserDefinedFunction from a CatalogFunction. |
Copyright © 2014–2025 The Apache Software Foundation. All rights reserved.