Merge 3e5173b9c89d43551c14eeab77c64a0993bb4284 into c86c93ca2951338115159dcdd20711603044e1f1

This commit is contained in:
Iván Valdés Castillo 2024-09-26 14:38:27 -07:00 committed by GitHub
commit 063a601e1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -72,17 +72,17 @@ func (as *InternalRaftStringer) String() string {
return as.Request.String()
}
// txnRequestStringer implements a custom proto String to replace value bytes fields with value size
// TxnRequestStringer implements a custom proto String to replace value bytes fields with value size
// fields in any nested txn and put operations.
type txnRequestStringer struct {
type TxnRequestStringer struct {
Request *TxnRequest
}
func NewLoggableTxnRequest(request *TxnRequest) *txnRequestStringer {
return &txnRequestStringer{request}
func NewLoggableTxnRequest(request *TxnRequest) *TxnRequestStringer {
return &TxnRequestStringer{request}
}
func (as *txnRequestStringer) String() string {
func (as *TxnRequestStringer) String() string {
var compare []string
for _, c := range as.Request.Compare {
switch cv := c.TargetUnion.(type) {
@ -155,10 +155,10 @@ func (m *loggableValueCompare) Reset() { *m = loggableValueCompare{} }
func (m *loggableValueCompare) String() string { return proto.CompactTextString(m) }
func (*loggableValueCompare) ProtoMessage() {}
// loggablePutRequest implements a custom proto String to replace value bytes field with a value
// LoggablePutRequest implements a custom proto String to replace value bytes field with a value
// size field.
// To preserve proto encoding of the key bytes, a faked out proto type is used here.
type loggablePutRequest struct {
type LoggablePutRequest struct {
Key []byte `protobuf:"bytes,1,opt,name=key,proto3"`
ValueSize int64 `protobuf:"varint,2,opt,name=value_size,proto3"`
Lease int64 `protobuf:"varint,3,opt,name=lease,proto3"`
@ -167,8 +167,8 @@ type loggablePutRequest struct {
IgnoreLease bool `protobuf:"varint,6,opt,name=ignore_lease,proto3"`
}
func NewLoggablePutRequest(request *PutRequest) *loggablePutRequest {
return &loggablePutRequest{
func NewLoggablePutRequest(request *PutRequest) *LoggablePutRequest {
return &LoggablePutRequest{
request.Key,
int64(len(request.Value)),
request.Lease,
@ -178,6 +178,6 @@ func NewLoggablePutRequest(request *PutRequest) *loggablePutRequest {
}
}
func (m *loggablePutRequest) Reset() { *m = loggablePutRequest{} }
func (m *loggablePutRequest) String() string { return proto.CompactTextString(m) }
func (*loggablePutRequest) ProtoMessage() {}
func (m *LoggablePutRequest) Reset() { *m = LoggablePutRequest{} }
func (m *LoggablePutRequest) String() string { return proto.CompactTextString(m) }
func (*LoggablePutRequest) ProtoMessage() {}