-
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
opt: fix scalar building error handling #40617
Conversation
We are incorrectly returning `nil` error in an error case. This leads to an assertion error instead of a "could not decorrelate subquery" error. Fixes cockroachdb#40590. Release note: None
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.
Reviewed 2 of 2 files at r1.
Reviewable status: complete! 1 of 0 LGTMs obtained (waiting on @justinj)
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.
Reviewable status: complete! 2 of 0 LGTMs obtained (waiting on @justinj)
bors r+ |
40609: roachtest: update 19.1 hibernate blacklist r=rafiss a=rafiss The blacklist had too many expected failures. Most of them were related to earlier issues with the test being unable to connect to the cluster. Also, remove the `--info` option from the test runner command, since it makes too much output. touches #40538 Release note: None 40617: opt: fix scalar building error handling r=RaduBerinde a=RaduBerinde We are incorrectly returning `nil` error in an error case. This leads to an assertion error instead of a "could not decorrelate subquery" error. Fixes #40590. Release note: None 40619: cliccl: Change license acquisition URL r=rohany a=rohany Change the cockroach demo license acquisition URLs to point to a new URL. Release note: None Co-authored-by: Rafi Shamim <rafi@cockroachlabs.com> Co-authored-by: Radu Berinde <radu@cockroachlabs.com> Co-authored-by: Rohan Yadav <rohany@cockroachlabs.com>
Build succeeded |
We are incorrectly returning
nil
error in an error case. This leadsto an assertion error instead of a "could not decorrelate subquery"
error.
Fixes #40590.
Release note: None