morningman opened a new pull request, #25965: URL: https://github.com/apache/doris/pull/25965
## Proposed changes ``` ERROR (stateListener|103) [EditLog.loadJournal():984] Operation Type 131 java.lang.RuntimeException: org.apache.doris.common.UserException: errCode = 2, detailMessage = function name does not exist: ase_encryp at org.apache.doris.catalog.Database.replayDropFunction(Database.java:727) ~[doris-fe.jar:1.0-SNAPSHOT] at ``` When replaying `drop function` edit log, the function may not be found, causing runtime exception and FE will fail to start. The function SHOULD be exist, but the reason is still unknown. I change the logic to NOT throw exception if function is not found. This is a workaround to make sure FE can start, and add some log for later debug. ## Further comments If this is a relatively large or complex change, kick off the discussion at [[email protected]](mailto:[email protected]) by explaining why you chose the solution you did and what alternatives you considered, etc... -- 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]
