Files
tidb/executor/test/aggregate/BUILD.bazel
2023-08-30 08:50:10 +00:00

30 lines
721 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_test")
go_test(
name = "aggregate_test",
timeout = "short",
srcs = [
"aggregate_test.go",
"main_test.go",
],
data = glob(["testdata/**"]),
flaky = True,
shard_count = 39,
deps = [
"//config",
"//executor/aggregate",
"//executor/internal",
"//parser/terror",
"//planner/core",
"//session",
"//sessionctx/variable",
"//testkit",
"//testkit/testdata",
"//testkit/testsetup",
"//util/sqlexec",
"@com_github_pingcap_failpoint//:failpoint",
"@com_github_stretchr_testify//require",
"@org_uber_go_goleak//:goleak",
],
)