File tree Expand file tree Collapse file tree 2 files changed +909
-0
lines changed
pkg/session/bootstraptest Expand file tree Collapse file tree 2 files changed +909
-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 = "bootstraptest_test" ,
5
+ timeout = "short" ,
6
+ srcs = [
7
+ "bootstrap_upgrade_test.go" , #keep
8
+ "main_test.go" ,
9
+ ],
10
+ flaky = True ,
11
+ shard_count = 12 ,
12
+ deps = [
13
+ "//pkg/config" ,
14
+ "//pkg/ddl" ,
15
+ "//pkg/kv" ,
16
+ "//pkg/meta" ,
17
+ "//pkg/parser/model" ,
18
+ "//pkg/parser/terror" ,
19
+ "//pkg/planner/core" ,
20
+ "//pkg/server/handler" ,
21
+ "//pkg/session" , #keep
22
+ "//pkg/session/types" ,
23
+ "//pkg/sessionctx" ,
24
+ "//pkg/testkit" , #keep
25
+ "//pkg/testkit/testfailpoint" ,
26
+ "//pkg/testkit/testmain" ,
27
+ "//pkg/testkit/testsetup" ,
28
+ "//pkg/util" ,
29
+ "//pkg/util/chunk" ,
30
+ "//pkg/util/sqlexec" ,
31
+ "@com_github_pingcap_errors//:errors" ,
32
+ "@com_github_pingcap_failpoint//:failpoint" ,
33
+ "@com_github_stretchr_testify//require" , #keep
34
+ "@com_github_tikv_client_go_v2//tikv" ,
35
+ "@org_uber_go_atomic//:atomic" ,
36
+ "@org_uber_go_goleak//:goleak" ,
37
+ ],
38
+ )
You can’t perform that action at this time.
0 commit comments