Yulei-Yang commented on code in PR #40680: URL: https://github.com/apache/doris/pull/40680#discussion_r1975269929
########## fe/fe-core/src/main/java/org/apache/doris/backup/BackupHandler.java: ########## @@ -435,14 +436,27 @@ private void backup(Repository repository, Database db, BackupStmt stmt) throws if (Config.ignore_backup_not_support_table_type) { LOG.warn("Table '{}' is a {} table, can not backup and ignore it." + "Only OLAP(Doris)/ODBC/VIEW table can be backed up", - tblName, tbl.getType().toString()); + tblName, tbl.isTemporary() ? "temporary" : tbl.getType().toString()); tblRefsNotSupport.add(tblRef); continue; } else { ErrorReport.reportDdlException(ErrorCode.ERR_NOT_OLAP_TABLE, tblName); } } + if (tbl.isTemporary()) { + if (Config.ignore_backup_not_support_table_type) { + LOG.warn("Table '{}' is a temporary table, can not backup and ignore it." + + "Only OLAP(Doris)/ODBC/VIEW table can be backed up", + Util.getTempTableDisplayName(tblName)); + tblRefsNotSupport.add(tblRef); + continue; + } else { + ErrorReport.reportDdlException("Table " + Util.getTempTableDisplayName(tblName) Review Comment: what action should take if a backup job only contains one temporary table and has no olap tables? -- 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