-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
43200: roachtest: improve error reporting from monitor r=andreimatei a=andreimatei Knowing that errors (in particular, test failures) come from a monitor is useful. Before this patch, you'd have to look at the succinct stack trace printed on failures to figure that out. Release note: None 43242: opt: don't attempt to negate Overlaps operator r=justinj a=justinj Fixes #43228. Previously, we would attempt to fold expressions of the form ``` NOT(a && b) ``` which did not work, because the && operator has no negated form. This commit adds Overlaps to the blacklist to not negate. I thought about doing something more general (blacklist of non-negatable ops?) to avoid this happening in the future but I think new operators are uncommon enough that it's not worth the overhead. Release note (bug fix): No longer fail on an expression of the form NOT(a && b). Co-authored-by: Andrei Matei <andrei@cockroachlabs.com> Co-authored-by: Justin Jaffray <justin@cockroachlabs.com>
- Loading branch information
Showing
4 changed files
with
16 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters