Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix](test)Disable global cancel policy in regression test #29335

Merged
merged 1 commit into from
Dec 30, 2023
Merged
Show file tree
Hide file tree
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
@@ -1,6 +1,6 @@
-- This file is automatically generated. You should know what you did if you want to edit this
-- !select_policy_tvf --
be_policy query_time > 10 cancel_query 10 true 0
be_policy query_time > 10 cancel_query 10 false 0
fe_policy username = root set_session_variable "workload_group=normal" 10 false 0
move_action_policy query_time > 10 move_query_to_group "normal" 0 true 0
set_action_policy username = root set_session_variable "workload_group=normal" 0 true 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ suite("test_workload_sched_policy") {
"conditions(query_time > 10) " +
"actions(cancel_query) " +
"properties( " +
"'enabled' = 'true', " +
"'enabled' = 'false', " +
"'priority'='10' " +
");"

Expand Down
Loading