Class LookupCallExpression
- java.lang.Object
-
- org.apache.flink.table.expressions.LookupCallExpression
-
- All Implemented Interfaces:
Expression
@PublicEvolving public final class LookupCallExpression extends Object implements 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> R
accept(ExpressionVisitor<R> visitor)
String
asSummaryString()
Returns a string that summarizes this expression for printing to a console.boolean
equals(Object o)
List<Expression>
getChildren()
String
getUnresolvedName()
int
hashCode()
String
toString()
-
-
-
Method Detail
-
getUnresolvedName
public String getUnresolvedName()
-
asSummaryString
public String asSummaryString()
Description copied from interface:Expression
Returns a string that summarizes this expression for printing to a console. An implementation might skip very specific properties.- Specified by:
asSummaryString
in interfaceExpression
- Returns:
- summary string of this expression for debugging purposes
-
getChildren
public List<Expression> getChildren()
- Specified by:
getChildren
in interfaceExpression
-
accept
public <R> R accept(ExpressionVisitor<R> visitor)
- Specified by:
accept
in interfaceExpression
-
-