forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.bazel
66 lines (64 loc) · 1.52 KB
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "table",
srcs = [
"column.go",
"index.go",
"table.go",
],
importpath = "github.com/pingcap/tidb/table",
visibility = ["//visibility:public"],
deps = [
"//errno",
"//expression",
"//kv",
"//meta/autoid",
"//parser",
"//parser/ast",
"//parser/charset",
"//parser/model",
"//parser/mysql",
"//parser/types",
"//sessionctx",
"//sessionctx/stmtctx",
"//types",
"//util/dbterror",
"//util/hack",
"//util/logutil",
"//util/sqlexec",
"//util/timeutil",
"@com_github_opentracing_opentracing_go//:opentracing-go",
"@com_github_pingcap_errors//:errors",
"@org_uber_go_zap//:zap",
],
)
go_test(
name = "table_test",
timeout = "short",
srcs = [
"column_test.go",
"main_test.go",
"table_test.go",
],
embed = [":table"],
flaky = True,
race = "on",
shard_count = 50,
deps = [
"//errno",
"//expression",
"//parser/ast",
"//parser/charset",
"//parser/model",
"//parser/mysql",
"//parser/terror",
"//sessionctx",
"//sessionctx/stmtctx",
"//testkit/testsetup",
"//types",
"//util/collate",
"//util/mock",
"@com_github_stretchr_testify//require",
"@org_uber_go_goleak//:goleak",
],
)