Skip to content

Commit 3c5a81e

Browse files
committed
sql/bulkingest: use larger machine type for TestSplitAndScatterSpans
TestSplitAndScatterSpans was observed to OOM during race builds on EngFlow. This change updates the test configuration to request a larger machine when executed under race. Closes #158139 Release note: none
1 parent eb2465b commit 3c5a81e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pkg/sql/bulkingest/BUILD.bazel

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ go_test(
2626
"split_test.go",
2727
],
2828
embed = [":bulkingest"],
29+
exec_properties = select({
30+
"//build/toolchains:is_heavy": {"test.Pool": "large"},
31+
"//conditions:default": {"test.Pool": "default"},
32+
}),
2933
deps = [
3034
"//pkg/base",
3135
"//pkg/keys",

0 commit comments

Comments
 (0)