hackergin commented on code in PR #25988: URL: https://github.com/apache/flink/pull/25988#discussion_r1919690980
########## flink-table/flink-sql-gateway/src/main/java/org/apache/flink/table/gateway/service/materializedtable/MaterializedTableManager.java: ########## @@ -1244,4 +1278,99 @@ private static List<RowData> fetchAllResults(ResultFetcher resultFetcher) { } return results; } + + private JobExecutionResult executeJob( + String script, + Configuration executionConfig, + OperationExecutor operationExecutor, + OperationHandle operationHandle) { + if (isApplicationMode(operationExecutor.getSessionContext().getSessionConf())) { Review Comment: I spent some time researching the execution mode of local. For the local mode, the corresponding execution environment is minicluster. So I understand that we need to support the local mode? In this case, clusterId may also be null. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org