[Improvement](bitmap-filter) enable bitmap runtime filter in fuzzy mode. (#17621)

This commit is contained in:
luozenglin
2023-04-21 16:00:13 +08:00
committed by GitHub
parent c82964a294
commit c72a46f3df

View File

@ -863,10 +863,12 @@ public class SessionVariable implements Serializable, Writable {
this.enablePipelineEngine = true;
// this.enableFoldConstantByBe = true;
// this.enableTwoPhaseReadOpt = false;
this.runtimeFilterType |= TRuntimeFilterType.BITMAP.getValue();
} else {
// this.enablePipelineEngine = false;
// this.enableFoldConstantByBe = false;
// this.enableTwoPhaseReadOpt = true;
this.runtimeFilterType &= ~TRuntimeFilterType.BITMAP.getValue();
}
if (Config.fuzzy_test_type.equals("p0")) {