-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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 #49421
Signed-off-by: ti-chi-bot <ti-community-prow-bot@tidb.io>
- Loading branch information
1 parent
27ee7b8
commit d34ef7c
Showing
10 changed files
with
33,594 additions
and
1 deletion.
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,60 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_test") | ||
|
||
go_test( | ||
name = "executor_test", | ||
timeout = "short", | ||
srcs = [ | ||
"executor_test.go", | ||
"main_test.go", | ||
], | ||
flaky = True, | ||
shard_count = 47, | ||
deps = [ | ||
"//pkg/config", | ||
"//pkg/ddl", | ||
"//pkg/domain", | ||
"//pkg/domain/infosync", | ||
"//pkg/executor", | ||
"//pkg/executor/internal/exec", | ||
"//pkg/expression", | ||
"//pkg/infoschema", | ||
"//pkg/kv", | ||
"//pkg/meta", | ||
"//pkg/meta/autoid", | ||
"//pkg/parser", | ||
"//pkg/parser/model", | ||
"//pkg/parser/mysql", | ||
"//pkg/parser/terror", | ||
"//pkg/planner", | ||
"//pkg/planner/core", | ||
"//pkg/session", | ||
"//pkg/sessionctx", | ||
"//pkg/sessionctx/stmtctx", | ||
"//pkg/sessionctx/variable", | ||
"//pkg/sessiontxn", | ||
"//pkg/store/mockstore", | ||
"//pkg/table/tables", | ||
"//pkg/tablecodec", | ||
"//pkg/testkit", | ||
"//pkg/testkit/testdata", | ||
"//pkg/types", | ||
"//pkg/util", | ||
"//pkg/util/dbterror/exeerrors", | ||
"//pkg/util/memory", | ||
"//pkg/util/mock", | ||
"//pkg/util/replayer", | ||
"//pkg/util/rowcodec", | ||
"//pkg/util/sqlexec", | ||
"//pkg/util/timeutil", | ||
"@com_github_golang_protobuf//proto", | ||
"@com_github_pingcap_errors//:errors", | ||
"@com_github_pingcap_failpoint//:failpoint", | ||
"@com_github_pingcap_tipb//go-tipb", | ||
"@com_github_stretchr_testify//require", | ||
"@com_github_tikv_client_go_v2//oracle", | ||
"@com_github_tikv_client_go_v2//testutils", | ||
"@com_github_tikv_client_go_v2//tikv", | ||
"@io_opencensus_go//stats/view", | ||
"@org_uber_go_goleak//:goleak", | ||
], | ||
) |
Oops, something went wrong.