Skip to content
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

storage: Renumber proposer-evaluated KV RaftCommand fields #10724

Merged
merged 1 commit into from Nov 16, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
151 changes: 75 additions & 76 deletions pkg/storage/storagebase/proposer_kv.pb.go

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

4 changes: 2 additions & 2 deletions pkg/storage/storagebase/proposer_kv.proto
Expand Up @@ -161,7 +161,7 @@ message RaftCommand {
// TODO(tschottdorf): using an extra message here (and not just `bytes`) to
// allow the generated RaftCommand to be compared directly. If
// this costs an extra large allocation, we need to do something different.
optional WriteBatch write_batch = 10011;
optional WriteBatch write_batch = 10014;

reserved 1, 10001 to 10010, 10012;
reserved 1, 10001 to 10012;
}