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 61a9d83abfe [FLINK-27188][Connector][StreamingFileSink] Mark StreamingFileSink as deprecated since it has been replaced by FileSink. This includes replacing or removing references to StreamingFileSink in the documentation add 81379a56495 [FLINK-27931][sql-gateway] Introduce the SqlGateway to assemble all components No new revisions were added by this update. Summary of changes: .../SqlGatewayEndpointFactoryUtilsTest.java | 20 ++- .../api/utils/MockedSqlGatewayEndpoint.java | 26 ++- .../api/utils/MockedSqlGatewayEndpointFactory.java | 4 + .../org/apache/flink/table/gateway/SqlGateway.java | 174 +++++++++++++++++++++ .../flink/table/gateway/cli/SqlGatewayOptions.java | 27 ++-- .../table/gateway/cli/SqlGatewayOptionsParser.java | 106 +++++++++++++ .../gateway/service/context/DefaultContext.java | 5 +- .../apache/flink/table/gateway/SqlGatewayTest.java | 120 ++++++++++++++ .../service/utils/SqlGatewayServiceExtension.java | 2 +- 9 files changed, 455 insertions(+), 29 deletions(-) create mode 100644 flink-table/flink-sql-gateway/src/main/java/org/apache/flink/table/gateway/SqlGateway.java copy flink-clients/src/main/java/org/apache/flink/client/cli/CommandLineOptions.java => flink-table/flink-sql-gateway/src/main/java/org/apache/flink/table/gateway/cli/SqlGatewayOptions.java (62%) create mode 100644 flink-table/flink-sql-gateway/src/main/java/org/apache/flink/table/gateway/cli/SqlGatewayOptionsParser.java create mode 100644 flink-table/flink-sql-gateway/src/test/java/org/apache/flink/table/gateway/SqlGatewayTest.java