This is an automated email from the ASF dual-hosted git repository. jakevin pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new a04fd237fae [fix](Nereids): fix wrong regression test (#30520) a04fd237fae is described below commit a04fd237fae2a95baf47dac8c5d5cd6f5b1ff799 Author: jakevin <jakevin...@gmail.com> AuthorDate: Tue Jan 30 14:26:25 2024 +0800 [fix](Nereids): fix wrong regression test (#30520) --- .../push_down_top_n/push_down_top_n_distinct_through_join.out | 2 +- .../push_down_top_n/push_down_top_n_distinct_through_join.groovy | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/regression-test/data/nereids_rules_p0/push_down_top_n/push_down_top_n_distinct_through_join.out b/regression-test/data/nereids_rules_p0/push_down_top_n/push_down_top_n_distinct_through_join.out index 72452ed3c14..5c3ec397a99 100644 --- a/regression-test/data/nereids_rules_p0/push_down_top_n/push_down_top_n_distinct_through_join.out +++ b/regression-test/data/nereids_rules_p0/push_down_top_n/push_down_top_n_distinct_through_join.out @@ -5,7 +5,7 @@ PhysicalResultSink ----PhysicalTopN[LOCAL_SORT] ------hashAgg[GLOBAL] --------hashAgg[LOCAL] -----------NestedLoopJoin[LEFT_OUTER_JOIN](t1.id = t1.id) +----------hashJoin[LEFT_OUTER_JOIN] hashCondition=((t1.id = t2.id)) otherCondition=() ------------PhysicalTopN[MERGE_SORT] --------------PhysicalTopN[LOCAL_SORT] ----------------hashAgg[LOCAL] diff --git a/regression-test/suites/nereids_rules_p0/push_down_top_n/push_down_top_n_distinct_through_join.groovy b/regression-test/suites/nereids_rules_p0/push_down_top_n/push_down_top_n_distinct_through_join.groovy index 890e2ba897d..3ee3a916e7b 100644 --- a/regression-test/suites/nereids_rules_p0/push_down_top_n/push_down_top_n_distinct_through_join.groovy +++ b/regression-test/suites/nereids_rules_p0/push_down_top_n/push_down_top_n_distinct_through_join.groovy @@ -51,11 +51,11 @@ suite("push_down_top_n_distinct_through_join") { """ qt_push_down_topn_through_join """ - explain shape plan select distinct * from (select t1.id from table_join t1 left join table_join t2 on t1.id = t1.id) t order by id limit 10; + explain shape plan select distinct * from (select t1.id from table_join t1 left join table_join t2 on t1.id = t2.id) t order by id limit 10; """ qt_push_down_topn_through_join_data """ - select distinct * from (select t1.id from table_join t1 left join table_join t2 on t1.id = t1.id) t order by id limit 10; + select distinct * from (select t1.id from table_join t1 left join table_join t2 on t1.id = t2.id) t order by id limit 10; """ qt_push_down_topn_through_join """ --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org