forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
*: improve planner/core to make test faster (pingcap#41416)
ref pingcap#41377
- Loading branch information
1 parent
2de1d17
commit 2f9e7b2
Showing
79 changed files
with
12,533 additions
and
12,272 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 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,71 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_test") | ||
|
||
go_test( | ||
name = "casetest_test", | ||
timeout = "short", | ||
srcs = [ | ||
"binary_plan_test.go", | ||
"cbo_test.go", | ||
"enforce_mpp_test.go", | ||
"expression_rewriter_test.go", | ||
"flat_plan_test.go", | ||
"integration_partition_test.go", | ||
"integration_test.go", | ||
"main_test.go", | ||
"partition_pruner_test.go", | ||
"physical_plan_test.go", | ||
"plan_test.go", | ||
"point_get_plan_test.go", | ||
"predicate_simplification_test.go", | ||
"rule_derive_topn_from_window_test.go", | ||
"rule_inject_extra_projection_test.go", | ||
"rule_join_reorder_test.go", | ||
"rule_result_reorder_test.go", | ||
"stats_test.go", | ||
"window_push_down_test.go", | ||
], | ||
data = glob(["testdata/**"]), | ||
flaky = True, | ||
shard_count = 50, | ||
deps = [ | ||
"//config", | ||
"//domain", | ||
"//executor", | ||
"//expression", | ||
"//expression/aggregation", | ||
"//infoschema", | ||
"//kv", | ||
"//parser", | ||
"//parser/ast", | ||
"//parser/model", | ||
"//parser/mysql", | ||
"//parser/terror", | ||
"//planner", | ||
"//planner/core", | ||
"//planner/core/internal", | ||
"//planner/property", | ||
"//session", | ||
"//sessionctx/stmtctx", | ||
"//sessionctx/variable", | ||
"//sessiontxn", | ||
"//statistics", | ||
"//statistics/handle", | ||
"//testkit", | ||
"//testkit/external", | ||
"//testkit/testdata", | ||
"//testkit/testmain", | ||
"//testkit/testsetup", | ||
"//types", | ||
"//util", | ||
"//util/collate", | ||
"//util/hint", | ||
"//util/logutil", | ||
"//util/mock", | ||
"//util/plancodec", | ||
"@com_github_golang_snappy//:snappy", | ||
"@com_github_pingcap_failpoint//:failpoint", | ||
"@com_github_pingcap_tipb//go-tipb", | ||
"@com_github_stretchr_testify//require", | ||
"@org_uber_go_goleak//:goleak", | ||
], | ||
) |
Oops, something went wrong.