We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e0ba6b commit bb0ac9bCopy full SHA for bb0ac9b
pkg/kv/kvtestutils/consistency.go
@@ -64,7 +64,7 @@ func CheckConsistency(ctx context.Context, db querier, span roachpb.Span) []erro
64
delta = regexp.MustCompile(`LastUpdateNanos:\d+`).ReplaceAllString(delta, "")
65
delta = regexp.MustCompile(`\S+:0\b`).ReplaceAllString(delta, "")
66
// The two cases below correspond to the two linked issues above.
67
- if regexp.MustCompile(`^\s*SysBytes:-?10|12|20|22|24\s*$`).MatchString(delta) {
+ if regexp.MustCompile(`^\s*SysBytes:-?(10|12|20|22|24)\s*$`).MatchString(delta) {
68
continue
69
}
70
// The SysCount and SysBytes should be either both positive or negative.
0 commit comments