Files
tidb/pkg/executor/test/writetest/BUILD.bazel
2025-01-07 10:20:04 +00:00

35 lines
848 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_test")
go_test(
name = "writetest_test",
timeout = "short",
srcs = [
"main_test.go",
"write_test.go",
],
flaky = True,
shard_count = 9,
deps = [
"//pkg/config",
"//pkg/errctx",
"//pkg/executor",
"//pkg/kv",
"//pkg/lightning/mydump",
"//pkg/meta/autoid",
"//pkg/parser/ast",
"//pkg/parser/mysql",
"//pkg/session",
"//pkg/sessionctx",
"//pkg/sessiontxn",
"//pkg/store/mockstore",
"//pkg/table/tables",
"//pkg/testkit",
"//pkg/types",
"//pkg/util",
"@com_github_stretchr_testify//require",
"@com_github_tikv_client_go_v2//tikv",
"@io_opencensus_go//stats/view",
"@org_uber_go_goleak//:goleak",
],
)