Uses of Class
org.apache.flink.table.expressions.CallExpression
-
Packages that use CallExpression Package Description org.apache.flink.table.expressions -
-
Uses of CallExpression in org.apache.flink.table.expressions
Methods in org.apache.flink.table.expressions that return CallExpression Modifier and Type Method Description static CallExpression
CallExpression. anonymous(FunctionDefinition functionDefinition, List<ResolvedExpression> args, DataType dataType)
Creates aCallExpression
to an anonymous function that has been declared inline without aFunctionIdentifier
.static CallExpression
CallExpression. permanent(BuiltInFunctionDefinition builtInFunctionDefinition, List<ResolvedExpression> args, DataType dataType)
Creates aCallExpression
to a resolved built-in function.static CallExpression
CallExpression. permanent(FunctionIdentifier functionIdentifier, FunctionDefinition functionDefinition, List<ResolvedExpression> args, DataType dataType)
CallExpression
CallExpression. replaceArgs(List<ResolvedExpression> args, DataType dataType)
static CallExpression
CallExpression. temporary(FunctionIdentifier functionIdentifier, FunctionDefinition functionDefinition, List<ResolvedExpression> args, DataType dataType)
Creates aCallExpression
to a temporary function (potentially shadowing aCatalog
function or providing a system function).Methods in org.apache.flink.table.expressions that return types with arguments of type CallExpression Modifier and Type Method Description Optional<CallExpression>
AggregateExpression. getFilterExpression()
Methods in org.apache.flink.table.expressions with parameters of type CallExpression Modifier and Type Method Description T
ExpressionDefaultVisitor. visit(CallExpression call)
R
ExpressionVisitor. visit(CallExpression call)
Constructors in org.apache.flink.table.expressions with parameters of type CallExpression Constructor Description AggregateExpression(FunctionDefinition functionDefinition, List<FieldReferenceExpression> args, CallExpression filterExpression, DataType resultType, boolean distinct, boolean approximate, boolean ignoreNulls)
-