Files
tidb/executor/asyncloaddata/BUILD.bazel
2023-04-17 15:35:19 +08:00

46 lines
1.1 KiB
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "asyncloaddata",
srcs = [
"progress.go",
"util.go",
],
importpath = "github.com/pingcap/tidb/executor/asyncloaddata",
visibility = ["//visibility:public"],
deps = [
"//kv",
"//parser/terror",
"//types",
"//util/chunk",
"//util/dbterror/exeerrors",
"//util/logutil",
"//util/sqlexec",
"@com_github_pingcap_errors//:errors",
"@com_github_pingcap_failpoint//:failpoint",
"@com_github_tikv_client_go_v2//util",
"@org_uber_go_atomic//:atomic",
"@org_uber_go_zap//:zap",
],
)
go_test(
name = "asyncloaddata_test",
timeout = "short",
srcs = [
"main_test.go",
"progress_test.go",
"util_test.go",
],
embed = [":asyncloaddata"],
flaky = True,
race = "on",
shard_count = 6,
deps = [
"//testkit",
"//util/sqlexec",
"@com_github_stretchr_testify//require",
"@org_uber_go_goleak//:goleak",
],
)