Skip to content

Commit

Permalink
Change start_key_limit to each_limit
Browse files Browse the repository at this point in the history
  • Loading branch information
sunxiaoguang committed Mar 26, 2018
1 parent 6a83713 commit 5ee163b
Show file tree
Hide file tree
Showing 8 changed files with 215 additions and 215 deletions.
262 changes: 131 additions & 131 deletions pkg/kvrpcpb/kvrpcpb.pb.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion proto/kvrpcpb.proto
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ message RawScanResponse {
message RawBatchScanRequest {
Context context = 1;
repeated bytes start_keys = 2;
uint32 start_key_limit = 3;
uint32 each_limit = 3;
bool key_only = 4;
}

Expand Down
2 changes: 1 addition & 1 deletion src/coprocessor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1089,7 +1089,7 @@ static file_descriptor_proto_data: &'static [u8] = b"\
\x1f\n\x0bother_error\x18\x04\x20\x01(\tR\notherError\x12+\n\x05range\
\x18\x05\x20\x01(\x0b2\x15.coprocessor.KeyRangeR\x05range\x127\n\x0cexec\
_details\x18\x06\x20\x01(\x0b2\x14.kvrpcpb.ExecDetailsR\x0bexecDetailsB&\
\n\x18com.pingcap.tikv.kvproto\xc8\xe2\x1e\x01\xe0\xe2\x1e\x01\xd0\xe2\
\n\x18com.pingcap.tikv.kvproto\xe0\xe2\x1e\x01\xd0\xe2\x1e\x01\xc8\xe2\
\x1e\x01J\xea\x0b\n\x06\x12\x04\0\0!\x01\n\x08\n\x01\x0c\x12\x03\0\0\x12\
\n\x08\n\x01\x02\x12\x03\x01\x08\x13\n\t\n\x02\x03\0\x12\x03\x03\x07\x16\
\n\t\n\x02\x03\x01\x12\x03\x04\x07\x16\n\t\n\x02\x03\x02\x12\x03\x05\x07\
Expand Down
2 changes: 1 addition & 1 deletion src/errorpb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2328,7 +2328,7 @@ static file_descriptor_proto_data: &'static [u8] = b"\
dR\x0cstaleCommand\x12>\n\x0fstore_not_match\x18\x08\x20\x01(\x0b2\x16.e\
rrorpb.StoreNotMatchR\rstoreNotMatch\x12K\n\x14raft_entry_too_large\x18\
\t\x20\x01(\x0b2\x1a.errorpb.RaftEntryTooLargeR\x11raftEntryTooLargeB&\n\
\x18com.pingcap.tikv.kvproto\xe0\xe2\x1e\x01\xc8\xe2\x1e\x01\xd0\xe2\x1e\
\x18com.pingcap.tikv.kvproto\xc8\xe2\x1e\x01\xe0\xe2\x1e\x01\xd0\xe2\x1e\
\x01J\x8f\x10\n\x06\x12\x04\0\0:\x01\n\x08\n\x01\x0c\x12\x03\0\0\x12\n\
\x08\n\x01\x02\x12\x03\x01\x08\x0f\n\t\n\x02\x03\0\x12\x03\x03\x07\x15\n\
\t\n\x02\x03\x01\x12\x03\x04\x07\x1d\n\x08\n\x01\x08\x12\x03\x06\0(\n\
Expand Down
2 changes: 1 addition & 1 deletion src/importpb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1564,7 +1564,7 @@ static file_descriptor_proto_data: &'static [u8] = b"\
\x8b\x01\n\tImportSST\x12?\n\x06Upload\x12\x17.importpb.UploadRequest\
\x1a\x18.importpb.UploadResponse\"\0(\x01\x12=\n\x06Ingest\x12\x17.impor\
tpb.IngestRequest\x1a\x18.importpb.IngestResponse\"\0B&\n\x18com.pingcap\
.tikv.kvproto\xe0\xe2\x1e\x01\xc8\xe2\x1e\x01\xd0\xe2\x1e\x01J\x97\x15\n\
.tikv.kvproto\xc8\xe2\x1e\x01\xe0\xe2\x1e\x01\xd0\xe2\x1e\x01J\x97\x15\n\
\x06\x12\x04\0\0C\x01\n\x08\n\x01\x0c\x12\x03\0\0\x12\n\x08\n\x01\x02\
\x12\x03\x02\x08\x10\n\t\n\x02\x03\0\x12\x03\x04\x07\x15\n\t\n\x02\x03\
\x01\x12\x03\x05\x07\x16\n\t\n\x02\x03\x02\x12\x03\x06\x07\x16\n\t\n\x02\
Expand Down
156 changes: 78 additions & 78 deletions src/kvrpcpb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13950,7 +13950,7 @@ pub struct RawBatchScanRequest {
// message fields
pub context: ::protobuf::SingularPtrField<Context>,
pub start_keys: ::protobuf::RepeatedField<::std::vec::Vec<u8>>,
pub start_key_limit: u32,
pub each_limit: u32,
pub key_only: bool,
// special fields
unknown_fields: ::protobuf::UnknownFields,
Expand Down Expand Up @@ -14049,27 +14049,27 @@ impl RawBatchScanRequest {
&mut self.start_keys
}

// uint32 start_key_limit = 3;
// uint32 each_limit = 3;

pub fn clear_start_key_limit(&mut self) {
self.start_key_limit = 0;
pub fn clear_each_limit(&mut self) {
self.each_limit = 0;
}

// Param is passed by value, moved
pub fn set_start_key_limit(&mut self, v: u32) {
self.start_key_limit = v;
pub fn set_each_limit(&mut self, v: u32) {
self.each_limit = v;
}

pub fn get_start_key_limit(&self) -> u32 {
self.start_key_limit
pub fn get_each_limit(&self) -> u32 {
self.each_limit
}

fn get_start_key_limit_for_reflect(&self) -> &u32 {
&self.start_key_limit
fn get_each_limit_for_reflect(&self) -> &u32 {
&self.each_limit
}

fn mut_start_key_limit_for_reflect(&mut self) -> &mut u32 {
&mut self.start_key_limit
fn mut_each_limit_for_reflect(&mut self) -> &mut u32 {
&mut self.each_limit
}

// bool key_only = 4;
Expand Down Expand Up @@ -14121,7 +14121,7 @@ impl ::protobuf::Message for RawBatchScanRequest {
return ::std::result::Result::Err(::protobuf::rt::unexpected_wire_type(wire_type));
}
let tmp = is.read_uint32()?;
self.start_key_limit = tmp;
self.each_limit = tmp;
},
4 => {
if wire_type != ::protobuf::wire_format::WireTypeVarint {
Expand Down Expand Up @@ -14149,8 +14149,8 @@ impl ::protobuf::Message for RawBatchScanRequest {
for value in &self.start_keys {
my_size += ::protobuf::rt::bytes_size(2, &value);
};
if self.start_key_limit != 0 {
my_size += ::protobuf::rt::value_size(3, self.start_key_limit, ::protobuf::wire_format::WireTypeVarint);
if self.each_limit != 0 {
my_size += ::protobuf::rt::value_size(3, self.each_limit, ::protobuf::wire_format::WireTypeVarint);
}
if self.key_only != false {
my_size += 2;
Expand All @@ -14169,8 +14169,8 @@ impl ::protobuf::Message for RawBatchScanRequest {
for v in &self.start_keys {
os.write_bytes(2, &v)?;
};
if self.start_key_limit != 0 {
os.write_uint32(3, self.start_key_limit)?;
if self.each_limit != 0 {
os.write_uint32(3, self.each_limit)?;
}
if self.key_only != false {
os.write_bool(4, self.key_only)?;
Expand Down Expand Up @@ -14230,9 +14230,9 @@ impl ::protobuf::MessageStatic for RawBatchScanRequest {
RawBatchScanRequest::mut_start_keys_for_reflect,
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeUint32>(
"start_key_limit",
RawBatchScanRequest::get_start_key_limit_for_reflect,
RawBatchScanRequest::mut_start_key_limit_for_reflect,
"each_limit",
RawBatchScanRequest::get_each_limit_for_reflect,
RawBatchScanRequest::mut_each_limit_for_reflect,
));
fields.push(::protobuf::reflect::accessor::make_simple_field_accessor::<_, ::protobuf::types::ProtobufTypeBool>(
"key_only",
Expand All @@ -14253,7 +14253,7 @@ impl ::protobuf::Clear for RawBatchScanRequest {
fn clear(&mut self) {
self.clear_context();
self.clear_start_keys();
self.clear_start_key_limit();
self.clear_each_limit();
self.clear_key_only();
self.unknown_fields.clear();
}
Expand Down Expand Up @@ -17358,60 +17358,60 @@ static file_descriptor_proto_data: &'static [u8] = b"\
\x01(\rR\x05limit\x12\x19\n\x08key_only\x18\x04\x20\x01(\x08R\x07keyOnly\
\"g\n\x0fRawScanResponse\x121\n\x0cregion_error\x18\x01\x20\x01(\x0b2\
\x0e.errorpb.ErrorR\x0bregionError\x12!\n\x03kvs\x18\x02\x20\x03(\x0b2\
\x0f.kvrpcpb.KvPairR\x03kvs\"\xa3\x01\n\x13RawBatchScanRequest\x12*\n\
\x0f.kvrpcpb.KvPairR\x03kvs\"\x9a\x01\n\x13RawBatchScanRequest\x12*\n\
\x07context\x18\x01\x20\x01(\x0b2\x10.kvrpcpb.ContextR\x07context\x12\
\x1d\n\nstart_keys\x18\x02\x20\x03(\x0cR\tstartKeys\x12&\n\x0fstart_key_\
limit\x18\x03\x20\x01(\rR\rstartKeyLimit\x12\x19\n\x08key_only\x18\x04\
\x20\x01(\x08R\x07keyOnly\"l\n\x14RawBatchScanResponse\x121\n\x0cregion_\
error\x18\x01\x20\x01(\x0b2\x0e.errorpb.ErrorR\x0bregionError\x12!\n\x03\
kvs\x18\x02\x20\x03(\x0b2\x0f.kvrpcpb.KvPairR\x03kvs\"d\n\tWriteInfo\x12\
\x19\n\x08start_ts\x18\x01\x20\x01(\x04R\x07startTs\x12\x1f\n\x04type\
\x18\x02\x20\x01(\x0e2\x0b.kvrpcpb.OpR\x04type\x12\x1b\n\tcommit_ts\x18\
\x03\x20\x01(\x04R\x08commitTs\"W\n\tValueInfo\x12\x14\n\x05value\x18\
\x01\x20\x01(\x0cR\x05value\x12\x0e\n\x02ts\x18\x02\x20\x01(\x04R\x02ts\
\x12$\n\x0eis_short_value\x18\x03\x20\x01(\x08R\x0cisShortValue\"\x89\
\x01\n\x08MvccInfo\x12%\n\x04lock\x18\x01\x20\x01(\x0b2\x11.kvrpcpb.Lock\
InfoR\x04lock\x12*\n\x06writes\x18\x02\x20\x03(\x0b2\x12.kvrpcpb.WriteIn\
foR\x06writes\x12*\n\x06values\x18\x03\x20\x03(\x0b2\x12.kvrpcpb.ValueIn\
foR\x06values\"S\n\x13MvccGetByKeyRequest\x12*\n\x07context\x18\x01\x20\
\x01(\x0b2\x10.kvrpcpb.ContextR\x07context\x12\x10\n\x03key\x18\x02\x20\
\x01(\x0cR\x03key\"\x86\x01\n\x14MvccGetByKeyResponse\x121\n\x0cregion_e\
rror\x18\x01\x20\x01(\x0b2\x0e.errorpb.ErrorR\x0bregionError\x12\x14\n\
\x05error\x18\x02\x20\x01(\tR\x05error\x12%\n\x04info\x18\x03\x20\x01(\
\x0b2\x11.kvrpcpb.MvccInfoR\x04info\"`\n\x17MvccGetByStartTsRequest\x12*\
\n\x07context\x18\x01\x20\x01(\x0b2\x10.kvrpcpb.ContextR\x07context\x12\
\x19\n\x08start_ts\x18\x02\x20\x01(\x04R\x07startTs\"\x9c\x01\n\x18MvccG\
etByStartTsResponse\x121\n\x0cregion_error\x18\x01\x20\x01(\x0b2\x0e.err\
orpb.ErrorR\x0bregionError\x12\x14\n\x05error\x18\x02\x20\x01(\tR\x05err\
or\x12\x10\n\x03key\x18\x03\x20\x01(\x0cR\x03key\x12%\n\x04info\x18\x04\
\x20\x01(\x0b2\x11.kvrpcpb.MvccInfoR\x04info\"]\n\x12SplitRegionRequest\
\x12*\n\x07context\x18\x01\x20\x01(\x0b2\x10.kvrpcpb.ContextR\x07context\
\x12\x1b\n\tsplit_key\x18\x02\x20\x01(\x0cR\x08splitKey\"\x92\x01\n\x13S\
plitRegionResponse\x121\n\x0cregion_error\x18\x01\x20\x01(\x0b2\x0e.erro\
rpb.ErrorR\x0bregionError\x12\"\n\x04left\x18\x02\x20\x01(\x0b2\x0e.meta\
pb.RegionR\x04left\x12$\n\x05right\x18\x03\x20\x01(\x0b2\x0e.metapb.Regi\
onR\x05right*+\n\nCommandPri\x12\n\n\x06Normal\x10\0\x12\x07\n\x03Low\
\x10\x01\x12\x08\n\x04High\x10\x02*\x20\n\x0eIsolationLevel\x12\x06\n\
\x02SI\x10\0\x12\x06\n\x02RC\x10\x01*.\n\x02Op\x12\x07\n\x03Put\x10\0\
\x12\x07\n\x03Del\x10\x01\x12\x08\n\x04Lock\x10\x02\x12\x0c\n\x08Rollbac\
k\x10\x03B&\n\x18com.pingcap.tikv.kvproto\xe0\xe2\x1e\x01\xc8\xe2\x1e\
\x01\xd0\xe2\x1e\x01J\xed{\n\x07\x12\x05\0\0\x85\x03\x01\n\x08\n\x01\x0c\
\x12\x03\0\0\x12\n\x08\n\x01\x02\x12\x03\x01\x08\x0f\n\t\n\x02\x03\0\x12\
\x03\x03\x07\x15\n\t\n\x02\x03\x01\x12\x03\x04\x07\x16\n\t\n\x02\x03\x02\
\x12\x03\x05\x07\x1d\n\x08\n\x01\x08\x12\x03\x07\0(\n\x0b\n\x04\x08\xe7\
\x07\0\x12\x03\x07\0(\n\x0c\n\x05\x08\xe7\x07\0\x02\x12\x03\x07\x07\x20\
\n\r\n\x06\x08\xe7\x07\0\x02\0\x12\x03\x07\x07\x20\n\x0e\n\x07\x08\xe7\
\x07\0\x02\0\x01\x12\x03\x07\x08\x1f\n\x0c\n\x05\x08\xe7\x07\0\x03\x12\
\x03\x07#'\n\x08\n\x01\x08\x12\x03\x08\0$\n\x0b\n\x04\x08\xe7\x07\x01\
\x12\x03\x08\0$\n\x0c\n\x05\x08\xe7\x07\x01\x02\x12\x03\x08\x07\x1c\n\r\
\n\x06\x08\xe7\x07\x01\x02\0\x12\x03\x08\x07\x1c\n\x0e\n\x07\x08\xe7\x07\
\x01\x02\0\x01\x12\x03\x08\x08\x1b\n\x0c\n\x05\x08\xe7\x07\x01\x03\x12\
\x03\x08\x1f#\n\x08\n\x01\x08\x12\x03\t\0*\n\x0b\n\x04\x08\xe7\x07\x02\
\x12\x03\t\0*\n\x0c\n\x05\x08\xe7\x07\x02\x02\x12\x03\t\x07\"\n\r\n\x06\
\x08\xe7\x07\x02\x02\0\x12\x03\t\x07\"\n\x0e\n\x07\x08\xe7\x07\x02\x02\0\
\x01\x12\x03\t\x08!\n\x0c\n\x05\x08\xe7\x07\x02\x03\x12\x03\t%)\n\x08\n\
\x01\x08\x12\x03\x0b\01\n\x0b\n\x04\x08\xe7\x07\x03\x12\x03\x0b\01\n\x0c\
\n\x05\x08\xe7\x07\x03\x02\x12\x03\x0b\x07\x13\n\r\n\x06\x08\xe7\x07\x03\
\x1d\n\nstart_keys\x18\x02\x20\x03(\x0cR\tstartKeys\x12\x1d\n\neach_limi\
t\x18\x03\x20\x01(\rR\teachLimit\x12\x19\n\x08key_only\x18\x04\x20\x01(\
\x08R\x07keyOnly\"l\n\x14RawBatchScanResponse\x121\n\x0cregion_error\x18\
\x01\x20\x01(\x0b2\x0e.errorpb.ErrorR\x0bregionError\x12!\n\x03kvs\x18\
\x02\x20\x03(\x0b2\x0f.kvrpcpb.KvPairR\x03kvs\"d\n\tWriteInfo\x12\x19\n\
\x08start_ts\x18\x01\x20\x01(\x04R\x07startTs\x12\x1f\n\x04type\x18\x02\
\x20\x01(\x0e2\x0b.kvrpcpb.OpR\x04type\x12\x1b\n\tcommit_ts\x18\x03\x20\
\x01(\x04R\x08commitTs\"W\n\tValueInfo\x12\x14\n\x05value\x18\x01\x20\
\x01(\x0cR\x05value\x12\x0e\n\x02ts\x18\x02\x20\x01(\x04R\x02ts\x12$\n\
\x0eis_short_value\x18\x03\x20\x01(\x08R\x0cisShortValue\"\x89\x01\n\x08\
MvccInfo\x12%\n\x04lock\x18\x01\x20\x01(\x0b2\x11.kvrpcpb.LockInfoR\x04l\
ock\x12*\n\x06writes\x18\x02\x20\x03(\x0b2\x12.kvrpcpb.WriteInfoR\x06wri\
tes\x12*\n\x06values\x18\x03\x20\x03(\x0b2\x12.kvrpcpb.ValueInfoR\x06val\
ues\"S\n\x13MvccGetByKeyRequest\x12*\n\x07context\x18\x01\x20\x01(\x0b2\
\x10.kvrpcpb.ContextR\x07context\x12\x10\n\x03key\x18\x02\x20\x01(\x0cR\
\x03key\"\x86\x01\n\x14MvccGetByKeyResponse\x121\n\x0cregion_error\x18\
\x01\x20\x01(\x0b2\x0e.errorpb.ErrorR\x0bregionError\x12\x14\n\x05error\
\x18\x02\x20\x01(\tR\x05error\x12%\n\x04info\x18\x03\x20\x01(\x0b2\x11.k\
vrpcpb.MvccInfoR\x04info\"`\n\x17MvccGetByStartTsRequest\x12*\n\x07conte\
xt\x18\x01\x20\x01(\x0b2\x10.kvrpcpb.ContextR\x07context\x12\x19\n\x08st\
art_ts\x18\x02\x20\x01(\x04R\x07startTs\"\x9c\x01\n\x18MvccGetByStartTsR\
esponse\x121\n\x0cregion_error\x18\x01\x20\x01(\x0b2\x0e.errorpb.ErrorR\
\x0bregionError\x12\x14\n\x05error\x18\x02\x20\x01(\tR\x05error\x12\x10\
\n\x03key\x18\x03\x20\x01(\x0cR\x03key\x12%\n\x04info\x18\x04\x20\x01(\
\x0b2\x11.kvrpcpb.MvccInfoR\x04info\"]\n\x12SplitRegionRequest\x12*\n\
\x07context\x18\x01\x20\x01(\x0b2\x10.kvrpcpb.ContextR\x07context\x12\
\x1b\n\tsplit_key\x18\x02\x20\x01(\x0cR\x08splitKey\"\x92\x01\n\x13Split\
RegionResponse\x121\n\x0cregion_error\x18\x01\x20\x01(\x0b2\x0e.errorpb.\
ErrorR\x0bregionError\x12\"\n\x04left\x18\x02\x20\x01(\x0b2\x0e.metapb.R\
egionR\x04left\x12$\n\x05right\x18\x03\x20\x01(\x0b2\x0e.metapb.RegionR\
\x05right*+\n\nCommandPri\x12\n\n\x06Normal\x10\0\x12\x07\n\x03Low\x10\
\x01\x12\x08\n\x04High\x10\x02*\x20\n\x0eIsolationLevel\x12\x06\n\x02SI\
\x10\0\x12\x06\n\x02RC\x10\x01*.\n\x02Op\x12\x07\n\x03Put\x10\0\x12\x07\
\n\x03Del\x10\x01\x12\x08\n\x04Lock\x10\x02\x12\x0c\n\x08Rollback\x10\
\x03B&\n\x18com.pingcap.tikv.kvproto\xe0\xe2\x1e\x01\xd0\xe2\x1e\x01\xc8\
\xe2\x1e\x01J\xed{\n\x07\x12\x05\0\0\x85\x03\x01\n\x08\n\x01\x0c\x12\x03\
\0\0\x12\n\x08\n\x01\x02\x12\x03\x01\x08\x0f\n\t\n\x02\x03\0\x12\x03\x03\
\x07\x15\n\t\n\x02\x03\x01\x12\x03\x04\x07\x16\n\t\n\x02\x03\x02\x12\x03\
\x05\x07\x1d\n\x08\n\x01\x08\x12\x03\x07\0(\n\x0b\n\x04\x08\xe7\x07\0\
\x12\x03\x07\0(\n\x0c\n\x05\x08\xe7\x07\0\x02\x12\x03\x07\x07\x20\n\r\n\
\x06\x08\xe7\x07\0\x02\0\x12\x03\x07\x07\x20\n\x0e\n\x07\x08\xe7\x07\0\
\x02\0\x01\x12\x03\x07\x08\x1f\n\x0c\n\x05\x08\xe7\x07\0\x03\x12\x03\x07\
#'\n\x08\n\x01\x08\x12\x03\x08\0$\n\x0b\n\x04\x08\xe7\x07\x01\x12\x03\
\x08\0$\n\x0c\n\x05\x08\xe7\x07\x01\x02\x12\x03\x08\x07\x1c\n\r\n\x06\
\x08\xe7\x07\x01\x02\0\x12\x03\x08\x07\x1c\n\x0e\n\x07\x08\xe7\x07\x01\
\x02\0\x01\x12\x03\x08\x08\x1b\n\x0c\n\x05\x08\xe7\x07\x01\x03\x12\x03\
\x08\x1f#\n\x08\n\x01\x08\x12\x03\t\0*\n\x0b\n\x04\x08\xe7\x07\x02\x12\
\x03\t\0*\n\x0c\n\x05\x08\xe7\x07\x02\x02\x12\x03\t\x07\"\n\r\n\x06\x08\
\xe7\x07\x02\x02\0\x12\x03\t\x07\"\n\x0e\n\x07\x08\xe7\x07\x02\x02\0\x01\
\x12\x03\t\x08!\n\x0c\n\x05\x08\xe7\x07\x02\x03\x12\x03\t%)\n\x08\n\x01\
\x08\x12\x03\x0b\01\n\x0b\n\x04\x08\xe7\x07\x03\x12\x03\x0b\01\n\x0c\n\
\x05\x08\xe7\x07\x03\x02\x12\x03\x0b\x07\x13\n\r\n\x06\x08\xe7\x07\x03\
\x02\0\x12\x03\x0b\x07\x13\n\x0e\n\x07\x08\xe7\x07\x03\x02\0\x01\x12\x03\
\x0b\x07\x13\n\x0c\n\x05\x08\xe7\x07\x03\x07\x12\x03\x0b\x160\n\n\n\x02\
\x04\0\x12\x04\r\0\x12\x01\n\n\n\x03\x04\0\x01\x12\x03\r\x08\x10\n\x0b\n\
Expand Down Expand Up @@ -18024,11 +18024,11 @@ static file_descriptor_proto_data: &'static [u8] = b"\
\x04\xc9\x02\x04\x0c\n\r\n\x05\x042\x02\x01\x05\x12\x04\xc9\x02\r\x12\n\
\r\n\x05\x042\x02\x01\x01\x12\x04\xc9\x02\x13\x1d\n\r\n\x05\x042\x02\x01\
\x03\x12\x04\xc9\x02\x20!\n\x0c\n\x04\x042\x02\x02\x12\x04\xca\x02\x04\
\x1f\n\x0f\n\x05\x042\x02\x02\x04\x12\x06\xca\x02\x04\xc9\x02\"\n\r\n\
\x1a\n\x0f\n\x05\x042\x02\x02\x04\x12\x06\xca\x02\x04\xc9\x02\"\n\r\n\
\x05\x042\x02\x02\x05\x12\x04\xca\x02\x04\n\n\r\n\x05\x042\x02\x02\x01\
\x12\x04\xca\x02\x0b\x1a\n\r\n\x05\x042\x02\x02\x03\x12\x04\xca\x02\x1d\
\x1e\n\x0c\n\x04\x042\x02\x03\x12\x04\xcb\x02\x04\x16\n\x0f\n\x05\x042\
\x02\x03\x04\x12\x06\xcb\x02\x04\xca\x02\x1f\n\r\n\x05\x042\x02\x03\x05\
\x12\x04\xca\x02\x0b\x15\n\r\n\x05\x042\x02\x02\x03\x12\x04\xca\x02\x18\
\x19\n\x0c\n\x04\x042\x02\x03\x12\x04\xcb\x02\x04\x16\n\x0f\n\x05\x042\
\x02\x03\x04\x12\x06\xcb\x02\x04\xca\x02\x1a\n\r\n\x05\x042\x02\x03\x05\
\x12\x04\xcb\x02\x04\x08\n\r\n\x05\x042\x02\x03\x01\x12\x04\xcb\x02\t\
\x11\n\r\n\x05\x042\x02\x03\x03\x12\x04\xcb\x02\x14\x15\n\x0c\n\x02\x043\
\x12\x06\xce\x02\0\xd1\x02\x01\n\x0b\n\x03\x043\x01\x12\x04\xce\x02\x08\
Expand Down
2 changes: 1 addition & 1 deletion src/metapb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1669,7 +1669,7 @@ static file_descriptor_proto_data: &'static [u8] = b"\
1\n\x04Peer\x12\x0e\n\x02id\x18\x01\x20\x01(\x04R\x02id\x12\x19\n\x08sto\
re_id\x18\x02\x20\x01(\x04R\x07storeId*0\n\nStoreState\x12\x06\n\x02Up\
\x10\0\x12\x0b\n\x07Offline\x10\x01\x12\r\n\tTombstone\x10\x02B&\n\x18co\
m.pingcap.tikv.kvproto\xc8\xe2\x1e\x01\xd0\xe2\x1e\x01\xe0\xe2\x1e\x01J\
m.pingcap.tikv.kvproto\xc8\xe2\x1e\x01\xe0\xe2\x1e\x01\xd0\xe2\x1e\x01J\
\x9d\x11\n\x06\x12\x04\0\0:\x01\n\x08\n\x01\x0c\x12\x03\0\0\x12\n\x08\n\
\x01\x02\x12\x03\x01\x08\x0e\n\t\n\x02\x03\0\x12\x03\x03\x07\x1d\n\x08\n\
\x01\x08\x12\x03\x05\0(\n\x0b\n\x04\x08\xe7\x07\0\x12\x03\x05\0(\n\x0c\n\
Expand Down
2 changes: 1 addition & 1 deletion src/pdpb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12028,7 +12028,7 @@ static file_descriptor_proto_data: &'static [u8] = b"\
\x12S\n\x10PutClusterConfig\x12\x1d.pdpb.PutClusterConfigRequest\x1a\x1e\
.pdpb.PutClusterConfigResponse\"\0\x12J\n\rScatterRegion\x12\x1a.pdpb.Sc\
atterRegionRequest\x1a\x1b.pdpb.ScatterRegionResponse\"\0B&\n\x18com.pin\
gcap.tikv.kvproto\xd0\xe2\x1e\x01\xc8\xe2\x1e\x01\xe0\xe2\x1e\x01J\xe4j\
gcap.tikv.kvproto\xc8\xe2\x1e\x01\xe0\xe2\x1e\x01\xd0\xe2\x1e\x01J\xe4j\
\n\x07\x12\x05\0\0\xf7\x02\x01\n\x08\n\x01\x0c\x12\x03\0\0\x12\n\x08\n\
\x01\x02\x12\x03\x01\x08\x0c\n\t\n\x02\x03\0\x12\x03\x03\x07\x15\n\t\n\
\x02\x03\x01\x12\x03\x04\x07\x16\n\t\n\x02\x03\x02\x12\x03\x06\x07\x1d\n\
Expand Down

0 comments on commit 5ee163b

Please sign in to comment.