This is an automated email from the ASF dual-hosted git repository.
morrysnow pushed a commit to branch branch-3.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.1 by this push:
new 0cb459cc84f branch-3.1: [opt](nereids) optimize one bucket tpcds
performance #47371 (#51970)
0cb459cc84f is described below
commit 0cb459cc84f37ccfe93d072f8d60d127c9d85d30
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jun 20 10:31:48 2025 +0800
branch-3.1: [opt](nereids) optimize one bucket tpcds performance #47371
(#51970)
Cherry-picked from #47371
Co-authored-by: 924060929 <[email protected]>
---
.../apache/doris/nereids/properties/ChildrenPropertiesRegulator.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/nereids/properties/ChildrenPropertiesRegulator.java
b/fe/fe-core/src/main/java/org/apache/doris/nereids/properties/ChildrenPropertiesRegulator.java
index 9985b9c567f..5bd24f9e778 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/nereids/properties/ChildrenPropertiesRegulator.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/nereids/properties/ChildrenPropertiesRegulator.java
@@ -216,8 +216,7 @@ public class ChildrenPropertiesRegulator extends
PlanVisitor<Boolean, Void> {
boolean isEnableBucketShuffleJoin =
ConnectContext.get().getSessionVariable().isEnableBucketShuffleJoin();
if (!isEnableBucketShuffleJoin) {
return true;
- } else if (otherSideSpec.getShuffleType() !=
ShuffleType.EXECUTION_BUCKETED
- || !(oneSidePlan instanceof GroupPlan)) {
+ } else if (!(oneSidePlan instanceof GroupPlan)) {
return false;
} else {
PhysicalOlapScan candidate =
findDownGradeBucketShuffleCandidate((GroupPlan) oneSidePlan);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]