This is an automated email from the ASF dual-hosted git repository.
englefly pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 44658e0542d [fix](Nereids) IGNORE_STORAGE_DATA_DISTRIBUTION should not
block generating filter for nested loop join (#32653)
44658e0542d is described below
commit 44658e0542d84aad5dc1e5095390c2ee36176899
Author: minghong <[email protected]>
AuthorDate: Sun Mar 24 22:59:50 2024 +0800
[fix](Nereids) IGNORE_STORAGE_DATA_DISTRIBUTION should not block generating
filter for nested loop join (#32653)
---
.../apache/doris/nereids/processor/post/RuntimeFilterGenerator.java | 5 -----
1 file changed, 5 deletions(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RuntimeFilterGenerator.java
b/fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RuntimeFilterGenerator.java
index 8da3ede4200..55d990365a2 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RuntimeFilterGenerator.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/nereids/processor/post/RuntimeFilterGenerator.java
@@ -446,11 +446,6 @@ public class RuntimeFilterGenerator extends
PlanPostProcessor {
return join;
}
RuntimeFilterContext ctx = context.getRuntimeFilterContext();
- if (ctx.getSessionVariable().isIgnoreStorageDataDistribution()) {
- // BITMAP filter is not supported to merge. So we disable this
kind of runtime filter
- // if IgnoreStorageDataDistribution is enabled.
- return join;
- }
if ((ctx.getSessionVariable().getRuntimeFilterType() &
TRuntimeFilterType.BITMAP.getValue()) != 0) {
generateBitMapRuntimeFilterForNLJ(join, ctx);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]