17 lines
421 B
Python
17 lines
421 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "builder",
|
|
srcs = ["builder_utils.go"],
|
|
importpath = "github.com/pingcap/tidb/executor/internal/builder",
|
|
visibility = ["//executor:__subpackages__"],
|
|
deps = [
|
|
"//distsql",
|
|
"//kv",
|
|
"//planner/core",
|
|
"//sessionctx",
|
|
"//util/timeutil",
|
|
"@com_github_pingcap_tipb//go-tipb",
|
|
],
|
|
)
|