diff --git a/regression-test/suites/nereids_rules_p0/eliminate_outer_join/eliminate_outer_join.groovy b/regression-test/suites/nereids_rules_p0/eliminate_outer_join/eliminate_outer_join.groovy index fc38e3be3372f06..4499a0ede49f708 100644 --- a/regression-test/suites/nereids_rules_p0/eliminate_outer_join/eliminate_outer_join.groovy +++ b/regression-test/suites/nereids_rules_p0/eliminate_outer_join/eliminate_outer_join.groovy @@ -25,6 +25,7 @@ suite("eliminate_outer_join") { sql 'set be_number_for_test=3' sql "set enable_parallel_result_sink=false;" sql "set disable_join_reorder=true;" + sql "set enable_nereids_distribute_planner=false;" sql """ DROP TABLE IF EXISTS t 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 933fe3400cfb496..3f959c91fdc04eb 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 @@ -22,6 +22,7 @@ suite("push_down_top_n_distinct_through_join") { sql "SET enable_fallback_to_original_planner=false" sql "SET ignore_shape_nodes='PhysicalDistribute,PhysicalProject'" sql "SET disable_join_reorder=true" + sql "set enable_nereids_distribute_planner=false;" sql """ DROP TABLE IF EXISTS table_join; @@ -66,4 +67,4 @@ suite("push_down_top_n_distinct_through_join") { qt_push_down_topn_through_join_data """ select distinct * from (select t1.id from table_join t1 cross join table_join t2) t order by id limit 10; """ -} \ No newline at end of file +}