File tree Expand file tree Collapse file tree 5 files changed +2709
-0
lines changed Expand file tree Collapse file tree 5 files changed +2709
-0
lines changed Original file line number Diff line number Diff line change
1
+ load ("@io_bazel_rules_go//go:def.bzl" , "go_test" )
2
+
3
+ go_test (
4
+ name = "handletest_test" ,
5
+ timeout = "short" ,
6
+ srcs = [
7
+ "handle_test.go" ,
8
+ "main_test.go" ,
9
+ ],
10
+ flaky = True ,
11
+ race = "on" ,
12
+ shard_count = 34 ,
13
+ deps = [
14
+ "//pkg/config" ,
15
+ "//pkg/domain" ,
16
+ "//pkg/parser/model" ,
17
+ "//pkg/planner/cardinality" ,
18
+ "//pkg/sessionctx/variable" ,
19
+ "//pkg/statistics" ,
20
+ "//pkg/statistics/handle" ,
21
+ "//pkg/statistics/handle/util" ,
22
+ "//pkg/testkit" ,
23
+ "//pkg/testkit/analyzehelper" ,
24
+ "//pkg/testkit/testsetup" ,
25
+ "//pkg/types" ,
26
+ "//pkg/util/collate" ,
27
+ "//pkg/util/mock" ,
28
+ "//pkg/util/ranger" ,
29
+ "@com_github_pingcap_failpoint//:failpoint" ,
30
+ "@com_github_stretchr_testify//require" ,
31
+ "@com_github_tikv_client_go_v2//oracle" ,
32
+ "@org_uber_go_goleak//:goleak" ,
33
+ ],
34
+ )
You can’t perform that action at this time.
0 commit comments