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

Commit

Permalink
fix a mistake
Browse files Browse the repository at this point in the history
Signed-off-by: Yilin Chen <[email protected]>
  • Loading branch information
sticnarf committed Jun 21, 2021
1 parent e9527be commit 5754e7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testcase/write-stress/uniform.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func (c *uniformClient) SetUp(ctx context.Context, nodes []cluster.Node, clientN
if j%32 == tid {
sql := fmt.Sprintf("drop table if exists write_stress%d", j+1)
util.MustExec(c.db, sql)
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)
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)
util.MustExec(c.db, sql)
}
}
Expand Down

0 comments on commit 5754e7d

Please sign in to comment.