davidradl commented on code in PR #25705:
URL: https://github.com/apache/flink/pull/25705#discussion_r1862326643
##########
flink-table/flink-sql-gateway/src/main/java/org/apache/flink/table/gateway/rest/util/SqlGatewayRestAPIVersion.java:
##########
@@ -51,7 +51,10 @@ public enum SqlGatewayRestAPIVersion
V2(false, true),
// V3 introduces materialized table related APIs
- V3(true, true);
+ V3(false, true),
+
+ // V4 supports to deploy script to application cluster
+ V4(true, true);
Review Comment:
I cant see an incompatible change in the API in FLIP-480 that would need a
new version. When we remove calls - then "The Flink community is preparing to
remove support for per-job submission." the version will need to change then.
I am curious whether this version change should be delayed until there is an
incompatible REST change. Or has the incompatible change already gone in?
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]