Skip to content
This repository was archived by the owner on Jun 4, 2026. It is now read-only.

Commit 8fcafc0

Browse files
craig[bot]rafiss
andcommitted
123770: ttljob: make batch size at least 10 in test r=rafiss a=rafiss Using a small batch size makes this test slow and flaky. fixes cockroachdb#123423 fixes cockroachdb#123669 Release note: None Co-authored-by: Rafi Shamim <rafi@cockroachlabs.com>
2 parents 8354def + d5115d3 commit 8fcafc0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pkg/sql/ttl/ttljob/ttljob_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -781,8 +781,8 @@ func TestRowLevelTTLJobRandomEntries(t *testing.T) {
781781
randgen.RandTypeFromSlice(rng, indexableTyps).SQLString(),
782782
randgen.RandTypeFromSlice(rng, indexableTyps).SQLString(),
783783
familyClauses,
784-
1+rng.Intn(100),
785-
1+rng.Intn(100),
784+
10+rng.Intn(100),
785+
10+rng.Intn(100),
786786
),
787787
numSplits: 1 + rng.Intn(9),
788788
numExpiredRows: rng.Intn(2000),

0 commit comments

Comments
 (0)