Skip to content

Commit

Permalink
fix regression
Browse files Browse the repository at this point in the history
  • Loading branch information
feiniaofeiafei committed Jul 17, 2024
1 parent 7ba966a commit 8175ff5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ PhysicalResultSink
-- !test_pull_up_literal_with_common_column --
PhysicalResultSink
--PhysicalProject
----hashJoin[INNER_JOIN] hashCondition=((tmp.col1 = ds.col1) and (tmp.col2 = ds.col2)) otherCondition=() build RFs:RF0 col2->[col2];RF1 col2->[col2]
----hashJoin[INNER_JOIN] hashCondition=((tmp.col1 = ds.col1) and (tmp.col2 = ds.col2)) otherCondition=()
------PhysicalProject
--------filter((t.col2 = 'def'))
----------PhysicalOlapScan[test_pull_up_predicate_literal] apply RFs: RF0 RF1
----------PhysicalOlapScan[test_pull_up_predicate_literal]
------filter((ds.col1 = 'abc') and (ds.col1 = ds.col1) and (ds.col2 = 'def'))
--------PhysicalOlapScan[test_pull_up_predicate_literal]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ suite("test_pull_up_predicate_literal") {
sql """ DROP TABLE IF EXISTS test_pull_up_predicate_literal; """
sql "set enable_fallback_to_original_planner=false"
sql """SET ignore_shape_nodes='PhysicalDistribute'"""
sql 'set runtime_filter_mode=off'

sql """
CREATE TABLE `test_pull_up_predicate_literal` (
Expand Down

0 comments on commit 8175ff5

Please sign in to comment.