Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
titleStatementSet
interface StatementSet {
   /** 
    * Asynchronously execute the dml statements as a batch
    */
   CompletableFuture<ResultTable> executeAsync();
}

Add an async execute method to org.apache.flink.table.delegation.Executor

Code Block
languagejava
titleStatementSet
/**
 * Executes all the previously applied transformations via {@link #apply(List)} in an async way.
 * @return
 * @throws Exception
 */
CompletableFuture<JobClient> executeAsync(String jobName) throws Exception;


SQL CLI integrates with new API

...