Interface ResolvedExpression
- All Superinterfaces:
Expression
- All Known Implementing Classes:
AggregateExpression,CallExpression,FieldReferenceExpression,NestedFieldReferenceExpression,TypeLiteralExpression,ValueLiteralExpression
Expression that has been fully resolved and validated.
Compared to Expression, resolved expressions do not contain unresolved subexpressions
anymore and provide an output data type for the computation result.
Instances of this class describe a fully parameterized, immutable expression that can be serialized and persisted.
Resolved expression are the output of the API to the planner and are pushed from the planner into interfaces, for example, for predicate push-down.
-
Method Summary
Modifier and TypeMethodDescriptiondefault StringReturns a string that fully serializes this instance.Returns the data type of the computation result.Methods inherited from interface org.apache.flink.table.expressions.Expression
accept, asSummaryString, getChildren
-
Method Details
-
asSerializableString
Returns a string that fully serializes this instance. The serialized string can be used for storing the query in, for example, aCatalogas a view.- Returns:
- detailed string for persisting in a catalog
-
getOutputDataType
DataType getOutputDataType()Returns the data type of the computation result. -
getResolvedChildren
List<ResolvedExpression> getResolvedChildren()
-