| Modifier and Type | Method and Description |
|---|---|
FunctionDefinition |
CallExpression.getFunctionDefinition() |
| Constructor and Description |
|---|
CallExpression(FunctionDefinition functionDefinition,
List<ResolvedExpression> args,
DataType dataType) |
CallExpression(FunctionIdentifier functionIdentifier,
FunctionDefinition functionDefinition,
List<ResolvedExpression> args,
DataType dataType) |
| Modifier and Type | Method and Description |
|---|---|
FunctionDefinition |
FunctionDefinitionFactory.createFunctionDefinition(String name,
CatalogFunction catalogFunction)
Creates a
FunctionDefinition from given CatalogFunction. |
| Modifier and Type | Class and Description |
|---|---|
class |
AggregateFunction<T,ACC>
Base class for user-defined aggregates.
|
class |
AggregateFunctionDefinition
The function definition of an user-defined aggregate function.
|
class |
AsyncTableFunction<T>
Base class for a user-defined asynchronously table function (UDTF).
|
class |
BuiltInFunctionDefinition
Definition of a built-in function.
|
class |
ScalarFunction
Base class for a user-defined scalar function.
|
class |
ScalarFunctionDefinition
The function definition of an user-defined scalar function.
|
class |
TableAggregateFunction<T,ACC>
Base class for user-defined table aggregates.
|
class |
TableAggregateFunctionDefinition
The function definition of an user-defined table aggregate function.
|
class |
TableFunction<T>
Base class for a user-defined table function (UDTF).
|
class |
TableFunctionDefinition
The function definition of an user-defined table function.
|
class |
TemporalTableFunction
Class representing temporal table function over some history table.
|
class |
UserDefinedAggregateFunction<T,ACC>
Base class for user-defined aggregates and table aggregates.
|
class |
UserDefinedFunction
Base class for all user-defined functions.
|
| Modifier and Type | Field and Description |
|---|---|
static List<FunctionDefinition> |
BuiltInFunctionDefinitions.ORDERING |
static Set<FunctionDefinition> |
BuiltInFunctionDefinitions.TIME_ATTRIBUTES |
static Set<FunctionDefinition> |
BuiltInFunctionDefinitions.WINDOW_PROPERTIES |
| Modifier and Type | Method and Description |
|---|---|
default Optional<FunctionDefinition> |
Module.getFunctionDefinition(String name)
Get an optional of
FunctionDefinition by a give name. |
Optional<FunctionDefinition> |
CoreModule.getFunctionDefinition(String name) |
| Modifier and Type | Method and Description |
|---|---|
FunctionDefinition |
CallContext.getFunctionDefinition()
Returns the function definition that defines the function currently being called.
|
| Modifier and Type | Method and Description |
|---|---|
static String |
TypeInferenceUtil.generateSignature(String name,
FunctionDefinition definition,
TypeInference typeInference)
Generates a signature of the given
FunctionDefinition. |
Signature.Argument |
ArgumentTypeStrategy.getExpectedArgument(FunctionDefinition functionDefinition,
int argumentPos)
Returns a summary of the function's expected argument at
argumentPos. |
List<Signature> |
InputTypeStrategy.getExpectedSignatures(FunctionDefinition definition)
Returns a summary of the function's expected signatures.
|
| Constructor and Description |
|---|
SurroundingInfo(String name,
FunctionDefinition functionDefinition,
TypeInference typeInference,
int argumentCount,
int innerCallPosition) |
| Modifier and Type | Method and Description |
|---|---|
Signature.Argument |
AndArgumentTypeStrategy.getExpectedArgument(FunctionDefinition functionDefinition,
int argumentPos) |
Signature.Argument |
OutputArgumentTypeStrategy.getExpectedArgument(FunctionDefinition functionDefinition,
int argumentPos) |
Signature.Argument |
LiteralArgumentTypeStrategy.getExpectedArgument(FunctionDefinition functionDefinition,
int argumentPos) |
Signature.Argument |
OrArgumentTypeStrategy.getExpectedArgument(FunctionDefinition functionDefinition,
int argumentPos) |
Signature.Argument |
ExplicitArgumentTypeStrategy.getExpectedArgument(FunctionDefinition functionDefinition,
int argumentPos) |
Signature.Argument |
AnyArgumentTypeStrategy.getExpectedArgument(FunctionDefinition functionDefinition,
int argumentPos) |
List<Signature> |
OrInputTypeStrategy.getExpectedSignatures(FunctionDefinition definition) |
List<Signature> |
SequenceInputTypeStrategy.getExpectedSignatures(FunctionDefinition definition) |
List<Signature> |
VaryingSequenceInputTypeStrategy.getExpectedSignatures(FunctionDefinition definition) |
List<Signature> |
WildcardInputTypeStrategy.getExpectedSignatures(FunctionDefinition definition) |
| Modifier and Type | Method and Description |
|---|---|
FunctionDefinition |
UnknownCallContext.getFunctionDefinition() |
FunctionDefinition |
AdaptedCallContext.getFunctionDefinition() |
| Constructor and Description |
|---|
UnknownCallContext(DataTypeLookup lookup,
String name,
FunctionDefinition functionDefinition,
int argumentCount) |
Copyright © 2014–2020 The Apache Software Foundation. All rights reserved.