Skip to content

Commit

Permalink
fix error filter for release-6.1 (PingCAP-QE#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
aytrack authored Oct 25, 2022
1 parent 192de1d commit 6ebfd44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddl/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ func ddlIgnoreError(err error) bool {
strings.Contains(errStr, "used in key specification without a key length") ||
strings.Contains(errStr, "Specified key was too long; max key length is ") ||
strings.Contains(errStr, "should be less than the total tiflash server count") ||
strings.Contains(errStr, "Unsupported ALTER TiFlash settings") {
strings.Contains(errStr, "Unsupported ALTER table replica for table contain gbk charset") {
fmt.Println(errStr)
return true
}
Expand Down

0 comments on commit 6ebfd44

Please sign in to comment.