Skip to content

Commit

Permalink
Merge #123770
Browse files Browse the repository at this point in the history
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 #123423
fixes #123669
Release note: None

Co-authored-by: Rafi Shamim <[email protected]>
  • Loading branch information
craig[bot] and rafiss committed May 7, 2024
2 parents 8354def + d5115d3 commit 8fcafc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/sql/ttl/ttljob/ttljob_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -781,8 +781,8 @@ func TestRowLevelTTLJobRandomEntries(t *testing.T) {
randgen.RandTypeFromSlice(rng, indexableTyps).SQLString(),
randgen.RandTypeFromSlice(rng, indexableTyps).SQLString(),
familyClauses,
1+rng.Intn(100),
1+rng.Intn(100),
10+rng.Intn(100),
10+rng.Intn(100),
),
numSplits: 1 + rng.Intn(9),
numExpiredRows: rng.Intn(2000),
Expand Down

0 comments on commit 8fcafc0

Please sign in to comment.