Skip to content

Commit 28d211b

Browse files
authored
br: reduce workload in unit test (pingcap#51493)
ref pingcap#48301
1 parent 8597bc3 commit 28d211b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/realtikvtest/brietest/backup_restore_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ func TestRestoreMultiTables(t *testing.T) {
7979
tk.MustExec("use br")
8080

8181
tablesNameSet := make(map[string]struct{})
82-
tableNum := 1000
82+
tableNum := 100
8383
for i := 0; i < tableNum; i += 1 {
8484
tk.MustExec(fmt.Sprintf("create table table_%d (a int primary key, b json, c varchar(20))", i))
8585
tk.MustExec(fmt.Sprintf("insert into table_%d values (1, '{\"a\": 1, \"b\": 2}', '123')", i))

0 commit comments

Comments
 (0)