FangYongs commented on code in PR #22768:
URL: https://github.com/apache/flink/pull/22768#discussion_r1378393971


##########
flink-table/flink-sql-gateway/src/main/java/org/apache/flink/table/gateway/service/operation/OperationExecutor.java:
##########
@@ -176,14 +184,17 @@ public ResultFetcher configureSession(OperationHandle 
handle, String statement)
             return callSetOperation(tableEnv, handle, (SetOperation) op);
         } else if (op instanceof ResetOperation) {
             return callResetOperation(handle, (ResetOperation) op);
+        } else if (op instanceof AddJarOperation) {
+            return callExecutableOperation(handle, (ExecutableOperation) op);

Review Comment:
   You're right, we don't need it, I'll remove this



-- 
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]

Reply via email to