This is an automated email from the ASF dual-hosted git repository. shengkai pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
from 4952b58d27b [FLINK-36120][Runtime] Declare context variables without the ability of serialization add b700f1c2dec [FLINK-36758][sql-gateway] Introduce driver to load the application in application mode (#25724) No new revisions were added by this update. Summary of changes: .../main/java/org/apache/flink/util/FileUtils.java | 2 +- .../gateway/service/application/ScriptRunner.java | 68 +++++ .../service/application/ScriptRunnerITCase.java | 274 +++++++++++++++++++++ .../gateway/service/utils/MockHttpServer.java | 98 ++++++++ .../flink/table/runtime/application/SqlDriver.java | 223 +++++++++++++++++ 5 files changed, 664 insertions(+), 1 deletion(-) create mode 100644 flink-table/flink-sql-gateway/src/main/java/org/apache/flink/table/gateway/service/application/ScriptRunner.java create mode 100644 flink-table/flink-sql-gateway/src/test/java/org/apache/flink/table/gateway/service/application/ScriptRunnerITCase.java create mode 100644 flink-table/flink-sql-gateway/src/test/java/org/apache/flink/table/gateway/service/utils/MockHttpServer.java create mode 100644 flink-table/flink-table-runtime/src/main/java/org/apache/flink/table/runtime/application/SqlDriver.java