Interface ModifyOperation
-
- All Superinterfaces:
Operation
- All Known Implementing Classes:
CollectModifyOperation
,CreateTableASOperation
,DeleteFromFilterOperation
,ExternalModifyOperation
,OutputConversionModifyOperation
,ReplaceTableAsOperation
,SinkModifyOperation
,StagedSinkModifyOperation
,UnregisteredSinkModifyOperation
@Internal public interface ModifyOperation extends Operation
AOperation
that describes the DML queries such as e.g. INSERT or conversion to a DataStream.A tree of
QueryOperation
with aModifyOperation
on top represents a runnable query that can be transformed into a graph ofTransformation
viaPlanner.translate(List)
- See Also:
QueryOperation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> T
accept(ModifyOperationVisitor<T> visitor)
QueryOperation
getChild()
-
Methods inherited from interface org.apache.flink.table.operations.Operation
asSummaryString
-
-
-
-
Method Detail
-
getChild
QueryOperation getChild()
-
accept
<T> T accept(ModifyOperationVisitor<T> visitor)
-
-