From a3fe2c75cf58d17c15221d8685807c0e747a9fdc Mon Sep 17 00:00:00 2001 From: 924060929 <924060929@qq.com> Date: Thu, 4 Jul 2024 22:41:55 +0800 Subject: [PATCH] fix shuffle left bucket join --- .../org/apache/doris/nereids/properties/PhysicalProperties.java | 1 + 1 file changed, 1 insertion(+) diff --git a/fe/fe-core/src/main/java/org/apache/doris/nereids/properties/PhysicalProperties.java b/fe/fe-core/src/main/java/org/apache/doris/nereids/properties/PhysicalProperties.java index 24911b1d50337c9..bc001548e509c34 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/nereids/properties/PhysicalProperties.java +++ b/fe/fe-core/src/main/java/org/apache/doris/nereids/properties/PhysicalProperties.java @@ -101,6 +101,7 @@ public static PhysicalProperties createHash(DistributionSpecHash distributionSpe return new PhysicalProperties(distributionSpecHash); } + /** createAnyFromHash */ public static PhysicalProperties createAnyFromHash(DistributionSpecHash... childSpecs) { for (DistributionSpecHash childSpec : childSpecs) { if (childSpec.getShuffleType() == ShuffleType.NATURAL) {