Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Jun 12, 2024
1 parent fd33f28 commit 1cbabf7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ protected boolean useShareScan(Map<Worker, UninstancedScanSource> workerToScanRa
protected boolean parallelTooLittle(Map<Worker, UninstancedScanSource> workerToScanRanges) {
if (this instanceof UnassignedScanBucketOlapTableJob) {
return scanRangesToLittle(workerToScanRanges) && bucketsTooLittle(workerToScanRanges);
} else if (!scanNodes.isEmpty()) {
} else if (this instanceof UnassignedScanSingleOlapTableJob
|| this instanceof UnassignedScanSingleRemoteTableJob) {
return scanRangesToLittle(workerToScanRanges);
} else {
return false;
Expand Down

0 comments on commit 1cbabf7

Please sign in to comment.