Skip to content

Commit

Permalink
Add notify_only field to kv delete_range request and raft delete_rang…
Browse files Browse the repository at this point in the history
…e request (#373)


Signed-off-by: MyonKeminta <[email protected]>
  • Loading branch information
MyonKeminta authored Jun 19, 2019
1 parent d288a78 commit a4759df
Show file tree
Hide file tree
Showing 33 changed files with 16,618 additions and 41,033 deletions.
501 changes: 272 additions & 229 deletions pkg/kvrpcpb/kvrpcpb.pb.go

Large diffs are not rendered by default.

411 changes: 227 additions & 184 deletions pkg/raft_cmdpb/raft_cmdpb.pb.go

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions proto/kvrpcpb.proto
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,7 @@ message DeleteRangeRequest {
Context context = 1;
bytes start_key = 2;
bytes end_key = 3;
bool notify_only = 4;
}

message DeleteRangeResponse {
Expand Down
1 change: 1 addition & 0 deletions proto/raft_cmdpb.proto
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ message DeleteRangeRequest {
string cf = 1;
bytes start_key = 2;
bytes end_key = 3;
bool notify_only = 4;
}

message DeleteRangeResponse {}
Expand Down
84 changes: 28 additions & 56 deletions src/prost.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions src/prost/coprocessor.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

149 changes: 29 additions & 120 deletions src/prost/deadlockpb.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a4759df

Please sign in to comment.