forked from apache/doris
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix](fe) fix several blocking bugs (apache#37756)
1. Redundant hashCode of FunctionCallExpr.java This line is redundant, and will cause the amount of hashcode calculation to grow exponentially. 2. A potential deadlock of external catalog The following case may causing this deadlock: - high frequency load. - querying external table join inner table on non-master FE. - refresh external catalog frequently. 3. A workaround to avoid FE restart failure because db does not found introduced from apache#33610 and fixed in apache#36530. This PR is to make previous metadata restart successfully.
- Loading branch information
1 parent
43bdb01
commit d0b1910
Showing
3 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters