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 aFunctionDefinition.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
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> Raccept(org.apache.flink.table.expressions.ExpressionVisitor<R> visitor)StringasSummaryString()booleanequals(Object o)List<org.apache.flink.table.expressions.Expression>getChildren()org.apache.flink.table.functions.FunctionDefinitiongetFunctionDefinition()Optional<org.apache.flink.table.functions.FunctionIdentifier>getFunctionIdentifier()inthashCode()UnresolvedCallExpressionreplaceArgs(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)StringtoString()
-
-
-
Method Detail
-
getFunctionIdentifier
public Optional<org.apache.flink.table.functions.FunctionIdentifier> 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
public String asSummaryString()
- Specified by:
asSummaryStringin interfaceorg.apache.flink.table.expressions.Expression
-
getChildren
public List<org.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
-
-