Skip to content
This repository was archived by the owner on Dec 9, 2024. It is now read-only.

Commit d8cedaf

Browse files
committed
fix a mistake
Signed-off-by: Yilin Chen <sticnarf@gmail.com>
1 parent 191cd61 commit d8cedaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testcase/write-stress/uniform.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func (c *uniformClient) SetUp(ctx context.Context, nodes []cluster.Node, clientN
4646
if j%32 == tid {
4747
sql := fmt.Sprintf("drop table if exists write_stress%d", j+1)
4848
util.MustExec(c.db, sql)
49-
sql = fmt.Sprintf("create table write_stress(id varchar(40) primary key clustered, col1 bigint, col2 varchar(256), data longtext, key k(col1, col2))", j+1)
49+
sql = fmt.Sprintf("create table write_stress%d(id varchar(40) primary key clustered, col1 bigint, col2 varchar(256), data longtext, key k(col1, col2))", j+1)
5050
util.MustExec(c.db, sql)
5151
}
5252
}

0 commit comments

Comments
 (0)