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