Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Nov 13, 2024
1 parent 78906df commit 974cbb1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 31 deletions.
45 changes: 15 additions & 30 deletions regression-test/data/nereids_p0/stats/invalid_stats.out
Original file line number Diff line number Diff line change
@@ -1,46 +1,31 @@
-- This file is automatically generated. You should know what you did if you want to edit this
-- !reorder_1 --
PhysicalResultSink
--PhysicalProject
----hashJoin[INNER_JOIN broadcast] hashCondition=((region.r_regionkey = nation.n_regionkey)) otherCondition=()
------PhysicalProject
--------PhysicalOlapScan[nation]
------PhysicalProject
--------PhysicalOlapScan[region]
--hashJoin[INNER_JOIN broadcast] hashCondition=((region.r_regionkey = nation.n_regionkey)) otherCondition=()
----PhysicalOlapScan[nation]
----PhysicalOlapScan[region]

-- !ndv_min_max_invalid --
PhysicalResultSink
--PhysicalProject
----hashJoin[INNER_JOIN broadcast] hashCondition=((region.r_regionkey = nation.n_regionkey)) otherCondition=()
------PhysicalProject
--------PhysicalOlapScan[region]
------PhysicalProject
--------PhysicalOlapScan[nation]
--hashJoin[INNER_JOIN broadcast] hashCondition=((region.r_regionkey = nation.n_regionkey)) otherCondition=()
----PhysicalOlapScan[region]
----PhysicalOlapScan[nation]

-- !reorder_2 --
PhysicalResultSink
--PhysicalProject
----hashJoin[INNER_JOIN broadcast] hashCondition=((region.r_regionkey = nation.n_regionkey)) otherCondition=()
------PhysicalProject
--------PhysicalOlapScan[nation]
------PhysicalProject
--------PhysicalOlapScan[region]
--hashJoin[INNER_JOIN broadcast] hashCondition=((region.r_regionkey = nation.n_regionkey)) otherCondition=()
----PhysicalOlapScan[nation]
----PhysicalOlapScan[region]

-- !order_3 --
PhysicalResultSink
--PhysicalProject
----hashJoin[INNER_JOIN broadcast] hashCondition=((region.r_regionkey = nation.n_regionkey)) otherCondition=()
------PhysicalProject
--------PhysicalOlapScan[nation]
------PhysicalProject
--------PhysicalOlapScan[region]
--hashJoin[INNER_JOIN broadcast] hashCondition=((region.r_regionkey = nation.n_regionkey)) otherCondition=()
----PhysicalOlapScan[nation]
----PhysicalOlapScan[region]

-- !ndv_row_invalid --
PhysicalResultSink
--PhysicalProject
----hashJoin[INNER_JOIN broadcast] hashCondition=((region.r_regionkey = nation.n_regionkey)) otherCondition=()
------PhysicalProject
--------PhysicalOlapScan[region]
------PhysicalProject
--------PhysicalOlapScan[nation]
--hashJoin[INNER_JOIN broadcast] hashCondition=((region.r_regionkey = nation.n_regionkey)) otherCondition=()
----PhysicalOlapScan[region]
----PhysicalOlapScan[nation]

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ suite("invalid_stats") {
SET enable_nereids_planner=true;
SET enable_fallback_to_original_planner=false;
set disable_nereids_rules=PRUNE_EMPTY_PARTITION;
set ignore_shape_nodes=PhysicalProject;
drop table if exists region;
CREATE TABLE region (
Expand Down

0 comments on commit 974cbb1

Please sign in to comment.