Package | Description |
---|---|
org.apache.paimon.function | |
org.apache.paimon.rest.requests | |
org.apache.paimon.rest.responses |
Modifier and Type | Class and Description |
---|---|
static class |
FunctionDefinition.FileFunctionDefinition
File function definition.
|
static class |
FunctionDefinition.LambdaFunctionDefinition
Lambda function definition.
|
static class |
FunctionDefinition.SQLFunctionDefinition
SQL function definition.
|
Modifier and Type | Method and Description |
---|---|
FunctionDefinition |
FunctionChange.AddDefinition.definition() |
FunctionDefinition |
FunctionChange.UpdateDefinition.definition() |
FunctionDefinition |
FunctionImpl.definition(String name) |
FunctionDefinition |
Function.definition(String name) |
static FunctionDefinition |
FunctionDefinition.file(String fileType,
List<String> storagePaths,
String language,
String className,
String functionName) |
static FunctionDefinition |
FunctionDefinition.lambda(String definition,
String language) |
static FunctionDefinition |
FunctionDefinition.sql(String definition) |
Modifier and Type | Method and Description |
---|---|
Map<String,FunctionDefinition> |
FunctionImpl.definitions() |
Map<String,FunctionDefinition> |
Function.definitions() |
Modifier and Type | Method and Description |
---|---|
static FunctionChange |
FunctionChange.addDefinition(String name,
FunctionDefinition definition) |
static FunctionChange |
FunctionChange.updateDefinition(String name,
FunctionDefinition definition) |
Constructor and Description |
---|
AddDefinition(String name,
FunctionDefinition definition) |
UpdateDefinition(String name,
FunctionDefinition definition) |
Constructor and Description |
---|
FunctionImpl(Identifier identifier,
List<DataField> inputParams,
List<DataField> returnParams,
boolean deterministic,
Map<String,FunctionDefinition> definitions,
String comment,
Map<String,String> options) |
Modifier and Type | Method and Description |
---|---|
FunctionDefinition |
CreateFunctionRequest.definition(String dialect) |
Modifier and Type | Method and Description |
---|---|
Map<String,FunctionDefinition> |
CreateFunctionRequest.definitions() |
Constructor and Description |
---|
CreateFunctionRequest(String functionName,
List<DataField> inputParams,
List<DataField> returnParams,
boolean deterministic,
Map<String,FunctionDefinition> definitions,
String comment,
Map<String,String> options) |
Modifier and Type | Method and Description |
---|---|
FunctionDefinition |
GetFunctionResponse.definition(String dialect) |
Modifier and Type | Method and Description |
---|---|
Map<String,FunctionDefinition> |
GetFunctionResponse.definitions() |
Constructor and Description |
---|
GetFunctionResponse(String uuid,
String functionName,
List<DataField> inputParams,
List<DataField> returnParams,
boolean deterministic,
Map<String,FunctionDefinition> definitions,
String comment,
Map<String,String> options,
String owner,
long createdAt,
String createdBy,
long updatedAt,
String updatedBy) |
Copyright © 2023–2025 The Apache Software Foundation. All rights reserved.