-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
*: support resource_group sql hint (#41678)
* *: support resource_group sql hint Signed-off-by: BornChanger <[email protected]> * *: refine case Signed-off-by: BornChanger <[email protected]> * *: make case stable Signed-off-by: BornChanger <[email protected]> * *: code format Signed-off-by: BornChanger <[email protected]> * *: relocate the cases Signed-off-by: BornChanger <[email protected]> * *: fix bazel attribute Signed-off-by: BornChanger <[email protected]> * *: fix bazel Signed-off-by: BornChanger <[email protected]> * *: code fmt Signed-off-by: BornChanger <[email protected]> * *: code format Signed-off-by: BornChanger <[email protected]> * *: address comments Signed-off-by: BornChanger <[email protected]> * *: address comments for 2nd round Signed-off-by: BornChanger <[email protected]> * *: polish check logic Signed-off-by: BornChanger <[email protected]> --------- Signed-off-by: BornChanger <[email protected]>
- Loading branch information
1 parent
9958a93
commit 17bbc29
Showing
14 changed files
with
223 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_test") | ||
|
||
go_test( | ||
name = "resourcegrouptest_test", | ||
timeout = "short", | ||
srcs = ["resource_group_test.go"], | ||
flaky = True, | ||
deps = [ | ||
"//ddl/internal/callback", | ||
"//ddl/resourcegroup", | ||
"//domain", | ||
"//domain/infosync", | ||
"//errno", | ||
"//parser/model", | ||
"//sessionctx", | ||
"//testkit", | ||
"@com_github_pingcap_kvproto//pkg/resource_manager", | ||
"@com_github_stretchr_testify//require", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.