Skip to content

Commit 6ccdb61

Browse files
elsa0520ti-chi-bot
authored andcommitted
This is an automated cherry-pick of #53525
Signed-off-by: ti-chi-bot <[email protected]>
1 parent cc04dd7 commit 6ccdb61

File tree

5 files changed

+4478
-1
lines changed

5 files changed

+4478
-1
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
load("@io_bazel_rules_go//go:def.bzl", "go_test")
2+
3+
go_test(
4+
name = "physicalplantest_test",
5+
timeout = "short",
6+
srcs = [
7+
"main_test.go",
8+
"physical_plan_test.go",
9+
],
10+
data = glob(["testdata/**"]),
11+
flaky = True,
12+
race = "on",
13+
shard_count = 33,
14+
deps = [
15+
"//pkg/config",
16+
"//pkg/domain",
17+
"//pkg/executor",
18+
"//pkg/infoschema",
19+
"//pkg/parser",
20+
"//pkg/parser/ast",
21+
"//pkg/parser/model",
22+
"//pkg/planner",
23+
"//pkg/planner/core",
24+
"//pkg/planner/util/coretestsdk",
25+
"//pkg/testkit",
26+
"//pkg/testkit/external",
27+
"//pkg/testkit/testdata",
28+
"//pkg/testkit/testmain",
29+
"//pkg/testkit/testsetup",
30+
"//pkg/util/context",
31+
"//pkg/util/hint",
32+
"@com_github_pingcap_failpoint//:failpoint",
33+
"@com_github_stretchr_testify//require",
34+
"@org_uber_go_goleak//:goleak",
35+
],
36+
)

0 commit comments

Comments
 (0)