Skip to content

Commit

Permalink
Merge pull request #3845 from actiontech/inner-2371_2
Browse files Browse the repository at this point in the history
[inner-2371] fix: sql execution hang problem caused by the inability to respond to the front side due to unprocessed packets (2).
  • Loading branch information
wenyh1 authored Nov 14, 2023
2 parents 1bc1d5d + 07c0c1f commit 5f16887
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ public BufferPoolRecord.Builder generateBufferRecordBuilder() {
@Override
protected Executor getExecutor() {
Executor executor;
if (complexQuery) {
if (complexQuery || SystemConfig.getInstance().getUsePerformanceMode() == 1) {
executor = DbleServer.getInstance().getComplexQueryExecutor();
} else {
executor = DbleServer.getInstance().getBackendExecutor();
Expand Down

0 comments on commit 5f16887

Please sign in to comment.