Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ suite("query85") {
sql "SET enable_dphyp_optimizer = true"
sql "set max_table_count_use_cascades_join_reorder = 1"
sql "set dphyper_limit=2600"
sql "set join_reorder_time_limit=10000"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This setting name does not exist in Doris. The registered session variable is join_order_time_limit (SessionVariable.JOIN_REORDER_TIME_LIMIT), and joinReorderTimeLimit is annotated with that name; for an unknown name, VariableMgr.setVar raises ERR_UNKNOWN_SYSTEM_VARIABLE. As written, this test fails on the SET before it reaches the qt_ds_shape_85 plan check, so it will not stabilize the DPHyp shape. Did you mean set join_order_time_limit=10000?


def ds = """select substr(r_reason_desc,1,20)
,avg(ws_quantity)
Expand Down
Loading