Class TableReferenceExpression
- java.lang.Object
-
- org.apache.flink.table.expressions.TableReferenceExpression
-
- All Implemented Interfaces:
Expression
,ResolvedExpression
@PublicEvolving public final class TableReferenceExpression extends Object implements ResolvedExpression
Expression that references another table.This is a pure API expression that is translated into uncorrelated sub-queries by the planner.
-
-
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
getName()
DataType
getOutputDataType()
Returns the data type of the computation result.QueryOperation
getQueryOperation()
List<ResolvedExpression>
getResolvedChildren()
int
hashCode()
String
toString()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.flink.table.expressions.ResolvedExpression
asSerializableString
-
-
-
-
Method Detail
-
getName
public String getName()
-
getQueryOperation
public QueryOperation getQueryOperation()
-
getOutputDataType
public DataType getOutputDataType()
Description copied from interface:ResolvedExpression
Returns the data type of the computation result.- Specified by:
getOutputDataType
in interfaceResolvedExpression
-
getResolvedChildren
public List<ResolvedExpression> getResolvedChildren()
- Specified by:
getResolvedChildren
in interfaceResolvedExpression
-
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
-
-