Skip to content

Commit

Permalink
Make sure end to end test actually tests the fix (#16277)
Browse files Browse the repository at this point in the history
Signed-off-by: Andres Taylor <[email protected]>
  • Loading branch information
systay authored Jun 27, 2024
1 parent 323dad2 commit 96f9c3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func TestAggrWithLimit(t *testing.T) {
defer closer()

for i := range 1000 {
r := rand.IntN(10)
r := rand.IntN(50)
mcmp.Exec(fmt.Sprintf("insert into aggr_test(id, val1, val2) values(%d, 'a', %d)", i, r))
}
mcmp.Exec("select val2, count(*) from aggr_test group by val2 order by count(*), val2 limit 10")
Expand Down

0 comments on commit 96f9c3d

Please sign in to comment.