Skip to content

Commit 2aa13a8

Browse files
authored
test: stabilize TestPiTRCreateNonUniqueIndex (#50913)
close #50902
1 parent 9aabf72 commit 2aa13a8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/realtikvtest/addindextestutil/workload.go

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,12 @@ import (
2929
)
3030

3131
var (
32-
skippedErrorCode = []string{"8028", "9007"}
33-
wCtx = workload{}
32+
skippedErrorCode = []string{
33+
"8028", // ErrInfoSchemaChanged
34+
"9007", // ErrWriteConflict
35+
"global:2", // execution result undetermined
36+
}
37+
wCtx = workload{}
3438
)
3539

3640
func initWorkloadParams(ctx *SuiteContext) {

0 commit comments

Comments
 (0)