Class ExternalModifyOperation
- java.lang.Object
-
- org.apache.flink.table.operations.ExternalModifyOperation
-
- All Implemented Interfaces:
ModifyOperation,Operation
@Internal public final class ExternalModifyOperation extends Object implements ModifyOperation
Internal operation used to convert aTableinto a DataStream.
-
-
Constructor Summary
Constructors Constructor Description ExternalModifyOperation(ContextResolvedTable contextResolvedTable, QueryOperation child, org.apache.flink.table.connector.ChangelogMode changelogMode, org.apache.flink.table.types.DataType physicalDataType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> Taccept(ModifyOperationVisitor<T> visitor)StringasSummaryString()Returns a string that summarizes this operation for printing to a console.Optional<org.apache.flink.table.connector.ChangelogMode>getChangelogMode()QueryOperationgetChild()ContextResolvedTablegetContextResolvedTable()org.apache.flink.table.types.DataTypegetPhysicalDataType()
-
-
-
Constructor Detail
-
ExternalModifyOperation
public ExternalModifyOperation(ContextResolvedTable contextResolvedTable, QueryOperation child, @Nullable org.apache.flink.table.connector.ChangelogMode changelogMode, org.apache.flink.table.types.DataType physicalDataType)
-
-
Method Detail
-
getContextResolvedTable
public ContextResolvedTable getContextResolvedTable()
-
getChild
public QueryOperation getChild()
- Specified by:
getChildin interfaceModifyOperation
-
getPhysicalDataType
public org.apache.flink.table.types.DataType getPhysicalDataType()
-
getChangelogMode
public Optional<org.apache.flink.table.connector.ChangelogMode> getChangelogMode()
-
accept
public <T> T accept(ModifyOperationVisitor<T> visitor)
- Specified by:
acceptin interfaceModifyOperation
-
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
-
-