Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed Oct 17, 2024
1 parent a913ece commit 6affdf9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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;
"""
}
}

0 comments on commit 6affdf9

Please sign in to comment.