forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.bazel
38 lines (36 loc) · 820 Bytes
/
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
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "mysql",
srcs = [
"charset.go",
"const.go",
"errcode.go",
"errname.go",
"error.go",
"locale_format.go",
"privs.go",
"state.go",
"type.go",
"util.go",
],
importpath = "github.com/pingcap/tidb/parser/mysql",
visibility = ["//visibility:public"],
deps = [
"//parser/format",
"@com_github_pingcap_errors//:errors",
],
)
go_test(
name = "mysql_test",
timeout = "short",
srcs = [
"const_test.go",
"error_test.go",
"privs_test.go",
"type_test.go",
],
embed = [":mysql"],
flaky = True,
shard_count = 8,
deps = ["@com_github_stretchr_testify//require"],
)