Modifier and Type | Method and Description |
---|---|
CatalogFunction |
AbstractJdbcCatalog.getFunction(ObjectPath functionPath) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractJdbcCatalog.alterFunction(ObjectPath functionPath,
CatalogFunction newFunction,
boolean ignoreIfNotExists) |
void |
AbstractJdbcCatalog.createFunction(ObjectPath functionPath,
CatalogFunction function,
boolean ignoreIfExists) |
Modifier and Type | Class and Description |
---|---|
class |
CatalogFunctionImpl
A catalog function implementation.
|
static class |
FunctionCatalog.InlineCatalogFunction
The CatalogFunction which holds a instantiated UDF.
|
Modifier and Type | Method and Description |
---|---|
CatalogFunction |
CatalogFunctionImpl.copy() |
CatalogFunction |
FunctionCatalog.InlineCatalogFunction.copy() |
CatalogFunction |
CatalogFunction.copy()
Create a deep copy of the function.
|
CatalogFunction |
FunctionCatalog.dropTempCatalogFunction(ObjectIdentifier identifier,
boolean ignoreIfNotExist)
Drop a temporary catalog function.
|
CatalogFunction |
GenericInMemoryCatalog.getFunction(ObjectPath path) |
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 |
GenericInMemoryCatalog.alterFunction(ObjectPath path,
CatalogFunction newFunction,
boolean ignoreIfNotExists) |
void |
Catalog.alterFunction(ObjectPath functionPath,
CatalogFunction newFunction,
boolean ignoreIfNotExists)
Modify an existing function.
|
void |
GenericInMemoryCatalog.createFunction(ObjectPath path,
CatalogFunction function,
boolean ignoreIfExists) |
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.
|
void |
FunctionCatalog.registerTemporaryCatalogFunction(UnresolvedIdentifier unresolvedIdentifier,
CatalogFunction catalogFunction,
boolean ignoreIfExists)
Registers a uninstantiated temporary catalog function.
|
void |
FunctionCatalog.registerTemporarySystemFunction(String name,
CatalogFunction function,
boolean ignoreIfExists) |
Modifier and Type | Method and Description |
---|---|
CatalogFunction |
HiveCatalog.getFunction(ObjectPath functionPath) |
Modifier and Type | Method and Description |
---|---|
void |
HiveCatalog.alterFunction(ObjectPath functionPath,
CatalogFunction newFunction,
boolean ignoreIfNotExists) |
void |
HiveCatalog.createFunction(ObjectPath functionPath,
CatalogFunction function,
boolean ignoreIfExists) |
Modifier and Type | Method and Description |
---|---|
FunctionDefinition |
HiveFunctionDefinitionFactory.createFunctionDefinition(String name,
CatalogFunction catalogFunction) |
FunctionDefinition |
HiveFunctionDefinitionFactory.createFunctionDefinitionFromFlinkFunction(String name,
CatalogFunction catalogFunction) |
Modifier and Type | Method and Description |
---|---|
FunctionDefinition |
FunctionDefinitionFactory.createFunctionDefinition(String name,
CatalogFunction catalogFunction)
Creates a
FunctionDefinition from given CatalogFunction . |
Modifier and Type | Method and Description |
---|---|
static UserDefinedFunction |
UserDefinedFunctionHelper.instantiateFunction(ClassLoader classLoader,
ReadableConfig config,
String name,
CatalogFunction catalogFunction)
Instantiates a
UserDefinedFunction from a CatalogFunction . |
Modifier and Type | Method and Description |
---|---|
CatalogFunction |
AlterCatalogFunctionOperation.getCatalogFunction() |
CatalogFunction |
CreateTempSystemFunctionOperation.getCatalogFunction() |
CatalogFunction |
CreateCatalogFunctionOperation.getCatalogFunction() |
Constructor and Description |
---|
AlterCatalogFunctionOperation(ObjectIdentifier functionIdentifier,
CatalogFunction catalogFunction,
boolean ifExists,
boolean isTemporary) |
CreateCatalogFunctionOperation(ObjectIdentifier functionIdentifier,
CatalogFunction catalogFunction,
boolean ignoreIfExists,
boolean isTemporary) |
Copyright © 2014–2023 The Apache Software Foundation. All rights reserved.