Package org.apache.flink.table.api
Interface Executable
- All Known Subinterfaces:
CompiledPlan,StatementSet,Table,TablePipeline
- All Known Implementing Classes:
StatementSetImpl,TableImpl
@PublicEvolving
public interface Executable
Represents an artifact that can be executed.
- See Also:
-
Method Summary
-
Method Details
-
execute
TableResult execute()Executes this object.By default, all DML operations are executed asynchronously. Use
TableResult.await()orTableResult.getJobClient()to monitor the execution. SetTableConfigOptions.TABLE_DML_SYNCfor always synchronous execution.
-