Class ValuesQueryOperation
- java.lang.Object
-
- org.apache.flink.table.operations.ValuesQueryOperation
-
- All Implemented Interfaces:
Operation,QueryOperation
@Internal public class ValuesQueryOperation extends Object implements QueryOperation
Table operation that computes new table using givenExpressions from its input relational operation.
-
-
Constructor Summary
Constructors Constructor Description ValuesQueryOperation(List<List<org.apache.flink.table.expressions.ResolvedExpression>> values, org.apache.flink.table.catalog.ResolvedSchema resolvedSchema)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> Taccept(QueryOperationVisitor<T> visitor)StringasSummaryString()Returns a string that summarizes this operation for printing to a console.booleanequals(Object o)List<QueryOperation>getChildren()org.apache.flink.table.catalog.ResolvedSchemagetResolvedSchema()Resolved schema of this operation.List<List<org.apache.flink.table.expressions.ResolvedExpression>>getValues()inthashCode()StringtoString()-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.flink.table.operations.QueryOperation
asSerializableString
-
-
-
-
Method Detail
-
getResolvedSchema
public org.apache.flink.table.catalog.ResolvedSchema getResolvedSchema()
Description copied from interface:QueryOperationResolved schema of this operation.- Specified by:
getResolvedSchemain interfaceQueryOperation
-
asSummaryString
public String asSummaryString()
Description copied from interface:OperationReturns a string that summarizes this operation for printing to a console. An implementation might skip very specific properties.- Specified by:
asSummaryStringin interfaceOperation- Returns:
- summary string of this operation for debugging purposes
-
getChildren
public List<QueryOperation> getChildren()
- Specified by:
getChildrenin interfaceQueryOperation
-
accept
public <T> T accept(QueryOperationVisitor<T> visitor)
- Specified by:
acceptin interfaceQueryOperation
-
-