51 lines
1.4 KiB
Python
51 lines
1.4 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
go_test(
|
|
name = "seqtest_test",
|
|
timeout = "moderate",
|
|
srcs = [
|
|
"main_test.go",
|
|
"prepared_test.go",
|
|
"seq_executor_test.go",
|
|
],
|
|
flaky = True,
|
|
race = "on",
|
|
shard_count = 28,
|
|
deps = [
|
|
"//pkg/config",
|
|
"//pkg/ddl/testutil",
|
|
"//pkg/ddl/util",
|
|
"//pkg/errno",
|
|
"//pkg/executor",
|
|
"//pkg/expression",
|
|
"//pkg/kv",
|
|
"//pkg/meta/autoid",
|
|
"//pkg/metrics",
|
|
"//pkg/parser/ast",
|
|
"//pkg/parser/model",
|
|
"//pkg/parser/mysql",
|
|
"//pkg/planner/core",
|
|
"//pkg/server",
|
|
"//pkg/session",
|
|
"//pkg/sessionctx/variable",
|
|
"//pkg/store/copr",
|
|
"//pkg/store/mockstore",
|
|
"//pkg/tablecodec",
|
|
"//pkg/testkit",
|
|
"//pkg/testkit/testsetup",
|
|
"//pkg/testkit/testutil",
|
|
"//pkg/util/dbterror/plannererrors",
|
|
"//pkg/util/gcutil",
|
|
"@com_github_pingcap_errors//:errors",
|
|
"@com_github_pingcap_failpoint//:failpoint",
|
|
"@com_github_pingcap_kvproto//pkg/kvrpcpb",
|
|
"@com_github_prometheus_client_model//go",
|
|
"@com_github_stretchr_testify//require",
|
|
"@com_github_tikv_client_go_v2//config",
|
|
"@com_github_tikv_client_go_v2//testutils",
|
|
"@com_github_tikv_client_go_v2//tikv",
|
|
"@com_github_tikv_client_go_v2//tikvrpc",
|
|
"@org_uber_go_goleak//:goleak",
|
|
],
|
|
)
|