19 lines
425 B
Python
19 lines
425 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
go_test(
|
|
name = "indexjoin_test",
|
|
timeout = "short",
|
|
srcs = [
|
|
"index_lookup_join_test.go",
|
|
"index_lookup_merge_join_test.go",
|
|
],
|
|
flaky = True,
|
|
shard_count = 8,
|
|
deps = [
|
|
"//pkg/session",
|
|
"//pkg/testkit",
|
|
"@com_github_pingcap_failpoint//:failpoint",
|
|
"@com_github_stretchr_testify//require",
|
|
],
|
|
)
|