Skip to content

Commit

Permalink
[fix](Nereids) IGNORE_STORAGE_DATA_DISTRIBUTION should not block gene…
Browse files Browse the repository at this point in the history
…rating filter for nested loop join (apache#32653)
  • Loading branch information
englefly authored Mar 24, 2024
1 parent 7d0b875 commit 44658e0
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -446,11 +446,6 @@ public PhysicalPlan visitPhysicalNestedLoopJoin(PhysicalNestedLoopJoin<? extends
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);
Expand Down

0 comments on commit 44658e0

Please sign in to comment.