Files
tidb/executor/jointest/BUILD.bazel
2023-03-23 12:08:42 +08:00

27 lines
631 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_test")
go_test(
name = "jointest_test",
timeout = "short",
srcs = [
"join_test.go",
"main_test.go",
],
flaky = True,
shard_count = 50,
deps = [
"//config",
"//meta/autoid",
"//planner/core",
"//session",
"//sessionctx/variable",
"//testkit",
"//util",
"//util/dbterror/exeerrors",
"@com_github_pingcap_failpoint//:failpoint",
"@com_github_stretchr_testify//require",
"@com_github_tikv_client_go_v2//tikv",
"@org_uber_go_goleak//:goleak",
],
)