Files
tidb/pkg/executor/join/test/mergejoin/BUILD.bazel
2025-08-20 16:10:17 +00:00

18 lines
427 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_test")
go_test(
name = "mergejoin_test",
timeout = "short",
srcs = ["merge_join_test.go"],
flaky = True,
shard_count = 4,
deps = [
"//pkg/config",
"//pkg/session/sessmgr",
"//pkg/sessionctx/vardef",
"//pkg/testkit",
"@com_github_pingcap_failpoint//:failpoint",
"@com_github_stretchr_testify//require",
],
)