-
Notifications
You must be signed in to change notification settings - Fork 5.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
expression : fix function 'binSearch' in builtinIntervalRealSig not return error (#12957) #13768
expression : fix function 'binSearch' in builtinIntervalRealSig not return error (#12957) #13768
Conversation
/run-all-tests |
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.
LGTM
/run-unit-test |
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.
LGTM
Sorry @Reminiscent, you don't have permission to trigger auto merge event on this branch. |
/merge |
/run-all-tests |
@sre-bot merge failed. |
failed. |
cherry-pick #12957 to release-2.1
What problem does this PR solve?
When I implemented the vectorization interface, I found a tiny error in the builtin_compare.go file.
So I fixed it
What is changed and how it works?
In the binsreach function, when we call
EvalReal
, the return value iserr1
, but when we judge the error, we checkerr
, thiserr
is always empty, which causes us to not captureEvalReal
The error returned.Check List
Tests