Shekharrajak commented on code in PR #28789:
URL: https://github.com/apache/flink/pull/28789#discussion_r3712174135


##########
flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/operations/ddl/DropConnectionOperation.java:
##########
@@ -0,0 +1,89 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.flink.table.operations.ddl;
+
+import org.apache.flink.annotation.Internal;
+import org.apache.flink.table.api.internal.TableResultImpl;
+import org.apache.flink.table.api.internal.TableResultInternal;
+import org.apache.flink.table.catalog.ObjectIdentifier;
+import org.apache.flink.table.operations.Operation;
+import org.apache.flink.table.operations.OperationUtils;
+
+import java.util.Collections;
+import java.util.LinkedHashMap;
+import java.util.Map;
+
+/** Operation to describe a DROP CONNECTION statement. */
+@Internal
+public class DropConnectionOperation implements DropOperation {
+
+    private final ObjectIdentifier connectionIdentifier;
+    private final boolean ifExists;
+    private final boolean isTemporary;
+    private final boolean isSystemConnection;
+
+    public DropConnectionOperation(
+            ObjectIdentifier connectionIdentifier,
+            boolean ifExists,
+            boolean isTemporary,
+            boolean isSystemConnection) {
+        this.connectionIdentifier = connectionIdentifier;
+        this.ifExists = ifExists;
+        this.isTemporary = isTemporary;
+        this.isSystemConnection = isSystemConnection;
+    }
+
+    public ObjectIdentifier getConnectionIdentifier() {
+        return connectionIdentifier;
+    }
+
+    public boolean isIfExists() {
+        return ifExists;
+    }
+
+    public boolean isTemporary() {
+        return isTemporary;
+    }
+
+    public boolean isSystemConnection() {
+        return isSystemConnection;
+    }
+
+    @Override
+    public String asSummaryString() {
+        Map<String, Object> params = new LinkedHashMap<>();
+        params.put("identifier", connectionIdentifier);
+        params.put("ifExists", ifExists);
+        params.put("isTemporary", isTemporary);
+        params.put("isSystemConnection", isSystemConnection);
+
+        return OperationUtils.formatWithChildren(
+                "DROP CONNECTION", params, Collections.emptyList(), 
Operation::asSummaryString);
+    }
+
+    @Override
+    public TableResultInternal execute(Context ctx) {
+        if (isTemporary) {
+            
ctx.getCatalogManager().dropTemporaryConnection(connectionIdentifier, ifExists);
+        } else {
+            ctx.getCatalogManager().dropConnection(connectionIdentifier, 
ifExists);
+        }

Review Comment:
   Right now  DROP TEMPORARY SYSTEM CONNECTION my_conn behaves the same as DROP 
TEMPORARY CONNECTION my_conn after parsing. 
   Do you think we should have check `isTemporary and `isSystemConnection` for 
system connection and different logic to drop it ? 
   Please share rough idea why it needs to be dropped with different logic. 



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