Skip to content

Commit

Permalink
fix rt: disable_join reorder
Browse files Browse the repository at this point in the history
  • Loading branch information
englefly committed Sep 11, 2024
1 parent a656d37 commit 12fd243
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ suite("extract_from_disjunction_in_join") {
sql "SET enable_fallback_to_original_planner=false"
sql "set ignore_shape_nodes='PhysicalDistribute,PhysicalProject'"
sql "set disable_nereids_rules=PRUNE_EMPTY_PARTITION"
sql "set runtime_filter_mode=OFF"
sql """
set runtime_filter_mode=OFF;
set disable_join_reorder=true;
"""


sql "drop table if exists extract_from_disjunction_in_join_t1"
Expand Down

0 comments on commit 12fd243

Please sign in to comment.