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 aTable
into a DataStream.
-
-
Constructor Summary
Constructors Constructor Description ExternalModifyOperation(ContextResolvedTable contextResolvedTable, QueryOperation child, ChangelogMode changelogMode, DataType physicalDataType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
accept(ModifyOperationVisitor<T> visitor)
String
asSummaryString()
Returns a string that summarizes this operation for printing to a console.Optional<ChangelogMode>
getChangelogMode()
QueryOperation
getChild()
ContextResolvedTable
getContextResolvedTable()
DataType
getPhysicalDataType()
-
-
-
Constructor Detail
-
ExternalModifyOperation
public ExternalModifyOperation(ContextResolvedTable contextResolvedTable, QueryOperation child, @Nullable ChangelogMode changelogMode, DataType physicalDataType)
-
-
Method Detail
-
getContextResolvedTable
public ContextResolvedTable getContextResolvedTable()
-
getChild
public QueryOperation getChild()
- Specified by:
getChild
in interfaceModifyOperation
-
getPhysicalDataType
public DataType getPhysicalDataType()
-
getChangelogMode
public Optional<ChangelogMode> getChangelogMode()
-
accept
public <T> T accept(ModifyOperationVisitor<T> visitor)
- Specified by:
accept
in interfaceModifyOperation
-
asSummaryString
public String asSummaryString()
Description copied from interface:Operation
Returns a string that summarizes this operation for printing to a console. An implementation might skip very specific properties.- Specified by:
asSummaryString
in interfaceOperation
- Returns:
- summary string of this operation for debugging purposes
-
-