Skip to content

Commit 26e3b5f

Browse files
authored
planner: fix the slow test TestIntersectionWithDifferentConcurrency (#52976)
close #47326
1 parent 5333ac3 commit 26e3b5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/executor/test/indexmergereadtest/index_merge_reader_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,8 +359,8 @@ func TestIntersectionWithDifferentConcurrency(t *testing.T) {
359359
tk.MustExec("drop table if exists t1;")
360360
tk.MustExec(tblSchema)
361361

362-
const queryCnt int = 10
363-
const rowCnt int = 500
362+
const queryCnt int = 5
363+
const rowCnt int = 100
364364
curRowCnt := 0
365365
insertStr := "insert into t1 values"
366366
for i := 0; i < rowCnt; i++ {

0 commit comments

Comments
 (0)