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 CallExpressionCallExpression. anonymous(FunctionDefinition functionDefinition, List<ResolvedExpression> args, DataType dataType)Creates aCallExpressionto an anonymous function that has been declared inline without aFunctionIdentifier.static CallExpressionCallExpression. permanent(BuiltInFunctionDefinition builtInFunctionDefinition, List<ResolvedExpression> args, DataType dataType)Creates aCallExpressionto a resolved built-in function.static CallExpressionCallExpression. permanent(FunctionIdentifier functionIdentifier, FunctionDefinition functionDefinition, List<ResolvedExpression> args, DataType dataType)CallExpressionCallExpression. replaceArgs(List<ResolvedExpression> args, DataType dataType)static CallExpressionCallExpression. temporary(FunctionIdentifier functionIdentifier, FunctionDefinition functionDefinition, List<ResolvedExpression> args, DataType dataType)Creates aCallExpressionto a temporary function (potentially shadowing aCatalogfunction 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 TExpressionDefaultVisitor. visit(CallExpression call)RExpressionVisitor. 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)
-