Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
Signed-off-by: xiongjiwei <[email protected]>
  • Loading branch information
xiongjiwei committed Jan 5, 2023
1 parent b7e440d commit deb345d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/realtikvtest/addindextest/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func TestIngestMVIndexOnPartitionTable(t *testing.T) {
sb.WriteString("insert into t values ")
for i := 0; i < 10240; i++ {
sb.WriteString(fmt.Sprintf("(%d, '[%d, %d, %d]')", i, i+1, i+2, i+3))
if i != 99 {
if i != 10240-1 {
sb.WriteString(",")
}
}
Expand Down

0 comments on commit deb345d

Please sign in to comment.