-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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: separate signatures for PlusInt #14128
Conversation
Thanks for your pull request. Pick up issue #13973 and reopen this PR |
/reopen |
Thanks for your contribution. If your PR get merged, you will be rewarded 100 points. |
Why so many errors ? |
|
||
if uint64(lh) > math.MaxUint64-uint64(rh) { | ||
return types.ErrOverflow.GenWithStackByArgs("BIGINT UNSIGNED", fmt.Sprintf("(%s + %s)", b.args[0].String(), b.args[1].String())) | ||
res, _, err := b.plusUnsingedunsinged(lh, rh) |
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.
Do you think we should manually inline the implementation to avoid this function call? @qw4990
You need to first modify the protobuf https://github.com/pingcap/tipb to introduce these new signatures. |
|
@zhaoqian888, please update your pull request. |
/run-all-tests tikv=pr/6568 |
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-all-tests |
@zhaoqian888 merge failed. |
/run-all-tests tikv=pr/6568 |
/merge |
Codecov Report
|
/run-all-tests |
@zhaoqian888 merge failed. |
Sorry, several weeks ago there is a TiKV PR that removes the required signatures by mistake, so that this PR failed. Here is a fix: tikv/tikv#7399 |
/run-all-tests |
1 similar comment
/run-all-tests |
@zhaoqian888, please update your pull request. |
No release note, Please follow https://github.com/pingcap/community/blob/master/contributors/release-note-checker.md |
@zhaoqian888, please update your pull request. |
@zhaoqian888 PR closed due to no update for a long time. Feel free to reopen it anytime. |
PCP #13973
What problem does this PR solve?
Separate signatures for PlusInt
What is changed and how it works?
Check List
Tests