-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
roachtest: not fail sqlsmith on known issue #62402
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nit] The PR and commit description says "skips filing roachtest" which is fortunately not what we're doing.
Reviewable status: complete! 1 of 0 LGTMs obtained (waiting on @asubiotto, @jordanlewis, and @yuzefovich)
pkg/cmd/roachtest/sqlsmith.go, line 216 at r1 (raw file):
// TODO(yuzefovich): we temporarily ignore internal errors that // are because of #39433 and #40929. var expectedInternalErrors = []string{
[nit] move this inside the if.
pkg/cmd/roachtest/sqlsmith.go, line 218 at r1 (raw file):
var expectedInternalErrors = []string{ "internal error: invalid index", "could not parse \"0E-2019\" as type decimal",
Interesting that it errors out only with this particular value!
This commit makes `sqlsmith` roachtest not fail on one known issue (cockroachdb#40929) in order to avoid unnecessary noise. Release note: None
8aa000d
to
e6c5332
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the commit message. I was trying to use "failing" not as adjective but as a gerund, but I agree that it is very confusing :)
TFTR!
bors r+
Reviewable status: complete! 0 of 0 LGTMs obtained (and 1 stale) (waiting on @asubiotto and @jordanlewis)
pkg/cmd/roachtest/sqlsmith.go, line 216 at r1 (raw file):
Previously, RaduBerinde wrote…
[nit] move this inside the if.
Done.
Build failed (retrying...): |
Build succeeded: |
This commit makes
sqlsmith
roachtest not fail on one known issue (#40929)in order to avoid unnecessary noise.
Release note: None