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.
This is an automated cherry-pick of pingcap#56609
Signed-off-by: ti-chi-bot <ti-community-prow-bot@tidb.io>
- Loading branch information
1 parent
116ffee
commit 0cb6214
Showing
14 changed files
with
9,010 additions
and
13 deletions.
There are no files selected for viewing
1,900 changes: 1,900 additions & 0 deletions
1,900
pkg/planner/core/casetest/hint/testdata/integration_suite_out.json
Large diffs are not rendered by default.
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,37 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_test") | ||
|
||
go_test( | ||
name = "planstats_test", | ||
timeout = "short", | ||
srcs = [ | ||
"main_test.go", | ||
"plan_stats_test.go", | ||
], | ||
data = glob(["testdata/**"]), | ||
flaky = True, | ||
shard_count = 6, | ||
deps = [ | ||
"//pkg/config", | ||
"//pkg/domain", | ||
"//pkg/executor", | ||
"//pkg/meta/model", | ||
"//pkg/parser", | ||
"//pkg/parser/model", | ||
"//pkg/planner", | ||
"//pkg/planner/core", | ||
"//pkg/planner/core/base", | ||
"//pkg/planner/core/resolve", | ||
"//pkg/sessionctx", | ||
"//pkg/sessionctx/stmtctx", | ||
"//pkg/statistics", | ||
"//pkg/statistics/handle/types", | ||
"//pkg/table", | ||
"//pkg/testkit", | ||
"//pkg/testkit/testdata", | ||
"//pkg/testkit/testmain", | ||
"//pkg/testkit/testsetup", | ||
"@com_github_pingcap_failpoint//:failpoint", | ||
"@com_github_stretchr_testify//require", | ||
"@org_uber_go_goleak//:goleak", | ||
], | ||
) |
Oops, something went wrong.