snuyanzin commented on code in PR #25810:
URL: https://github.com/apache/flink/pull/25810#discussion_r1894890415


##########
flink-table/flink-table-api-java/src/main/java/org/apache/flink/table/api/internal/TableEnvironmentImpl.java:
##########
@@ -649,6 +649,13 @@ public boolean dropTemporaryTable(String path) {
         }
     }
 
+    @Override
+    public boolean dropTable(String path) {
+        UnresolvedIdentifier unresolvedIdentifier = 
getParser().parseIdentifier(path);
+        ObjectIdentifier identifier = 
catalogManager.qualifyIdentifier(unresolvedIdentifier);
+        return catalogManager.dropTable(identifier, true);

Review Comment:
   got it, thanks
   fixed, also added a test for that case



-- 
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: issues-unsubscr...@flink.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to