Class LookupCallExpression
- java.lang.Object
-
- org.apache.flink.table.expressions.LookupCallExpression
-
- All Implemented Interfaces:
org.apache.flink.table.expressions.Expression
@PublicEvolving public final class LookupCallExpression extends Object implements org.apache.flink.table.expressions.Expression
A call expression where the target function has not been resolved yet.Instead of a
FunctionDefinition, the call is identified by the function's name and needs to be lookup in a catalog
-
-
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()StringgetUnresolvedName()inthashCode()StringtoString()
-
-
-
Method Detail
-
getUnresolvedName
public String getUnresolvedName()
-
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
-
-