make Decimal proto definition backwards compatible

This commit is contained in:
reesporte 2022-06-17 11:49:51 -05:00 committed by reesporte
parent 0d91e2991d
commit 51fb34e657
5 changed files with 299 additions and 210 deletions

View file

@ -3,6 +3,7 @@ package proto
import (
"fmt"
"math/big"
"time"
"github.com/gogo/protobuf/proto"
@ -1139,11 +1140,20 @@ func (s Serializer) decodeFieldOptions(options *pb.FieldOptions, m *pilosa.Field
}
func (s Serializer) decodeDecimal(d *pb.Decimal, m *pql.Decimal) {
// err should always be nil, unless there's a problem with the standard library
err := m.GobDecode(d.Gob)
if err != nil {
panic(err)
if !d.NewVersion {
// backwards compatibility
m.SetValue(d.Value)
} else {
// forwards compatibility
val := big.NewInt(0)
// set the absolute value
val.SetBytes(d.ValAbs)
// convert to the correct sign
val.Mul(val, big.NewInt(d.ValSign))
// set it on the retval
m.SetBigIntValue(val)
}
m.Scale = d.Scale
}
func (s Serializer) decodeNodes(a []*pb.Node, m []*topology.Node) {
@ -1964,10 +1974,14 @@ func (s Serializer) encodeDecimal(p *pql.Decimal) *pb.Decimal {
if p == nil {
return nil
}
gob, _ := p.GobEncode() // ignore err on purpose
return &pb.Decimal{
Gob: gob,
val := p.Value()
retval := &pb.Decimal{
Scale: p.Scale,
ValAbs: val.Bytes(),
ValSign: int64(val.Sign()),
NewVersion: true,
}
return retval
}
func (s Serializer) encodeResizeNodeMessage(m *pilosa.ResizeNodeMessage) *pb.ResizeNodeMessage {

View file

@ -1243,7 +1243,11 @@ func (m *ValCount) GetTimestampVal() string {
}
type Decimal struct {
Gob []byte `protobuf:"bytes,1,opt,name=Gob,proto3" json:"Gob,omitempty"`
Value int64 `protobuf:"varint,1,opt,name=Value,proto3" json:"Value,omitempty"`
Scale int64 `protobuf:"varint,2,opt,name=Scale,proto3" json:"Scale,omitempty"`
NewVersion bool `protobuf:"varint,3,opt,name=NewVersion,proto3" json:"NewVersion,omitempty"`
ValAbs []byte `protobuf:"bytes,4,opt,name=ValAbs,proto3" json:"ValAbs,omitempty"`
ValSign int64 `protobuf:"varint,5,opt,name=ValSign,proto3" json:"ValSign,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -1282,13 +1286,41 @@ func (m *Decimal) XXX_DiscardUnknown() {
var xxx_messageInfo_Decimal proto.InternalMessageInfo
func (m *Decimal) GetGob() []byte {
func (m *Decimal) GetValue() int64 {
if m != nil {
return m.Gob
return m.Value
}
return 0
}
func (m *Decimal) GetScale() int64 {
if m != nil {
return m.Scale
}
return 0
}
func (m *Decimal) GetNewVersion() bool {
if m != nil {
return m.NewVersion
}
return false
}
func (m *Decimal) GetValAbs() []byte {
if m != nil {
return m.ValAbs
}
return nil
}
func (m *Decimal) GetValSign() int64 {
if m != nil {
return m.ValSign
}
return 0
}
type DistinctTimestamp struct {
Values []string `protobuf:"bytes,1,rep,name=Values,proto3" json:"Values,omitempty"`
Name string `protobuf:"bytes,2,opt,name=Name,proto3" json:"Name,omitempty"`
@ -2649,113 +2681,116 @@ func init() {
func init() { proto.RegisterFile("public.proto", fileDescriptor_413a91106d7bcce8) }
var fileDescriptor_413a91106d7bcce8 = []byte{
// 1692 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x58, 0x4b, 0x6f, 0x1b, 0xd7,
0x15, 0xd6, 0x3c, 0xf8, 0x3a, 0xa4, 0x28, 0xe9, 0x5a, 0x76, 0xc7, 0xb6, 0xcc, 0xd2, 0x83, 0xc2,
0xa5, 0xab, 0x42, 0x46, 0xd9, 0xc2, 0x28, 0x0c, 0xb4, 0x86, 0x28, 0xca, 0x16, 0x61, 0x4b, 0x76,
0xaf, 0x54, 0xb5, 0x0b, 0x6f, 0x46, 0xe4, 0x2d, 0x3d, 0xe8, 0x90, 0xc3, 0xcc, 0x0c, 0x4d, 0xe9,
0x07, 0x04, 0xc9, 0x4f, 0xc8, 0x2e, 0xbf, 0x26, 0x48, 0x76, 0xc9, 0x32, 0xcb, 0xc0, 0xd9, 0xe5,
0x57, 0x04, 0xe7, 0xdc, 0x3b, 0x4f, 0x52, 0x86, 0x61, 0x64, 0x37, 0xe7, 0x71, 0xcf, 0xbd, 0xe7,
0x3b, 0x4f, 0x12, 0x1a, 0xb3, 0xf9, 0x85, 0xe7, 0x0e, 0xf7, 0x66, 0x81, 0x1f, 0xf9, 0x4c, 0x9f,
0x5d, 0xd8, 0x57, 0x60, 0x70, 0x7f, 0xc1, 0x2c, 0xa8, 0x1c, 0xf8, 0xde, 0x7c, 0x32, 0x0d, 0x2d,
0xad, 0x6d, 0x74, 0x4c, 0x1e, 0x93, 0x8c, 0x81, 0xf9, 0x42, 0x5c, 0x85, 0x96, 0xd1, 0x36, 0x3a,
0x35, 0x4e, 0xdf, 0xa8, 0xcd, 0x7d, 0x27, 0x70, 0xa7, 0x63, 0xcb, 0x6c, 0x6b, 0x9d, 0x06, 0x8f,
0x49, 0xb6, 0x0d, 0xa5, 0xc1, 0x74, 0x24, 0x2e, 0xad, 0x52, 0x5b, 0xeb, 0xd4, 0xb8, 0x24, 0x90,
0xfb, 0xcc, 0x15, 0xde, 0xc8, 0x2a, 0x4b, 0x2e, 0x11, 0x76, 0x07, 0x6a, 0xdc, 0x5f, 0x1c, 0x3b,
0x51, 0xe0, 0x5e, 0xb2, 0xbb, 0x60, 0x72, 0x7f, 0x21, 0x6f, 0xaf, 0x77, 0x2b, 0x7b, 0xb3, 0x8b,
0x3d, 0xee, 0x2f, 0x38, 0x31, 0xed, 0x7d, 0xa8, 0x9d, 0xba, 0xe3, 0xa9, 0x18, 0xe1, 0x53, 0x6f,
0x83, 0xf1, 0xda, 0x47, 0x45, 0x2d, 0xab, 0x88, 0x3c, 0x14, 0x9d, 0x88, 0xb1, 0xa5, 0x17, 0x44,
0x27, 0x62, 0x6c, 0xff, 0x1d, 0x9a, 0xdc, 0x5f, 0x0c, 0x46, 0x62, 0x1a, 0xb9, 0xff, 0x73, 0x45,
0x40, 0x8e, 0x25, 0x37, 0x9a, 0xf2, 0xa2, 0xc4, 0x59, 0x3d, 0x75, 0xd6, 0xbe, 0x03, 0xe5, 0x41,
0xff, 0xa5, 0x1b, 0x46, 0x6c, 0x13, 0x8c, 0x41, 0x3f, 0x3e, 0x80, 0x9f, 0xf6, 0x01, 0x6c, 0x1d,
0x5e, 0x46, 0x81, 0x33, 0x8c, 0xc4, 0x68, 0xd0, 0x97, 0x90, 0xb1, 0x26, 0xe8, 0x83, 0x3e, 0xbd,
0xcf, 0xe4, 0xfa, 0xa0, 0xcf, 0x5a, 0x60, 0x9e, 0x3b, 0x9e, 0x34, 0x5a, 0xef, 0x02, 0x3e, 0x4b,
0x1a, 0xe4, 0xc4, 0xb7, 0xdf, 0xe4, 0x8c, 0x28, 0x3c, 0x6e, 0x41, 0x99, 0x50, 0x92, 0xd7, 0xd5,
0xb8, 0xa2, 0xd8, 0xa3, 0x34, 0x50, 0xd2, 0xde, 0x4d, 0xb4, 0xb7, 0xf4, 0x88, 0x24, 0x7e, 0xf6,
0x3d, 0xa8, 0xbc, 0x10, 0x57, 0xf4, 0xfe, 0xd8, 0x3b, 0x2d, 0xe3, 0xdd, 0xf7, 0x1a, 0xdc, 0x48,
0x4e, 0x9f, 0x39, 0x17, 0x9e, 0x38, 0x77, 0xbc, 0xb9, 0x60, 0xad, 0xd8, 0x57, 0x2d, 0xff, 0xe6,
0xa3, 0x35, 0xf2, 0x9c, 0xdd, 0x4f, 0x90, 0x42, 0x85, 0x3a, 0x2a, 0xa8, 0x6b, 0x8e, 0xd6, 0x54,
0x96, 0xec, 0x40, 0xb5, 0x77, 0x3a, 0x20, 0x73, 0x96, 0xd1, 0xd6, 0x3a, 0xc6, 0xd1, 0x1a, 0x4f,
0x38, 0xec, 0x0e, 0x54, 0x8e, 0xe7, 0x91, 0xb8, 0x1c, 0xf4, 0x29, 0x87, 0xcc, 0xa3, 0x35, 0x1e,
0x33, 0xf0, 0x24, 0x7d, 0xbe, 0x10, 0x57, 0x32, 0x91, 0xf0, 0x64, 0xcc, 0x61, 0xdb, 0x60, 0xf6,
0x7c, 0xdf, 0xa3, 0x64, 0xaa, 0xe2, 0x6d, 0x48, 0xf5, 0x2a, 0x50, 0x22, 0xc3, 0xf6, 0x25, 0x6c,
0xe7, 0x1d, 0x52, 0x61, 0x61, 0x60, 0xa0, 0x3d, 0x4d, 0xd9, 0x43, 0x82, 0x6d, 0x52, 0xa8, 0x74,
0x75, 0x3f, 0x06, 0xeb, 0x11, 0x94, 0xc9, 0x8c, 0x4c, 0xf8, 0x7a, 0xf7, 0x77, 0x39, 0x78, 0x53,
0x80, 0xb8, 0x52, 0xeb, 0xd5, 0x08, 0xdf, 0x57, 0xc1, 0xa0, 0x6f, 0xff, 0xa3, 0x08, 0x25, 0xc5,
0x0c, 0x61, 0x3f, 0x71, 0x26, 0x42, 0xde, 0xcc, 0xe9, 0x1b, 0x79, 0x67, 0x57, 0x33, 0x41, 0x57,
0xd7, 0x38, 0x7d, 0xdb, 0x73, 0x68, 0xe6, 0x8f, 0xe3, 0x63, 0x32, 0x49, 0xb0, 0xf2, 0x31, 0x24,
0x4f, 0xb2, 0xa3, 0x5b, 0xcc, 0x0e, 0x6b, 0xf9, 0x44, 0x31, 0x41, 0xfe, 0x09, 0xe6, 0x6b, 0xc7,
0x0d, 0x96, 0xd2, 0x76, 0x53, 0xe2, 0x65, 0xd0, 0x0b, 0x0d, 0x09, 0x7c, 0xe9, 0xc0, 0x9f, 0x4f,
0x23, 0x09, 0x18, 0x97, 0x84, 0xfd, 0x14, 0x6a, 0x78, 0x5e, 0xfa, 0xba, 0x23, 0x8d, 0xa9, 0xbc,
0xa9, 0xe2, 0xed, 0x48, 0x73, 0x79, 0x45, 0xd2, 0x07, 0xf4, 0x6c, 0x1f, 0xe8, 0x01, 0xa0, 0x34,
0x94, 0x16, 0x5a, 0x50, 0x22, 0x4a, 0xb9, 0x9c, 0x9a, 0x90, 0xec, 0x6b, 0x6c, 0xdc, 0xc3, 0xbe,
0x13, 0x3d, 0xfe, 0x1b, 0x8a, 0x65, 0xc6, 0xe1, 0x0b, 0x0c, 0xae, 0x72, 0xc2, 0x87, 0xaa, 0x04,
0xca, 0x5f, 0xa4, 0x06, 0xb4, 0x8c, 0x01, 0xe4, 0x62, 0x7f, 0xe8, 0xc7, 0xbe, 0x11, 0x81, 0x55,
0xc8, 0xfd, 0x45, 0x0a, 0x83, 0xa2, 0xd8, 0xef, 0xe3, 0x5b, 0x4c, 0xf2, 0xb3, 0x46, 0xf5, 0x81,
0xf7, 0xc7, 0x17, 0xfe, 0x17, 0xe0, 0x79, 0xe0, 0xcf, 0x67, 0x04, 0x11, 0xb3, 0xa1, 0x44, 0x94,
0xf2, 0xa9, 0x81, 0xea, 0xf1, 0x7b, 0xb8, 0x14, 0xad, 0x06, 0x17, 0x83, 0xb0, 0x3f, 0x1e, 0xcb,
0xf2, 0xe1, 0xf8, 0x69, 0x7f, 0xad, 0x41, 0xf5, 0xdc, 0xf1, 0x12, 0xf1, 0xb9, 0xe3, 0x29, 0x5f,
0xf1, 0x33, 0x6f, 0xc6, 0x88, 0xcd, 0xdc, 0x81, 0xea, 0x33, 0xcf, 0x77, 0x22, 0x54, 0x46, 0x5b,
0x1a, 0x4f, 0x68, 0xb6, 0x0b, 0xd0, 0x17, 0x43, 0x77, 0xe2, 0x78, 0x28, 0x35, 0xd3, 0x7a, 0x56,
0x5c, 0x9e, 0x11, 0x33, 0x1b, 0x1a, 0x67, 0xee, 0x44, 0x84, 0x91, 0x33, 0x99, 0xa1, 0xba, 0x6c,
0xf3, 0x39, 0x9e, 0x7d, 0x17, 0x2a, 0xea, 0x04, 0xbe, 0xef, 0xb9, 0x7f, 0x41, 0xef, 0x6b, 0x70,
0xfc, 0xb4, 0x9f, 0xc2, 0x56, 0xdf, 0x0d, 0x23, 0x77, 0x3a, 0x8c, 0x92, 0x43, 0x08, 0xb3, 0x2a,
0x3a, 0xd5, 0xec, 0x24, 0x95, 0x54, 0x8e, 0x9e, 0x56, 0x8e, 0xfd, 0x8d, 0x06, 0x8d, 0x7f, 0xcd,
0x45, 0x70, 0xc5, 0xc5, 0x67, 0x73, 0x11, 0x46, 0xe8, 0x31, 0xd1, 0x71, 0x3c, 0x89, 0x40, 0x93,
0xa7, 0x6f, 0x9d, 0x60, 0x24, 0x0b, 0xc1, 0xe4, 0x8a, 0xa2, 0x88, 0x8a, 0x89, 0x1f, 0x09, 0x7a,
0x7a, 0x95, 0x2b, 0x8a, 0xed, 0x42, 0xe3, 0x70, 0x72, 0x21, 0x46, 0x23, 0x31, 0xea, 0x3b, 0x91,
0x63, 0x55, 0xf3, 0x73, 0x28, 0x27, 0x64, 0x7f, 0x80, 0xf5, 0xd7, 0x81, 0x38, 0x0b, 0x9c, 0x69,
0xe8, 0x39, 0x91, 0x18, 0x59, 0x35, 0xb2, 0x95, 0x67, 0xb2, 0x1d, 0xa8, 0x1d, 0x3b, 0x97, 0xc7,
0x62, 0xe2, 0x07, 0x57, 0x16, 0x50, 0x38, 0x52, 0x86, 0xfd, 0x12, 0xd6, 0x95, 0x1b, 0xe1, 0xcc,
0x9f, 0x86, 0x02, 0xb1, 0x3a, 0x0c, 0x02, 0xe5, 0x05, 0x7e, 0xb2, 0x87, 0x50, 0xe1, 0x22, 0x9c,
0x7b, 0x51, 0x5c, 0xcd, 0x1b, 0xf8, 0x9c, 0xf8, 0xd4, 0xdc, 0x8b, 0x78, 0x2c, 0xb7, 0x7f, 0x29,
0x41, 0x3d, 0x23, 0x48, 0xfa, 0x0b, 0xf6, 0xc8, 0x75, 0xd9, 0x5f, 0x70, 0x3a, 0x72, 0x7f, 0xb1,
0x34, 0x38, 0xb1, 0x26, 0x1a, 0xa0, 0x9d, 0xa8, 0xc4, 0xd3, 0x4e, 0xd2, 0x12, 0x34, 0x56, 0x97,
0x20, 0x2e, 0x0b, 0x6f, 0x9d, 0xe9, 0x58, 0x8c, 0x28, 0x5d, 0xaa, 0x3c, 0x26, 0x59, 0x27, 0xcd,
0x4d, 0xc2, 0x57, 0xe5, 0x7a, 0xcc, 0xe3, 0x69, 0xe6, 0xca, 0xca, 0xc2, 0x11, 0x53, 0x91, 0xf1,
0x91, 0x14, 0x7b, 0x0c, 0xcd, 0x57, 0xde, 0x28, 0xad, 0x9d, 0x50, 0x45, 0xa2, 0x89, 0x76, 0x52,
0x36, 0x2f, 0x68, 0xb1, 0x27, 0xc5, 0xf9, 0x4e, 0x31, 0xa9, 0x77, 0x99, 0xf2, 0x33, 0x23, 0xe1,
0xc5, 0x4d, 0x60, 0x37, 0xb3, 0x5e, 0x50, 0xa0, 0xea, 0xdd, 0x75, 0x3c, 0x96, 0x30, 0x79, 0x66,
0xfd, 0xd8, 0xcb, 0x76, 0x2b, 0xab, 0x4e, 0xda, 0xcd, 0x18, 0x21, 0xc9, 0xe5, 0xd9, 0x7e, 0xb6,
0x9b, 0x69, 0x8f, 0x56, 0x23, 0x35, 0x9e, 0x30, 0x79, 0xa6, 0x7d, 0x1e, 0xac, 0x58, 0x05, 0xac,
0x75, 0x3a, 0x54, 0x9c, 0xf3, 0x52, 0xc8, 0x57, 0xac, 0x0e, 0x4f, 0x8a, 0x73, 0xc4, 0x6a, 0xa6,
0x50, 0xe4, 0x25, 0xbc, 0x38, 0x71, 0x76, 0x33, 0x3b, 0x99, 0xb5, 0x91, 0xbe, 0x36, 0x61, 0xf2,
0xcc, 0xce, 0xf6, 0x17, 0xa8, 0x67, 0x03, 0xb5, 0x49, 0xea, 0x1b, 0xf9, 0x40, 0x85, 0x3c, 0xab,
0x83, 0x0e, 0x2e, 0x95, 0xbf, 0xb5, 0x95, 0x3a, 0xb8, 0x24, 0xe4, 0xcb, 0xfa, 0xf6, 0xb7, 0x3a,
0xac, 0x0f, 0x26, 0x33, 0x3f, 0x88, 0x32, 0x3d, 0x40, 0xae, 0x9d, 0xda, 0xca, 0xb5, 0x53, 0x2f,
0x74, 0x7a, 0xea, 0x05, 0xd4, 0x08, 0x4d, 0x2e, 0x89, 0x4c, 0x3e, 0x9a, 0xb9, 0x7c, 0xdc, 0x81,
0x9a, 0x1c, 0x94, 0x28, 0x2a, 0x91, 0x28, 0x65, 0xc8, 0x45, 0x78, 0x41, 0x8b, 0x50, 0x85, 0x3a,
0x57, 0x4c, 0xb2, 0x16, 0x80, 0x54, 0x23, 0x61, 0x95, 0x84, 0x19, 0x0e, 0xca, 0x13, 0x87, 0x42,
0xab, 0xdc, 0x36, 0x3a, 0x06, 0xcf, 0x70, 0xd8, 0x03, 0x68, 0x92, 0x13, 0x07, 0x81, 0xc0, 0x66,
0xb2, 0x1f, 0x51, 0x3e, 0x1b, 0xbc, 0xc0, 0x45, 0x3d, 0x72, 0x2b, 0xd5, 0x93, 0x9d, 0xa6, 0xc0,
0xa5, 0xb9, 0xe0, 0x09, 0x27, 0xa0, 0x8c, 0xad, 0x72, 0x49, 0xd8, 0x3f, 0xea, 0xc0, 0x24, 0x92,
0x72, 0xa9, 0xf9, 0xcd, 0xe0, 0xfc, 0x30, 0x6c, 0x79, 0x70, 0x2a, 0x4b, 0xe0, 0xa4, 0xf3, 0x40,
0x02, 0x13, 0xcf, 0x83, 0x36, 0xd4, 0xe3, 0xb1, 0x85, 0x42, 0x44, 0x55, 0xe3, 0x59, 0x16, 0xce,
0xa7, 0xd3, 0x08, 0x7f, 0x89, 0x28, 0x95, 0x1a, 0xd9, 0xce, 0xf1, 0x56, 0x40, 0x0b, 0x1f, 0x09,
0x6d, 0xfd, 0xc3, 0xd0, 0x36, 0xb2, 0xd0, 0x7e, 0xa1, 0x41, 0x63, 0x3f, 0xf2, 0x27, 0xee, 0x90,
0x8b, 0xa1, 0x1f, 0x8c, 0xae, 0x07, 0x55, 0xc2, 0xa7, 0x67, 0xe1, 0xeb, 0x80, 0x31, 0x78, 0x17,
0xa8, 0xfe, 0x7b, 0x8b, 0xb6, 0x8b, 0xa5, 0x28, 0x71, 0x54, 0x61, 0xf7, 0x41, 0x1f, 0x04, 0x94,
0xb3, 0xf5, 0xee, 0x56, 0xaa, 0x18, 0xeb, 0xe8, 0x83, 0xc0, 0xfe, 0x33, 0x6c, 0xcb, 0x87, 0xc4,
0x22, 0x35, 0x70, 0xb6, 0xa1, 0x74, 0x18, 0x04, 0x7e, 0x3c, 0x72, 0x24, 0x81, 0xeb, 0x73, 0x32,
0xc3, 0x30, 0x18, 0x9f, 0x92, 0x13, 0xab, 0x7e, 0x33, 0xb6, 0xa1, 0x7e, 0xe2, 0x47, 0xff, 0x09,
0xdc, 0x88, 0x5a, 0x92, 0x1c, 0x1c, 0x59, 0x96, 0xfd, 0x10, 0x6e, 0x16, 0x6e, 0x4e, 0x27, 0x23,
0xa6, 0x91, 0x91, 0xfe, 0xee, 0x3a, 0x85, 0x1b, 0x89, 0xea, 0xa0, 0xff, 0x49, 0x6f, 0x5c, 0x36,
0xfa, 0xa7, 0x8c, 0xe7, 0x64, 0x54, 0x5d, 0xbf, 0xc2, 0x1b, 0xbb, 0x07, 0x96, 0x42, 0x53, 0xfe,
0xf0, 0x55, 0x2f, 0x38, 0x77, 0xc5, 0xe2, 0xba, 0x7d, 0x9f, 0xd6, 0x0a, 0x9d, 0x36, 0x21, 0xfa,
0xb6, 0xbf, 0xd4, 0x61, 0x7b, 0x95, 0x91, 0x34, 0xa1, 0xb4, 0x4c, 0x42, 0xb1, 0x2e, 0x94, 0xde,
0xb9, 0x62, 0x11, 0xef, 0x02, 0x3b, 0x99, 0x60, 0x2f, 0xbd, 0x81, 0x4b, 0x55, 0x2c, 0xa4, 0xfd,
0x61, 0xe4, 0xfa, 0xd3, 0x78, 0x7f, 0x95, 0x14, 0xde, 0xd0, 0xf3, 0xfc, 0xe1, 0xff, 0xe5, 0x4f,
0x2f, 0x2e, 0x89, 0x15, 0x85, 0x51, 0xfa, 0xc8, 0xc2, 0x28, 0xaf, 0x2c, 0x8c, 0x0e, 0x6c, 0xfc,
0x7b, 0x36, 0x72, 0x22, 0x71, 0x78, 0xe9, 0x86, 0x91, 0x98, 0x0e, 0x85, 0x55, 0x21, 0x8f, 0x8a,
0x6c, 0xfb, 0x73, 0x0d, 0xd6, 0x95, 0x17, 0x52, 0x74, 0xcd, 0x96, 0xce, 0xc0, 0x44, 0xf7, 0xe2,
0x85, 0x90, 0xe0, 0x4e, 0xd0, 0x32, 0x08, 0x5b, 0x85, 0xd6, 0x26, 0x18, 0xa7, 0x22, 0x52, 0x7f,
0x4f, 0xe0, 0x27, 0xb6, 0x06, 0x12, 0xc9, 0x72, 0x0c, 0xd5, 0xfe, 0x97, 0xe3, 0xd9, 0x6f, 0xe0,
0x76, 0x0e, 0x52, 0xaa, 0xc6, 0x38, 0x2c, 0xe9, 0xea, 0xa8, 0xe5, 0x56, 0xc7, 0x3f, 0x42, 0xe9,
0x3c, 0x13, 0x98, 0x2d, 0x39, 0x2f, 0x33, 0xce, 0x70, 0x29, 0xb7, 0x4f, 0x73, 0xf3, 0x12, 0x7b,
0xe4, 0xfe, 0x78, 0x1c, 0x88, 0xb1, 0x13, 0xc5, 0xc9, 0x92, 0x32, 0xd8, 0x03, 0x28, 0x93, 0x72,
0x6c, 0xb6, 0xb8, 0x00, 0x29, 0x69, 0x6f, 0xf3, 0xbb, 0xf7, 0x2d, 0xed, 0x87, 0xf7, 0x2d, 0xed,
0xa7, 0xf7, 0x2d, 0xed, 0xab, 0x9f, 0x5b, 0x6b, 0x17, 0x65, 0xfa, 0x77, 0xe7, 0xaf, 0xbf, 0x06,
0x00, 0x00, 0xff, 0xff, 0x51, 0x2f, 0x5d, 0x6f, 0xed, 0x11, 0x00, 0x00,
// 1732 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x58, 0xcd, 0x8e, 0x2b, 0x47,
0x15, 0x9e, 0xfe, 0xf1, 0xdf, 0xb1, 0xc7, 0x77, 0xa6, 0x32, 0x09, 0x9d, 0xcb, 0xc4, 0x38, 0x2d,
0x14, 0x1c, 0x06, 0xdd, 0x08, 0x83, 0x22, 0x14, 0x09, 0xa2, 0xf1, 0x78, 0xc2, 0xb5, 0x6e, 0xee,
0xe4, 0x52, 0x1e, 0x0c, 0x8b, 0x6c, 0x7a, 0xec, 0xc2, 0x69, 0xd1, 0x76, 0x9b, 0xee, 0x76, 0x3c,
0xf3, 0x00, 0x28, 0x3c, 0x02, 0x3b, 0x9e, 0x06, 0xc1, 0x0e, 0x96, 0x2c, 0xd1, 0x65, 0xc7, 0x53,
0xa0, 0x73, 0xaa, 0xaa, 0xbb, 0xba, 0xed, 0x89, 0xa2, 0x88, 0x5d, 0x9f, 0x9f, 0x3a, 0x75, 0xce,
0x57, 0xe7, 0xcf, 0x86, 0xce, 0x66, 0x7b, 0x17, 0x85, 0xf3, 0x67, 0x9b, 0x24, 0xce, 0x62, 0x66,
0x6f, 0xee, 0xfc, 0x07, 0x70, 0x78, 0xbc, 0x63, 0x1e, 0x34, 0xae, 0xe2, 0x68, 0xbb, 0x5a, 0xa7,
0x9e, 0xd5, 0x77, 0x06, 0x2e, 0xd7, 0x24, 0x63, 0xe0, 0xbe, 0x10, 0x0f, 0xa9, 0xe7, 0xf4, 0x9d,
0x41, 0x8b, 0xd3, 0x37, 0x6a, 0xf3, 0x38, 0x48, 0xc2, 0xf5, 0xd2, 0x73, 0xfb, 0xd6, 0xa0, 0xc3,
0x35, 0xc9, 0xce, 0xa0, 0x36, 0x59, 0x2f, 0xc4, 0xbd, 0x57, 0xeb, 0x5b, 0x83, 0x16, 0x97, 0x04,
0x72, 0x3f, 0x09, 0x45, 0xb4, 0xf0, 0xea, 0x92, 0x4b, 0x84, 0x3f, 0x80, 0x16, 0x8f, 0x77, 0x2f,
0x83, 0x2c, 0x09, 0xef, 0xd9, 0x77, 0xc1, 0xe5, 0xf1, 0x4e, 0xde, 0xde, 0x1e, 0x36, 0x9e, 0x6d,
0xee, 0x9e, 0xf1, 0x78, 0xc7, 0x89, 0xe9, 0x5f, 0x42, 0x6b, 0x1a, 0x2e, 0xd7, 0x62, 0x81, 0xae,
0xbe, 0x0d, 0xce, 0xab, 0x18, 0x15, 0x2d, 0x53, 0x11, 0x79, 0x28, 0xba, 0x11, 0x4b, 0xcf, 0xae,
0x88, 0x6e, 0xc4, 0xd2, 0xff, 0x19, 0x74, 0x79, 0xbc, 0x9b, 0x2c, 0xc4, 0x3a, 0x0b, 0x7f, 0x17,
0x8a, 0x84, 0x02, 0xcb, 0x6f, 0x74, 0xe5, 0x45, 0x79, 0xb0, 0x76, 0x11, 0xac, 0xff, 0x14, 0xea,
0x93, 0xf1, 0xa7, 0x61, 0x9a, 0xb1, 0x13, 0x70, 0x26, 0x63, 0x7d, 0x00, 0x3f, 0xfd, 0x2b, 0x38,
0xbd, 0xbe, 0xcf, 0x92, 0x60, 0x9e, 0x89, 0xc5, 0x64, 0x2c, 0x21, 0x63, 0x5d, 0xb0, 0x27, 0x63,
0xf2, 0xcf, 0xe5, 0xf6, 0x64, 0xcc, 0x7a, 0xe0, 0xce, 0x82, 0x48, 0x1a, 0x6d, 0x0f, 0x01, 0xdd,
0x92, 0x06, 0x39, 0xf1, 0xfd, 0xcf, 0x4b, 0x46, 0x14, 0x1e, 0x6f, 0x41, 0x9d, 0x50, 0x92, 0xd7,
0xb5, 0xb8, 0xa2, 0xd8, 0x07, 0xc5, 0x43, 0x49, 0x7b, 0x6f, 0xa2, 0xbd, 0x3d, 0x27, 0xf2, 0xf7,
0xf3, 0xdf, 0x81, 0xc6, 0x0b, 0xf1, 0x40, 0xfe, 0xeb, 0xe8, 0x2c, 0x23, 0xba, 0x7f, 0x58, 0xf0,
0x46, 0x7e, 0xfa, 0x36, 0xb8, 0x8b, 0xc4, 0x2c, 0x88, 0xb6, 0x82, 0xf5, 0x74, 0xac, 0x56, 0xd9,
0xe7, 0xe7, 0x47, 0x14, 0x39, 0x7b, 0x37, 0x47, 0x0a, 0x15, 0xda, 0xa8, 0xa0, 0xae, 0x79, 0x7e,
0xa4, 0xb2, 0xe4, 0x1c, 0x9a, 0xa3, 0xe9, 0x84, 0xcc, 0x79, 0x4e, 0xdf, 0x1a, 0x38, 0xcf, 0x8f,
0x78, 0xce, 0x61, 0x4f, 0xa1, 0xf1, 0x72, 0x9b, 0x89, 0xfb, 0xc9, 0x98, 0x72, 0xc8, 0x7d, 0x7e,
0xc4, 0x35, 0x03, 0x4f, 0xd2, 0xe7, 0x0b, 0xf1, 0x20, 0x13, 0x09, 0x4f, 0x6a, 0x0e, 0x3b, 0x03,
0x77, 0x14, 0xc7, 0x11, 0x25, 0x53, 0x13, 0x6f, 0x43, 0x6a, 0xd4, 0x80, 0x1a, 0x19, 0xf6, 0xef,
0xe1, 0xac, 0x1c, 0x90, 0x7a, 0x16, 0x06, 0x0e, 0xda, 0xb3, 0x94, 0x3d, 0x24, 0xd8, 0x09, 0x3d,
0x95, 0xad, 0xee, 0xc7, 0xc7, 0xfa, 0x00, 0xea, 0x64, 0x46, 0x26, 0x7c, 0x7b, 0xf8, 0x9d, 0x12,
0xbc, 0x05, 0x40, 0x5c, 0xa9, 0x8d, 0x5a, 0x84, 0xef, 0x67, 0xc9, 0x64, 0xec, 0xff, 0xbc, 0x0a,
0x25, 0xbd, 0x19, 0xc2, 0x7e, 0x13, 0xac, 0x84, 0xbc, 0x99, 0xd3, 0x37, 0xf2, 0x6e, 0x1f, 0x36,
0x82, 0xae, 0x6e, 0x71, 0xfa, 0xf6, 0xb7, 0xd0, 0x2d, 0x1f, 0x47, 0x67, 0x8c, 0x24, 0x38, 0xe8,
0x0c, 0xc9, 0xf3, 0xec, 0x18, 0x56, 0xb3, 0xc3, 0xdb, 0x3f, 0x51, 0x4d, 0x90, 0x5f, 0x80, 0xfb,
0x2a, 0x08, 0x93, 0xbd, 0xb4, 0x3d, 0x91, 0x78, 0x39, 0xe4, 0xa1, 0x23, 0x81, 0xaf, 0x5d, 0xc5,
0xdb, 0x75, 0x26, 0x01, 0xe3, 0x92, 0xf0, 0x3f, 0x86, 0x16, 0x9e, 0x97, 0xb1, 0x9e, 0x4b, 0x63,
0x2a, 0x6f, 0x9a, 0x78, 0x3b, 0xd2, 0x5c, 0x5e, 0x91, 0xf7, 0x01, 0xdb, 0xec, 0x03, 0x23, 0x00,
0x94, 0xa6, 0xd2, 0x42, 0x0f, 0x6a, 0x44, 0xa9, 0x90, 0x0b, 0x13, 0x92, 0xfd, 0x88, 0x8d, 0x77,
0xb0, 0xef, 0x64, 0x1f, 0xfe, 0x14, 0xc5, 0x32, 0xe3, 0xd0, 0x03, 0x87, 0xab, 0x9c, 0x88, 0xa1,
0x29, 0x81, 0x8a, 0x77, 0x85, 0x01, 0xcb, 0x30, 0x80, 0x5c, 0xec, 0x0f, 0x63, 0x1d, 0x1b, 0x11,
0x58, 0x85, 0x3c, 0xde, 0x15, 0x30, 0x28, 0x8a, 0x7d, 0x4f, 0xdf, 0xe2, 0x52, 0x9c, 0x2d, 0xaa,
0x0f, 0xbc, 0x5f, 0x5f, 0xf8, 0x5b, 0x80, 0x5f, 0x26, 0xf1, 0x76, 0x43, 0x10, 0x31, 0x1f, 0x6a,
0x44, 0xa9, 0x98, 0x3a, 0xa8, 0xae, 0xfd, 0xe1, 0x52, 0x74, 0x18, 0x5c, 0x7c, 0x84, 0xcb, 0xe5,
0x52, 0x96, 0x0f, 0xc7, 0x4f, 0xff, 0x2f, 0x16, 0x34, 0x67, 0x41, 0x94, 0x8b, 0x67, 0x41, 0xa4,
0x62, 0xc5, 0xcf, 0xb2, 0x19, 0x47, 0x9b, 0x79, 0x0a, 0xcd, 0x4f, 0xa2, 0x38, 0xc8, 0x50, 0x19,
0x6d, 0x59, 0x3c, 0xa7, 0xd9, 0x05, 0xc0, 0x58, 0xcc, 0xc3, 0x55, 0x10, 0xa1, 0xd4, 0x2d, 0xea,
0x59, 0x71, 0xb9, 0x21, 0x66, 0x3e, 0x74, 0x6e, 0xc3, 0x95, 0x48, 0xb3, 0x60, 0xb5, 0x41, 0x75,
0xd9, 0xe6, 0x4b, 0x3c, 0xff, 0x2b, 0x0b, 0x1a, 0xea, 0xc8, 0xe1, 0xe7, 0x40, 0xee, 0x74, 0x1e,
0x44, 0x42, 0x3b, 0x49, 0x04, 0xeb, 0x01, 0xdc, 0x88, 0xdd, 0x4c, 0x24, 0x69, 0x18, 0xaf, 0xc9,
0xcd, 0x26, 0x37, 0x38, 0xf8, 0x18, 0xb3, 0x20, 0xba, 0xbc, 0x4b, 0xd5, 0xd0, 0x51, 0x14, 0x4e,
0xa3, 0x59, 0x10, 0xe1, 0x80, 0x20, 0x77, 0x1c, 0xae, 0x49, 0xff, 0x63, 0x38, 0x1d, 0x87, 0x69,
0x16, 0xae, 0xe7, 0x59, 0xee, 0xa1, 0x32, 0x83, 0x15, 0xae, 0x3a, 0xab, 0xa4, 0xf2, 0x32, 0xb5,
0x8b, 0x32, 0xf5, 0xff, 0x6a, 0x41, 0xe7, 0x57, 0x5b, 0x91, 0x3c, 0x70, 0xf1, 0x87, 0xad, 0x48,
0x33, 0xf4, 0x9c, 0x68, 0x9d, 0x3c, 0x44, 0xa0, 0xc9, 0xe9, 0x17, 0x41, 0xb2, 0x90, 0x55, 0xe7,
0x72, 0x45, 0x51, 0xfa, 0x88, 0x55, 0x9c, 0x09, 0x72, 0xac, 0xc9, 0x15, 0xc5, 0x2e, 0xa0, 0x73,
0xbd, 0xba, 0x13, 0x8b, 0x85, 0x58, 0x8c, 0x83, 0x2c, 0xf0, 0x9a, 0xe5, 0xa1, 0x57, 0x12, 0xb2,
0xef, 0xc3, 0xf1, 0xab, 0x44, 0xdc, 0x26, 0xc1, 0x3a, 0x8d, 0x82, 0x4c, 0x2c, 0xbc, 0x16, 0xd9,
0x2a, 0x33, 0xd9, 0x39, 0xb4, 0x5e, 0x06, 0xf7, 0x2f, 0xc5, 0x2a, 0x4e, 0x1e, 0x3c, 0x20, 0x18,
0x0a, 0x86, 0xff, 0x29, 0x1c, 0xab, 0x30, 0xd2, 0x4d, 0xbc, 0x4e, 0x05, 0x26, 0xce, 0x75, 0x92,
0xa8, 0x28, 0xf0, 0x93, 0xbd, 0x0f, 0x0d, 0x2e, 0xd2, 0x6d, 0x94, 0xe9, 0xd6, 0xf1, 0x04, 0xdd,
0xd1, 0xa7, 0xb6, 0x51, 0xc6, 0xb5, 0xdc, 0xff, 0x6f, 0x0d, 0xda, 0x86, 0x20, 0x6f, 0x66, 0xd8,
0x90, 0x8f, 0x65, 0x33, 0xc3, 0x51, 0xcc, 0xe3, 0xdd, 0xde, 0x94, 0xc6, 0x02, 0xec, 0x80, 0x75,
0xa3, 0xb2, 0xdc, 0xba, 0x29, 0xea, 0xdd, 0x39, 0x5c, 0xef, 0xb8, 0x99, 0x7c, 0x11, 0xac, 0x97,
0x62, 0x41, 0xcf, 0xde, 0xe4, 0x9a, 0x64, 0x83, 0xa2, 0x10, 0x08, 0x5f, 0x55, 0x58, 0x9a, 0xc7,
0x8b, 0x32, 0x91, 0x65, 0x8c, 0xf3, 0xac, 0x21, 0xdf, 0x47, 0x52, 0xec, 0x43, 0xe8, 0x7e, 0x16,
0x2d, 0x8a, 0x42, 0x4d, 0xd5, 0x4b, 0x74, 0xd1, 0x4e, 0xc1, 0xe6, 0x15, 0x2d, 0xf6, 0x51, 0x75,
0x99, 0xa0, 0x37, 0x69, 0x0f, 0x99, 0x8a, 0xd3, 0x90, 0xf0, 0xea, 0xda, 0x71, 0x61, 0xec, 0x32,
0xf4, 0x50, 0xed, 0xe1, 0x31, 0x1e, 0xcb, 0x99, 0xdc, 0xd8, 0x75, 0x9e, 0x99, 0xad, 0xd1, 0x6b,
0x93, 0x76, 0x57, 0x23, 0x24, 0xb9, 0xdc, 0x6c, 0x9e, 0x17, 0x46, 0x2f, 0xf6, 0x3a, 0x85, 0xf1,
0x9c, 0xc9, 0x8d, 0x5e, 0x7d, 0x75, 0x60, 0xef, 0xf0, 0x8e, 0xe9, 0x50, 0x75, 0xa9, 0x90, 0x42,
0x7e, 0x60, 0x4f, 0xf9, 0xa8, 0x3a, 0xb4, 0xbc, 0x6e, 0x01, 0x45, 0x59, 0xc2, 0xab, 0xe3, 0xed,
0xc2, 0x58, 0x00, 0xbd, 0x27, 0x85, 0xb7, 0x39, 0x93, 0x1b, 0x0b, 0xe2, 0x8f, 0xa1, 0x6d, 0x3e,
0xd4, 0x09, 0xa9, 0x3f, 0x29, 0x3f, 0x54, 0xca, 0x4d, 0x1d, 0x0c, 0x70, 0xaf, 0xfc, 0xbd, 0xd3,
0x22, 0xc0, 0x3d, 0x21, 0xdf, 0xd7, 0xf7, 0xff, 0x66, 0xc3, 0xf1, 0x64, 0xb5, 0x89, 0x93, 0xcc,
0xe8, 0x01, 0x72, 0xc7, 0xb5, 0x0e, 0xee, 0xb8, 0x76, 0x65, 0xac, 0x50, 0x2f, 0xa0, 0x76, 0xe6,
0x72, 0x49, 0x18, 0xf9, 0xe8, 0x96, 0xf2, 0xf1, 0x1c, 0x5a, 0x72, 0x2a, 0xa3, 0xa8, 0x46, 0xa2,
0x82, 0x21, 0xb7, 0xee, 0x1d, 0x6d, 0x5d, 0x0d, 0xea, 0x5c, 0x9a, 0xc4, 0xce, 0x29, 0xd5, 0x48,
0xd8, 0x24, 0xa1, 0xc1, 0x41, 0x79, 0x1e, 0x50, 0xea, 0xd5, 0xfb, 0xce, 0xc0, 0xe1, 0x06, 0x87,
0xbd, 0x07, 0x5d, 0x0a, 0xe2, 0x2a, 0x11, 0xd8, 0x4c, 0x2e, 0x33, 0xca, 0x67, 0x87, 0x57, 0xb8,
0xa8, 0x47, 0x61, 0x15, 0x7a, 0xb2, 0xd3, 0x54, 0xb8, 0x34, 0x84, 0x22, 0x11, 0x24, 0x94, 0xb1,
0x4d, 0x2e, 0x09, 0xff, 0x5f, 0x36, 0x30, 0x89, 0xa4, 0xdc, 0xa0, 0xfe, 0x6f, 0x70, 0x7e, 0x3d,
0x6c, 0x65, 0x70, 0x1a, 0x7b, 0xe0, 0x14, 0xf3, 0x40, 0x02, 0xa3, 0xe7, 0x41, 0x1f, 0xda, 0x7a,
0x46, 0xa2, 0x10, 0x51, 0xb5, 0xb8, 0xc9, 0xc2, 0x61, 0x38, 0xcd, 0xf0, 0x67, 0x8f, 0x52, 0x69,
0x91, 0xed, 0x12, 0xef, 0x00, 0xb4, 0xf0, 0x0d, 0xa1, 0x6d, 0x7f, 0x3d, 0xb4, 0x1d, 0x13, 0xda,
0xaf, 0x2c, 0xe8, 0x5c, 0x66, 0xf1, 0x2a, 0x9c, 0x73, 0x31, 0x8f, 0x93, 0xc5, 0xe3, 0xa0, 0x4a,
0xf8, 0x6c, 0x13, 0xbe, 0x01, 0x38, 0x93, 0x2f, 0x13, 0xd5, 0x7f, 0xdf, 0xa2, 0x55, 0x66, 0xef,
0x95, 0x38, 0xaa, 0xb0, 0x77, 0xc1, 0x9e, 0x24, 0x94, 0xb3, 0xed, 0xe1, 0x69, 0xa1, 0xa8, 0x75,
0xec, 0x49, 0xe2, 0xff, 0x08, 0xce, 0xa4, 0x23, 0x5a, 0xa4, 0x06, 0xce, 0x19, 0xd4, 0xae, 0x93,
0x24, 0xd6, 0x23, 0x47, 0x12, 0xb8, 0xab, 0xe7, 0x33, 0x0c, 0x1f, 0xe3, 0xdb, 0xe4, 0xc4, 0xa1,
0x1f, 0xa8, 0x7d, 0x68, 0xdf, 0xc4, 0xd9, 0x6f, 0x92, 0x30, 0xa3, 0x96, 0x24, 0x07, 0x87, 0xc9,
0xf2, 0xdf, 0x87, 0x37, 0x2b, 0x37, 0x17, 0x93, 0x11, 0xd3, 0xc8, 0x29, 0x7e, 0xe4, 0x4d, 0xe1,
0x8d, 0x5c, 0x75, 0x32, 0xfe, 0x56, 0x3e, 0xee, 0x1b, 0xfd, 0xa1, 0x11, 0x39, 0x19, 0x55, 0xd7,
0x1f, 0x88, 0xc6, 0x1f, 0x81, 0xa7, 0xd0, 0x94, 0xbf, 0xb2, 0x95, 0x07, 0xb3, 0x50, 0xec, 0x1e,
0xfb, 0x71, 0x41, 0x6b, 0x85, 0x4d, 0x6b, 0x12, 0x7d, 0xfb, 0x7f, 0xb2, 0xe1, 0xec, 0x90, 0x91,
0x22, 0xa1, 0x2c, 0x23, 0xa1, 0xd8, 0x10, 0x6a, 0x5f, 0x86, 0x62, 0xa7, 0x77, 0x81, 0x73, 0xe3,
0xb1, 0xf7, 0x7c, 0xe0, 0x52, 0x15, 0x0b, 0xe9, 0x72, 0x9e, 0xe9, 0xdd, 0xad, 0xc5, 0x15, 0x85,
0x37, 0x8c, 0xa2, 0x78, 0xfe, 0x7b, 0xf9, 0x3b, 0x8f, 0x4b, 0xe2, 0x40, 0x61, 0xd4, 0xbe, 0x61,
0x61, 0xd4, 0x0f, 0x16, 0xc6, 0x00, 0x9e, 0xfc, 0x7a, 0xb3, 0x08, 0x32, 0x71, 0x7d, 0x1f, 0xa6,
0x99, 0x58, 0xcf, 0x85, 0xd7, 0xa0, 0x88, 0xaa, 0x6c, 0xff, 0x8f, 0x16, 0x1c, 0xab, 0x28, 0xa4,
0xe8, 0x91, 0x9f, 0x04, 0x0c, 0x5c, 0x0c, 0x4f, 0x2f, 0x84, 0x04, 0x77, 0x8e, 0x96, 0x43, 0xd8,
0x2a, 0xb4, 0x4e, 0xc0, 0x99, 0x8a, 0x4c, 0xad, 0xa5, 0xf8, 0x89, 0xad, 0x81, 0x44, 0xb2, 0x1c,
0x53, 0xb5, 0xff, 0x95, 0x78, 0xfe, 0xe7, 0xf0, 0x76, 0x09, 0x52, 0xaa, 0x46, 0xfd, 0x2c, 0xc5,
0xea, 0x68, 0x95, 0x56, 0xc7, 0x1f, 0x40, 0x6d, 0x66, 0x3c, 0xcc, 0xa9, 0x9c, 0x97, 0x46, 0x30,
0x5c, 0xca, 0xfd, 0x69, 0x69, 0x5e, 0x62, 0x8f, 0xbc, 0x5c, 0x2e, 0x13, 0xb1, 0x0c, 0x32, 0x9d,
0x2c, 0x05, 0x83, 0xbd, 0x07, 0x75, 0x52, 0xd6, 0x66, 0xab, 0x0b, 0x90, 0x92, 0x8e, 0x4e, 0xfe,
0xfe, 0xba, 0x67, 0xfd, 0xf3, 0x75, 0xcf, 0xfa, 0xf7, 0xeb, 0x9e, 0xf5, 0xe7, 0xff, 0xf4, 0x8e,
0xee, 0xea, 0xf4, 0x57, 0xd2, 0x4f, 0xfe, 0x17, 0x00, 0x00, 0xff, 0xff, 0x81, 0x34, 0x76, 0x53,
0x5a, 0x12, 0x00, 0x00,
}
func (m *Row) Marshal() (dAtA []byte, err error) {
@ -3826,12 +3861,37 @@ func (m *Decimal) MarshalToSizedBuffer(dAtA []byte) (int, error) {
i -= len(m.XXX_unrecognized)
copy(dAtA[i:], m.XXX_unrecognized)
}
if len(m.Gob) > 0 {
i -= len(m.Gob)
copy(dAtA[i:], m.Gob)
i = encodeVarintPublic(dAtA, i, uint64(len(m.Gob)))
if m.ValSign != 0 {
i = encodeVarintPublic(dAtA, i, uint64(m.ValSign))
i--
dAtA[i] = 0xa
dAtA[i] = 0x28
}
if len(m.ValAbs) > 0 {
i -= len(m.ValAbs)
copy(dAtA[i:], m.ValAbs)
i = encodeVarintPublic(dAtA, i, uint64(len(m.ValAbs)))
i--
dAtA[i] = 0x22
}
if m.NewVersion {
i--
if m.NewVersion {
dAtA[i] = 1
} else {
dAtA[i] = 0
}
i--
dAtA[i] = 0x18
}
if m.Scale != 0 {
i = encodeVarintPublic(dAtA, i, uint64(m.Scale))
i--
dAtA[i] = 0x10
}
if m.Value != 0 {
i = encodeVarintPublic(dAtA, i, uint64(m.Value))
i--
dAtA[i] = 0x8
}
return len(dAtA) - i, nil
}
@ -5624,10 +5684,22 @@ func (m *Decimal) Size() (n int) {
}
var l int
_ = l
l = len(m.Gob)
if m.Value != 0 {
n += 1 + sovPublic(uint64(m.Value))
}
if m.Scale != 0 {
n += 1 + sovPublic(uint64(m.Scale))
}
if m.NewVersion {
n += 2
}
l = len(m.ValAbs)
if l > 0 {
n += 1 + l + sovPublic(uint64(l))
}
if m.ValSign != 0 {
n += 1 + sovPublic(uint64(m.ValSign))
}
if m.XXX_unrecognized != nil {
n += len(m.XXX_unrecognized)
}
@ -8761,8 +8833,66 @@ func (m *Decimal) Unmarshal(dAtA []byte) error {
}
switch fieldNum {
case 1:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Value", wireType)
}
m.Value = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowPublic
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Value |= int64(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 2:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field Scale", wireType)
}
m.Scale = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowPublic
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.Scale |= int64(b&0x7F) << shift
if b < 0x80 {
break
}
}
case 3:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field NewVersion", wireType)
}
var v int
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowPublic
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
v |= int(b&0x7F) << shift
if b < 0x80 {
break
}
}
m.NewVersion = bool(v != 0)
case 4:
if wireType != 2 {
return fmt.Errorf("proto: wrong wireType = %d for field Gob", wireType)
return fmt.Errorf("proto: wrong wireType = %d for field ValAbs", wireType)
}
var byteLen int
for shift := uint(0); ; shift += 7 {
@ -8789,11 +8919,30 @@ func (m *Decimal) Unmarshal(dAtA []byte) error {
if postIndex > l {
return io.ErrUnexpectedEOF
}
m.Gob = append(m.Gob[:0], dAtA[iNdEx:postIndex]...)
if m.Gob == nil {
m.Gob = []byte{}
m.ValAbs = append(m.ValAbs[:0], dAtA[iNdEx:postIndex]...)
if m.ValAbs == nil {
m.ValAbs = []byte{}
}
iNdEx = postIndex
case 5:
if wireType != 0 {
return fmt.Errorf("proto: wrong wireType = %d for field ValSign", wireType)
}
m.ValSign = 0
for shift := uint(0); ; shift += 7 {
if shift >= 64 {
return ErrIntOverflowPublic
}
if iNdEx >= l {
return io.ErrUnexpectedEOF
}
b := dAtA[iNdEx]
iNdEx++
m.ValSign |= int64(b&0x7F) << shift
if b < 0x80 {
break
}
}
default:
iNdEx = preIndex
skippy, err := skipPublic(dAtA[iNdEx:])

View file

@ -113,7 +113,11 @@ message ValCount {
}
message Decimal {
bytes Gob = 1;
int64 Value = 1;
int64 Scale = 2;
bool NewVersion = 3;
bytes ValAbs = 4;
int64 ValSign = 5;
}
message DistinctTimestamp {

View file

@ -2,7 +2,6 @@
package pql
import (
"encoding/binary"
"math"
"math/big"
"strconv"
@ -67,6 +66,10 @@ func (d *Decimal) SetValue(v int64) {
d.value = *val
}
func (d *Decimal) SetBigIntValue(v *big.Int) {
d.value.Set(v)
}
func (d Decimal) Clone() (r *Decimal) {
val := big.NewInt(0)
val.Set(&d.value)
@ -77,44 +80,6 @@ func (d Decimal) Clone() (r *Decimal) {
return
}
func (d *Decimal) GobEncode() ([]byte, error) {
if d == nil {
return nil, nil
}
valBuf, err := d.value.GobEncode()
if err != nil {
return nil, err
}
valSz := len(valBuf)
// make a buffer the size of our Decimal, plus our 8 byte Scale,
// plus 1 byte for sign of scale
buf := make([]byte, valSz+8)
copy(buf[:valSz], valBuf)
binary.LittleEndian.PutUint64(buf[valSz:valSz+8], uint64(d.Scale))
return buf, nil
}
func (d *Decimal) GobDecode(buf []byte) error {
if len(buf) == 0 {
// they sent a nil or default value
*d = Decimal{}
return nil
}
valPart := len(buf) - 8
value := big.NewInt(0)
if err := value.GobDecode(buf[:valPart]); err != nil {
return err
}
d.value = *value
d.Scale = int64(binary.LittleEndian.Uint64(buf[valPart : valPart+8]))
return nil
}
// NewDecimal returns a Decimal based on the provided arguments.
func NewDecimal(value, scale int64) Decimal {
v := big.NewInt(value)

View file

@ -2,9 +2,7 @@ package pql
import (
"fmt"
"math"
"math/big"
"reflect"
"testing"
)
@ -90,44 +88,3 @@ func mustParse(t *testing.T, num string) Decimal {
}
return d
}
func TestGobEncodeDecode(t *testing.T) {
for i := int64(-10); i < 10; i++ {
for j := int64(-10); j < 10; j++ {
decimal := &Decimal{value: *(big.NewInt(i)), Scale: j}
t.Run(fmt.Sprintf("v%ds%d", i, j), func(t *testing.T) {
encoded, err := decimal.GobEncode()
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
decoded := &Decimal{}
err = decoded.GobDecode(encoded)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if !reflect.DeepEqual(decimal, decoded) {
t.Errorf("%v != %v", decimal, encoded)
}
})
}
}
i := int64(math.MaxInt64)
j := int64(math.MinInt64)
decimal := &Decimal{value: *(big.NewInt(i)), Scale: j}
t.Run(fmt.Sprintf("v%ds%d", i, j), func(t *testing.T) {
encoded, err := decimal.GobEncode()
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
decoded := &Decimal{}
err = decoded.GobDecode(encoded)
if err != nil {
t.Fatalf("unexpected error: %v", err)
}
if !reflect.DeepEqual(decimal, decoded) {
t.Errorf("%v != %v", decimal, encoded)
}
})
}