xy720 commented on code in PR #42872: URL: https://github.com/apache/doris/pull/42872#discussion_r1874599342
########## fe/fe-core/src/main/java/org/apache/doris/datasource/InternalCatalog.java: ########## @@ -880,6 +884,20 @@ public void replayRenameDatabase(String dbName, String newDbName) { LOG.info("replay rename database {} to {}", dbName, newDbName); } + public void checkBuckupRunning(Database db, OlapTable olapTable) throws DdlException { + if (DebugPointUtil.isEnable("FE.checkBuckupRunning.ignore")) { + LOG.info("FE.checkBuckupRunning.ignore"); + return; + } + + BackupJob backupJob = (BackupJob) Env.getCurrentEnv().getBackupHandler().getJob(db.getId()); Review Comment: getBackupHandler().getJob() is possible to return a Restore Job -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org