This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch dev-1.1.2
in repository https://gitbox.apache.org/repos/asf/doris.git

commit 073d084b29e0d1db3f642dd5f857eb13d2302da2
Author: Mingyu Chen <morningman....@gmail.com>
AuthorDate: Fri Aug 12 11:40:20 2022 +0800

    [minor](recycle) add log to observe bug (#11687)
---
 .../src/main/java/org/apache/doris/catalog/CatalogRecycleBin.java      | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/fe/fe-core/src/main/java/org/apache/doris/catalog/CatalogRecycleBin.java 
b/fe/fe-core/src/main/java/org/apache/doris/catalog/CatalogRecycleBin.java
index 1fbc2d2f43..79d3d3f380 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/catalog/CatalogRecycleBin.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/catalog/CatalogRecycleBin.java
@@ -220,14 +220,13 @@ public class CatalogRecycleBin extends MasterDaemon 
implements Writable {
     }
 
     public synchronized void replayEraseTable(long tableId) {
+        LOG.info("before replay erase table[{}]", tableId);
         RecycleTableInfo tableInfo = idToTable.remove(tableId);
         idToRecycleTime.remove(tableId);
-
         Table table = tableInfo.getTable();
         if (table.getType() == TableType.OLAP && 
!Catalog.isCheckpointThread()) {
             Catalog.getCurrentCatalog().onEraseOlapTable((OlapTable) table, 
true);
         }
-
         LOG.info("replay erase table[{}]", tableId);
     }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to