File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -466,11 +466,11 @@ message RawBatchPutRequest {
466
466
Context context = 1 ;
467
467
repeated KvPair pairs = 2 ;
468
468
string cf = 3 ;
469
+ bool for_cas = 5 ;
469
470
// The time-to-live for each keys in seconds, and if the length of `ttls`
470
471
// is exactly one, the ttl will be applied to all keys. Otherwise, the length
471
472
// mismatch between `ttls` and `pairs` will return an error.
472
- repeated uint64 ttls = 4 ;
473
- bool for_cas = 5 ;
473
+ repeated uint64 ttls = 6 ;
474
474
}
475
475
476
476
message RawBatchPutResponse {
Original file line number Diff line number Diff line change @@ -652,13 +652,13 @@ pub struct RawBatchPutRequest {
652
652
pub pairs : :: prost:: alloc:: vec:: Vec < KvPair > ,
653
653
#[ prost( string, tag = "3" ) ]
654
654
pub cf : :: prost:: alloc:: string:: String ,
655
+ #[ prost( bool , tag = "5" ) ]
656
+ pub for_cas : bool ,
655
657
/// The time-to-live for each keys in seconds, and if the length of `ttls`
656
658
/// is exactly one, the ttl will be applied to all keys. Otherwise, the length
657
659
/// mismatch between `ttls` and `pairs` will return an error.
658
- #[ prost( uint64, repeated, tag = "4 " ) ]
660
+ #[ prost( uint64, repeated, tag = "6 " ) ]
659
661
pub ttls : :: prost:: alloc:: vec:: Vec < u64 > ,
660
- #[ prost( bool , tag = "5" ) ]
661
- pub for_cas : bool ,
662
662
}
663
663
#[ allow( clippy:: derive_partial_eq_without_eq) ]
664
664
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
You can’t perform that action at this time.
0 commit comments