TsukiokaKogane commented on code in PR #61382:
URL: https://github.com/apache/doris/pull/61382#discussion_r2974952679


##########
fe/fe-core/src/main/java/org/apache/doris/catalog/Env.java:
##########
@@ -4932,21 +4981,33 @@ public void dropTable(DropMTMVCommand command) throws 
DdlException {
             throw new DdlException("DropMTMVCommand is null");
         }
         DropMTMVInfo dropMTMVInfo = command.getDropMTMVInfo();
-        dropTable(dropMTMVInfo.getCatalogName(), dropMTMVInfo.getDbName(), 
dropMTMVInfo.getTableName(), false,
-                true, dropMTMVInfo.isIfExists(), false, true);
+        dropTable(dropMTMVInfo.getCatalogName(), dropMTMVInfo.getDbName(), 
dropMTMVInfo.getTableName(), false, true,
+                false, dropMTMVInfo.isIfExists(), false, true);
     }
 
     public void dropTable(String catalogName, String dbName, String tableName, 
boolean isView, boolean isMtmv,
-                          boolean ifExists, boolean mustTemporary, boolean 
force) throws DdlException {
+                          boolean isStream, boolean ifExists, boolean 
mustTemporary, boolean force)

Review Comment:
   as dropTable is a interface of catalogIf, we may have to do about the same 
amount of works anyways. So I think the current modification is better.



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


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to