qidaye commented on issue #5496: URL: https://github.com/apache/incubator-doris/issues/5496#issuecomment-796501603
I encountered this problem too, the error message should be more clear. The only way to know the real reason for this is when you read the code. ```java TabletMeta tabletMeta = invertedIndex.getTabletMeta(tabletId); long dbId = tabletMeta != null ? tabletMeta.getDbId() : TabletInvertedIndex.NOT_EXIST_VALUE; ... Database db = Catalog.getCurrentCatalog().getDb(dbId); if (db == null) { throw new MetaNotFoundException("db[" + dbId + "] does not exist"); } ``` ---------------------------------------------------------------- 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. 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