Class UnresolvedCallExpression
java.lang.Object
org.apache.flink.table.expressions.UnresolvedCallExpression
- All Implemented Interfaces:
org.apache.flink.table.expressions.Expression
@PublicEvolving
public final class UnresolvedCallExpression
extends Object
implements org.apache.flink.table.expressions.Expression
Unresolved call expression for calling a function identified by a
FunctionDefinition.
This is purely an API facing expression with unvalidated arguments and unknown output data type.
A unresolved call contains:
- a
FunctionDefinitionthat identifies the function to be called - an optional
FunctionIdentifierthat tracks the origin of a function - whether the called function is temporary
-
Method Summary
Modifier and TypeMethodDescription<R> Raccept(org.apache.flink.table.expressions.ExpressionVisitor<R> visitor) booleanList<org.apache.flink.table.expressions.Expression>org.apache.flink.table.functions.FunctionDefinitionOptional<org.apache.flink.table.functions.FunctionIdentifier>inthashCode()replaceArgs(List<org.apache.flink.table.expressions.Expression> args) org.apache.flink.table.expressions.CallExpressionresolve(List<org.apache.flink.table.expressions.ResolvedExpression> args, org.apache.flink.table.types.DataType dataType) toString()
-
Method Details
-
getFunctionIdentifier
-
getFunctionDefinition
public org.apache.flink.table.functions.FunctionDefinition getFunctionDefinition() -
replaceArgs
public UnresolvedCallExpression replaceArgs(List<org.apache.flink.table.expressions.Expression> args) -
resolve
public org.apache.flink.table.expressions.CallExpression resolve(List<org.apache.flink.table.expressions.ResolvedExpression> args, org.apache.flink.table.types.DataType dataType) -
asSummaryString
- Specified by:
asSummaryStringin interfaceorg.apache.flink.table.expressions.Expression
-
getChildren
- Specified by:
getChildrenin interfaceorg.apache.flink.table.expressions.Expression
-
accept
public <R> R accept(org.apache.flink.table.expressions.ExpressionVisitor<R> visitor) - Specified by:
acceptin interfaceorg.apache.flink.table.expressions.Expression
-
equals
-
hashCode
public int hashCode() -
toString
-