-
Notifications
You must be signed in to change notification settings - Fork 3k
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
Add predicates for TxnKV operations #27365
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: congqixia The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@congqixia E2e jenkins job failed, comment |
@congqixia ut workflow job failed, comment |
func (kv *MemoryKV) MultiSaveAndRemove(saves map[string]string, removals []string) error { | ||
func (kv *MemoryKV) MultiSaveAndRemove(saves map[string]string, removals []string, preds ...predicates.Predicate) error { | ||
if len(preds) > 0 { | ||
return merr.WrapErrServiceUnavailable("predicates not supported") |
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.
maybe return a NotImplement error is better 🤔
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.
Mem KV does not support transaction feature
according to @yah01 this shall use ServiceUnavailable
Codecov Report
@@ Coverage Diff @@
## master #27365 +/- ##
==========================================
- Coverage 81.50% 81.50% -0.01%
==========================================
Files 801 803 +2
Lines 114371 114471 +100
==========================================
+ Hits 93222 93294 +72
- Misses 17965 17988 +23
- Partials 3184 3189 +5
|
4304d56
to
e298cb5
Compare
Signed-off-by: Congqi Xia <[email protected]>
e298cb5
to
3d81e8e
Compare
/lgtm |
See also #26758
DesignDoc #27183
/kind enhancement