Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix](nereids) Create Runtime filter even if equal.right is not in aliasTransferMap #46406

Merged
merged 3 commits into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix-case
  • Loading branch information
englefly committed Jan 4, 2025
commit b944ffdf21515e003bc9b6f96051b5680deb406f
4 changes: 2 additions & 2 deletions regression-test/data/nereids_p0/runtime_filter/check_rf.out
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
PhysicalResultSink
--PhysicalDistribute[DistributionSpecGather]
----PhysicalProject
------hashJoin[INNER_JOIN broadcast] hashCondition=((t1.id = t2.maxId)) otherCondition=() build RFs:RF0 maxId->[id];RF1 maxId->[id]
------hashJoin[INNER_JOIN broadcast] hashCondition=((t1.id = t2.maxId)) otherCondition=() build RFs:RF0 maxId->[id]
--------PhysicalProject
----------PhysicalOlapScan[t1] apply RFs: RF0 RF1
----------PhysicalOlapScan[t1] apply RFs: RF0
--------PhysicalProject
----------hashAgg[GLOBAL]
------------PhysicalDistribute[DistributionSpecHash]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ suite("check_rf") {
drop table if exists t1;
set disable_join_reorder=true;
set enable_parallel_result_sink=false;
set runtime_filter_type=2;
"""
sql """
CREATE TABLE IF NOT EXISTS t1 (
Expand Down
Loading