diff --git a/go-api/milvuspb/milvus.pb.go b/go-api/milvuspb/milvus.pb.go index eefa9e6..88689ab 100644 --- a/go-api/milvuspb/milvus.pb.go +++ b/go-api/milvuspb/milvus.pb.go @@ -320,7 +320,7 @@ func (m *AlterAliasRequest) GetAlias() string { return "" } -//* +// * // Create collection in milvus type CreateCollectionRequest struct { // Not useful for now @@ -415,7 +415,7 @@ func (m *CreateCollectionRequest) GetProperties() []*commonpb.KeyValuePair { return nil } -//* +// * // Drop collection in milvus, also will drop data in collection. type DropCollectionRequest struct { // Not useful for now @@ -474,7 +474,7 @@ func (m *DropCollectionRequest) GetCollectionName() string { return "" } -//* +// * // Alter collection in milvus type AlterCollectionRequest struct { // Not useful for now @@ -549,7 +549,7 @@ func (m *AlterCollectionRequest) GetProperties() []*commonpb.KeyValuePair { return nil } -//* +// * // Check collection exist in milvus or not. type HasCollectionRequest struct { // Not useful for now @@ -711,7 +711,7 @@ func (m *StringResponse) GetValue() string { return "" } -//* +// * // Get collection meta datas like: schema, collectionID, shards number ... type DescribeCollectionRequest struct { // Not useful for now @@ -788,7 +788,7 @@ func (m *DescribeCollectionRequest) GetTimeStamp() uint64 { return 0 } -//* +// * // DescribeCollection Response type DescribeCollectionResponse struct { // Contain error_code and reason @@ -945,7 +945,7 @@ func (m *DescribeCollectionResponse) GetDbName() string { return "" } -//* +// * // Load collection data into query nodes, then you can do vector search on this collection. type LoadCollectionRequest struct { // Not useful for now @@ -1031,7 +1031,7 @@ func (m *LoadCollectionRequest) GetRefresh() bool { return false } -//* +// * // Release collection data from query nodes, then you can't do vector search on this collection. type ReleaseCollectionRequest struct { // Not useful for now @@ -1090,7 +1090,7 @@ func (m *ReleaseCollectionRequest) GetCollectionName() string { return "" } -//* +// * // Get statistics like row_count. // WARNING: This API is experimental and not useful for now. type GetStatisticsRequest struct { @@ -1168,7 +1168,7 @@ func (m *GetStatisticsRequest) GetGuaranteeTimestamp() uint64 { return 0 } -//* +// * // Will return statistics in stats field like [{key:"row_count",value:"1"}] // WARNING: This API is experimental and not useful for now. type GetStatisticsResponse struct { @@ -1220,7 +1220,7 @@ func (m *GetStatisticsResponse) GetStats() []*commonpb.KeyValuePair { return nil } -//* +// * // Get collection statistics like row_count. type GetCollectionStatisticsRequest struct { // Not useful for now @@ -1279,7 +1279,7 @@ func (m *GetCollectionStatisticsRequest) GetCollectionName() string { return "" } -//* +// * // Will return collection statistics in stats field like [{key:"row_count",value:"1"}] type GetCollectionStatisticsResponse struct { // Contain error_code and reason @@ -1330,7 +1330,6 @@ func (m *GetCollectionStatisticsResponse) GetStats() []*commonpb.KeyValuePair { return nil } -// // List collections type ShowCollectionsRequest struct { // Not useful for now @@ -1408,7 +1407,6 @@ func (m *ShowCollectionsRequest) GetCollectionNames() []string { return nil } -// // Return basic collection infos. type ShowCollectionsResponse struct { // Contain error_code and reason @@ -1505,7 +1503,6 @@ func (m *ShowCollectionsResponse) GetQueryServiceAvailable() []bool { return nil } -// // Create partition in created collection. type CreatePartitionRequest struct { // Not useful for now @@ -1573,7 +1570,6 @@ func (m *CreatePartitionRequest) GetPartitionName() string { return "" } -// // Drop partition in created collection. type DropPartitionRequest struct { // Not useful for now @@ -1641,7 +1637,6 @@ func (m *DropPartitionRequest) GetPartitionName() string { return "" } -// // Check if partition exist in collection or not. type HasPartitionRequest struct { // Not useful for now @@ -1709,7 +1704,6 @@ func (m *HasPartitionRequest) GetPartitionName() string { return "" } -// // Load specific partitions data of one collection into query nodes // Then you can get these data as result when you do vector search on this collection. type LoadPartitionsRequest struct { @@ -1805,7 +1799,6 @@ func (m *LoadPartitionsRequest) GetRefresh() bool { return false } -// // Release specific partitions data of one collection from query nodes. // Then you can not get these data as result when you do vector search on this collection. type ReleasePartitionsRequest struct { @@ -1874,7 +1867,6 @@ func (m *ReleasePartitionsRequest) GetPartitionNames() []string { return nil } -// // Get partition statistics like row_count. type GetPartitionStatisticsRequest struct { // Not useful for now @@ -1989,7 +1981,6 @@ func (m *GetPartitionStatisticsResponse) GetStats() []*commonpb.KeyValuePair { return nil } -// // List all partitions for particular collection type ShowPartitionsRequest struct { // Not useful for now @@ -2076,7 +2067,6 @@ func (m *ShowPartitionsRequest) GetType() ShowType { return ShowType_All } -// // List all partitions for particular collection response. // The returned datas are all rows, we can format to columns by therir index. type ShowPartitionsResponse struct { @@ -2393,7 +2383,6 @@ func (m *ShowSegmentsResponse) GetSegmentIDs() []int64 { return nil } -// // Create index for vector datas type CreateIndexRequest struct { // Not useful for now @@ -2479,7 +2468,6 @@ func (m *CreateIndexRequest) GetIndexName() string { return "" } -// // Get created index information. // Current release of Milvus only supports showing latest built index. type DescribeIndexRequest struct { @@ -2557,7 +2545,6 @@ func (m *DescribeIndexRequest) GetIndexName() string { return "" } -// // Index informations type IndexDescription struct { // Index name @@ -2660,7 +2647,6 @@ func (m *IndexDescription) GetIndexStateFailReason() string { return "" } -// // Describe index response type DescribeIndexResponse struct { // Response status @@ -2711,8 +2697,7 @@ func (m *DescribeIndexResponse) GetIndexDescriptions() []*IndexDescription { return nil } -// -// Get index building progress +// Get index building progress type GetIndexBuildProgressRequest struct { // Not useful for now Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` @@ -3896,6 +3881,7 @@ func (m *VectorIDs) GetPartitionNames() []string { type VectorsArray struct { // Types that are valid to be assigned to Array: + // // *VectorsArray_IdArray // *VectorsArray_DataArray Array isVectorsArray_Array `protobuf_oneof:"array"` @@ -4042,6 +4028,7 @@ type CalcDistanceResults struct { // num(op_left)*num(op_right) distance values, "HAMMIN" return integer distance // // Types that are valid to be assigned to Array: + // // *CalcDistanceResults_IntDist // *CalcDistanceResults_FloatDist Array isCalcDistanceResults_Array `protobuf_oneof:"array"` @@ -4999,7 +4986,6 @@ func (m *GetComponentStatesRequest) XXX_DiscardUnknown() { var xxx_messageInfo_GetComponentStatesRequest proto.InternalMessageInfo -// // Do load balancing operation from src_nodeID to dst_nodeID. type LoadBalanceRequest struct { Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` diff --git a/go-api/schemapb/schema.pb.go b/go-api/schemapb/schema.pb.go index 2067b51..852add0 100644 --- a/go-api/schemapb/schema.pb.go +++ b/go-api/schemapb/schema.pb.go @@ -21,7 +21,7 @@ var _ = math.Inf // proto package needs to be updated. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package -//* +// * // @brief Field data type type DataType int32 @@ -115,7 +115,7 @@ func (FieldState) EnumDescriptor() ([]byte, []int) { return fileDescriptor_1c5fb4d8cc22d66a, []int{1} } -//* +// * // @brief Field schema type FieldSchema struct { FieldID int64 `protobuf:"varint,1,opt,name=fieldID,proto3" json:"fieldID,omitempty"` @@ -128,10 +128,11 @@ type FieldSchema struct { AutoID bool `protobuf:"varint,8,opt,name=autoID,proto3" json:"autoID,omitempty"` State FieldState `protobuf:"varint,9,opt,name=state,proto3,enum=milvus.proto.schema.FieldState" json:"state,omitempty"` // state is `Created`. - ElementType DataType `protobuf:"varint,10,opt,name=element_type,json=elementType,proto3,enum=milvus.proto.schema.DataType" json:"element_type,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + ElementType DataType `protobuf:"varint,10,opt,name=element_type,json=elementType,proto3,enum=milvus.proto.schema.DataType" json:"element_type,omitempty"` + DefaultValue *ValueField `protobuf:"bytes,11,opt,name=default_value,json=defaultValue,proto3" json:"default_value,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *FieldSchema) Reset() { *m = FieldSchema{} } @@ -229,7 +230,14 @@ func (m *FieldSchema) GetElementType() DataType { return DataType_None } -//* +func (m *FieldSchema) GetDefaultValue() *ValueField { + if m != nil { + return m.DefaultValue + } + return nil +} + +// * // @brief Collection schema type CollectionSchema struct { Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` @@ -654,8 +662,165 @@ func (m *JSONArray) GetData() [][]byte { return nil } +type ValueField struct { + // Types that are valid to be assigned to Data: + // + // *ValueField_BoolData + // *ValueField_IntData + // *ValueField_LongData + // *ValueField_FloatData + // *ValueField_DoubleData + // *ValueField_StringData + // *ValueField_BytesData + Data isValueField_Data `protobuf_oneof:"data"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ValueField) Reset() { *m = ValueField{} } +func (m *ValueField) String() string { return proto.CompactTextString(m) } +func (*ValueField) ProtoMessage() {} +func (*ValueField) Descriptor() ([]byte, []int) { + return fileDescriptor_1c5fb4d8cc22d66a, []int{11} +} + +func (m *ValueField) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ValueField.Unmarshal(m, b) +} +func (m *ValueField) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ValueField.Marshal(b, m, deterministic) +} +func (m *ValueField) XXX_Merge(src proto.Message) { + xxx_messageInfo_ValueField.Merge(m, src) +} +func (m *ValueField) XXX_Size() int { + return xxx_messageInfo_ValueField.Size(m) +} +func (m *ValueField) XXX_DiscardUnknown() { + xxx_messageInfo_ValueField.DiscardUnknown(m) +} + +var xxx_messageInfo_ValueField proto.InternalMessageInfo + +type isValueField_Data interface { + isValueField_Data() +} + +type ValueField_BoolData struct { + BoolData bool `protobuf:"varint,1,opt,name=bool_data,json=boolData,proto3,oneof"` +} + +type ValueField_IntData struct { + IntData int32 `protobuf:"varint,2,opt,name=int_data,json=intData,proto3,oneof"` +} + +type ValueField_LongData struct { + LongData int64 `protobuf:"varint,3,opt,name=long_data,json=longData,proto3,oneof"` +} + +type ValueField_FloatData struct { + FloatData float32 `protobuf:"fixed32,4,opt,name=float_data,json=floatData,proto3,oneof"` +} + +type ValueField_DoubleData struct { + DoubleData float64 `protobuf:"fixed64,5,opt,name=double_data,json=doubleData,proto3,oneof"` +} + +type ValueField_StringData struct { + StringData string `protobuf:"bytes,6,opt,name=string_data,json=stringData,proto3,oneof"` +} + +type ValueField_BytesData struct { + BytesData []byte `protobuf:"bytes,7,opt,name=bytes_data,json=bytesData,proto3,oneof"` +} + +func (*ValueField_BoolData) isValueField_Data() {} + +func (*ValueField_IntData) isValueField_Data() {} + +func (*ValueField_LongData) isValueField_Data() {} + +func (*ValueField_FloatData) isValueField_Data() {} + +func (*ValueField_DoubleData) isValueField_Data() {} + +func (*ValueField_StringData) isValueField_Data() {} + +func (*ValueField_BytesData) isValueField_Data() {} + +func (m *ValueField) GetData() isValueField_Data { + if m != nil { + return m.Data + } + return nil +} + +func (m *ValueField) GetBoolData() bool { + if x, ok := m.GetData().(*ValueField_BoolData); ok { + return x.BoolData + } + return false +} + +func (m *ValueField) GetIntData() int32 { + if x, ok := m.GetData().(*ValueField_IntData); ok { + return x.IntData + } + return 0 +} + +func (m *ValueField) GetLongData() int64 { + if x, ok := m.GetData().(*ValueField_LongData); ok { + return x.LongData + } + return 0 +} + +func (m *ValueField) GetFloatData() float32 { + if x, ok := m.GetData().(*ValueField_FloatData); ok { + return x.FloatData + } + return 0 +} + +func (m *ValueField) GetDoubleData() float64 { + if x, ok := m.GetData().(*ValueField_DoubleData); ok { + return x.DoubleData + } + return 0 +} + +func (m *ValueField) GetStringData() string { + if x, ok := m.GetData().(*ValueField_StringData); ok { + return x.StringData + } + return "" +} + +func (m *ValueField) GetBytesData() []byte { + if x, ok := m.GetData().(*ValueField_BytesData); ok { + return x.BytesData + } + return nil +} + +// XXX_OneofWrappers is for the internal use of the proto package. +func (*ValueField) XXX_OneofWrappers() []interface{} { + return []interface{}{ + (*ValueField_BoolData)(nil), + (*ValueField_IntData)(nil), + (*ValueField_LongData)(nil), + (*ValueField_FloatData)(nil), + (*ValueField_DoubleData)(nil), + (*ValueField_StringData)(nil), + (*ValueField_BytesData)(nil), + } +} + type ScalarField struct { // Types that are valid to be assigned to Data: + // // *ScalarField_BoolData // *ScalarField_IntData // *ScalarField_LongData @@ -675,7 +840,7 @@ func (m *ScalarField) Reset() { *m = ScalarField{} } func (m *ScalarField) String() string { return proto.CompactTextString(m) } func (*ScalarField) ProtoMessage() {} func (*ScalarField) Descriptor() ([]byte, []int) { - return fileDescriptor_1c5fb4d8cc22d66a, []int{11} + return fileDescriptor_1c5fb4d8cc22d66a, []int{12} } func (m *ScalarField) XXX_Unmarshal(b []byte) error { @@ -842,6 +1007,7 @@ func (*ScalarField) XXX_OneofWrappers() []interface{} { type VectorField struct { Dim int64 `protobuf:"varint,1,opt,name=dim,proto3" json:"dim,omitempty"` // Types that are valid to be assigned to Data: + // // *VectorField_FloatVector // *VectorField_BinaryVector Data isVectorField_Data `protobuf_oneof:"data"` @@ -854,7 +1020,7 @@ func (m *VectorField) Reset() { *m = VectorField{} } func (m *VectorField) String() string { return proto.CompactTextString(m) } func (*VectorField) ProtoMessage() {} func (*VectorField) Descriptor() ([]byte, []int) { - return fileDescriptor_1c5fb4d8cc22d66a, []int{12} + return fileDescriptor_1c5fb4d8cc22d66a, []int{13} } func (m *VectorField) XXX_Unmarshal(b []byte) error { @@ -931,6 +1097,7 @@ type FieldData struct { Type DataType `protobuf:"varint,1,opt,name=type,proto3,enum=milvus.proto.schema.DataType" json:"type,omitempty"` FieldName string `protobuf:"bytes,2,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"` // Types that are valid to be assigned to Field: + // // *FieldData_Scalars // *FieldData_Vectors Field isFieldData_Field `protobuf_oneof:"field"` @@ -944,7 +1111,7 @@ func (m *FieldData) Reset() { *m = FieldData{} } func (m *FieldData) String() string { return proto.CompactTextString(m) } func (*FieldData) ProtoMessage() {} func (*FieldData) Descriptor() ([]byte, []int) { - return fileDescriptor_1c5fb4d8cc22d66a, []int{13} + return fileDescriptor_1c5fb4d8cc22d66a, []int{14} } func (m *FieldData) XXX_Unmarshal(b []byte) error { @@ -1033,6 +1200,7 @@ func (*FieldData) XXX_OneofWrappers() []interface{} { type IDs struct { // Types that are valid to be assigned to IdField: + // // *IDs_IntId // *IDs_StrId IdField isIDs_IdField `protobuf_oneof:"id_field"` @@ -1045,7 +1213,7 @@ func (m *IDs) Reset() { *m = IDs{} } func (m *IDs) String() string { return proto.CompactTextString(m) } func (*IDs) ProtoMessage() {} func (*IDs) Descriptor() ([]byte, []int) { - return fileDescriptor_1c5fb4d8cc22d66a, []int{14} + return fileDescriptor_1c5fb4d8cc22d66a, []int{15} } func (m *IDs) XXX_Unmarshal(b []byte) error { @@ -1127,7 +1295,7 @@ func (m *SearchResultData) Reset() { *m = SearchResultData{} } func (m *SearchResultData) String() string { return proto.CompactTextString(m) } func (*SearchResultData) ProtoMessage() {} func (*SearchResultData) Descriptor() ([]byte, []int) { - return fileDescriptor_1c5fb4d8cc22d66a, []int{15} + return fileDescriptor_1c5fb4d8cc22d66a, []int{16} } func (m *SearchResultData) XXX_Unmarshal(b []byte) error { @@ -1204,6 +1372,7 @@ func init() { proto.RegisterType((*StringArray)(nil), "milvus.proto.schema.StringArray") proto.RegisterType((*ArrayArray)(nil), "milvus.proto.schema.ArrayArray") proto.RegisterType((*JSONArray)(nil), "milvus.proto.schema.JSONArray") + proto.RegisterType((*ValueField)(nil), "milvus.proto.schema.ValueField") proto.RegisterType((*ScalarField)(nil), "milvus.proto.schema.ScalarField") proto.RegisterType((*VectorField)(nil), "milvus.proto.schema.VectorField") proto.RegisterType((*FieldData)(nil), "milvus.proto.schema.FieldData") @@ -1214,77 +1383,82 @@ func init() { func init() { proto.RegisterFile("schema.proto", fileDescriptor_1c5fb4d8cc22d66a) } var fileDescriptor_1c5fb4d8cc22d66a = []byte{ - // 1144 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x56, 0xdf, 0x6e, 0x1b, 0xc5, - 0x17, 0xf6, 0x7a, 0xfd, 0x67, 0xf7, 0xac, 0xdb, 0xdf, 0xfe, 0xa6, 0x25, 0x2c, 0x48, 0x6d, 0x5c, - 0x0b, 0x24, 0x2b, 0x52, 0x13, 0x25, 0x2d, 0xa5, 0x54, 0x54, 0x80, 0x63, 0x45, 0x31, 0x41, 0x21, - 0x6c, 0x20, 0x17, 0xdc, 0x58, 0x63, 0xef, 0x34, 0x19, 0xb2, 0xde, 0x59, 0x76, 0xc6, 0x15, 0xbe, - 0x87, 0x37, 0xe0, 0x8a, 0x2b, 0x5e, 0x81, 0xd7, 0xe1, 0x82, 0x1b, 0x9e, 0x03, 0x09, 0x9d, 0x99, - 0x59, 0xdb, 0xc5, 0x8e, 0x09, 0x77, 0x67, 0xce, 0x9e, 0xef, 0x9b, 0x39, 0xe7, 0x7c, 0x67, 0x66, - 0xa1, 0x25, 0xc7, 0x57, 0x6c, 0x42, 0x77, 0xf3, 0x42, 0x28, 0x41, 0xee, 0x4d, 0x78, 0xfa, 0x7a, - 0x2a, 0xcd, 0x6a, 0xd7, 0x7c, 0x7a, 0xb7, 0x35, 0x16, 0x93, 0x89, 0xc8, 0x8c, 0xb3, 0xf3, 0xbb, - 0x0b, 0xc1, 0x11, 0x67, 0x69, 0x72, 0xae, 0xbf, 0x92, 0x08, 0x9a, 0xaf, 0x70, 0x39, 0xe8, 0x47, - 0x4e, 0xdb, 0xe9, 0xba, 0x71, 0xb9, 0x24, 0x04, 0x6a, 0x19, 0x9d, 0xb0, 0xa8, 0xda, 0x76, 0xba, - 0x7e, 0xac, 0x6d, 0xf2, 0x1e, 0xdc, 0xe5, 0x72, 0x98, 0x17, 0x7c, 0x42, 0x8b, 0xd9, 0xf0, 0x9a, - 0xcd, 0x22, 0xb7, 0xed, 0x74, 0xbd, 0xb8, 0xc5, 0xe5, 0x99, 0x71, 0x9e, 0xb0, 0x19, 0x69, 0x43, - 0x90, 0x30, 0x39, 0x2e, 0x78, 0xae, 0xb8, 0xc8, 0xa2, 0x9a, 0x26, 0x58, 0x76, 0x91, 0x17, 0xe0, - 0x27, 0x54, 0xd1, 0xa1, 0x9a, 0xe5, 0x2c, 0xaa, 0xb7, 0x9d, 0xee, 0xdd, 0x83, 0x07, 0xbb, 0x6b, - 0x0e, 0xbf, 0xdb, 0xa7, 0x8a, 0x7e, 0x3d, 0xcb, 0x59, 0xec, 0x25, 0xd6, 0x22, 0x3d, 0x08, 0x10, - 0x36, 0xcc, 0x69, 0x41, 0x27, 0x32, 0x6a, 0xb4, 0xdd, 0x6e, 0x70, 0xf0, 0xe8, 0x4d, 0xb4, 0x4d, - 0xf9, 0x84, 0xcd, 0x2e, 0x68, 0x3a, 0x65, 0x67, 0x94, 0x17, 0x31, 0x20, 0xea, 0x4c, 0x83, 0x48, - 0x1f, 0x5a, 0x3c, 0x4b, 0xd8, 0x0f, 0x25, 0x49, 0xf3, 0xb6, 0x24, 0x81, 0x86, 0x59, 0x96, 0x2d, - 0x68, 0xd0, 0xa9, 0x12, 0x83, 0x7e, 0xe4, 0xe9, 0x2a, 0xd8, 0x15, 0xf9, 0x00, 0xea, 0x52, 0x51, - 0xc5, 0x22, 0x5f, 0x67, 0xb6, 0xbd, 0x36, 0x33, 0xd3, 0x04, 0x0c, 0x8b, 0x4d, 0x34, 0xf9, 0x14, - 0x5a, 0x2c, 0x65, 0x13, 0x96, 0x29, 0x53, 0x17, 0xb8, 0x4d, 0x5d, 0x02, 0x0b, 0xc1, 0x45, 0xe7, - 0x17, 0x07, 0xc2, 0x43, 0x91, 0xa6, 0x6c, 0x8c, 0x55, 0xb6, 0x1d, 0x2e, 0xfb, 0xe8, 0x2c, 0xf5, - 0xf1, 0x1f, 0x1d, 0xaa, 0xae, 0x76, 0x68, 0x91, 0x9b, 0xfb, 0x46, 0x6e, 0xcf, 0xa1, 0xa1, 0x05, - 0x22, 0xa3, 0x9a, 0xae, 0x59, 0x7b, 0x43, 0x72, 0xda, 0x8e, 0x6d, 0x7c, 0x67, 0x1b, 0xfc, 0x9e, - 0x10, 0xe9, 0x67, 0x45, 0x41, 0x67, 0x78, 0x28, 0x6c, 0x68, 0xe4, 0xb4, 0xdd, 0xae, 0x17, 0x6b, - 0xbb, 0xf3, 0x10, 0xbc, 0x41, 0xa6, 0x56, 0xbf, 0xd7, 0xed, 0xf7, 0x6d, 0xf0, 0xbf, 0x10, 0xd9, - 0xe5, 0x6a, 0x80, 0x6b, 0x03, 0xda, 0x00, 0x47, 0xa9, 0xa0, 0x6b, 0x28, 0xaa, 0x36, 0xe2, 0x11, - 0x04, 0x7d, 0x31, 0x1d, 0xa5, 0x6c, 0x35, 0xc4, 0x59, 0x90, 0xf4, 0x66, 0x8a, 0xc9, 0xd5, 0x88, - 0xd6, 0x82, 0xe4, 0x5c, 0x15, 0x7c, 0xdd, 0x49, 0x7c, 0x1b, 0xf2, 0xa3, 0x03, 0xa0, 0xbf, 0x9a, - 0x90, 0xa7, 0x4b, 0x21, 0x37, 0x95, 0xec, 0x7c, 0x4c, 0x53, 0x5a, 0xe8, 0xc2, 0x19, 0x92, 0x15, - 0x3d, 0x54, 0xff, 0xb3, 0x1e, 0xb6, 0xc1, 0xff, 0xfc, 0xfc, 0xcb, 0xd3, 0x9b, 0x53, 0xf9, 0xa3, - 0x06, 0xc1, 0xd2, 0xc6, 0xe4, 0x25, 0xf8, 0x23, 0x21, 0xd2, 0xa1, 0x0d, 0x74, 0xba, 0xc1, 0xc1, - 0xc3, 0xb5, 0xfb, 0xcd, 0x3b, 0x79, 0x5c, 0x89, 0x3d, 0x84, 0xe0, 0x01, 0xc8, 0x0b, 0xf0, 0x78, - 0xa6, 0x0c, 0xba, 0xaa, 0xd1, 0xeb, 0x4f, 0x5b, 0xb6, 0xf9, 0xb8, 0x12, 0x37, 0x79, 0xa6, 0x34, - 0xf6, 0x25, 0xf8, 0xa9, 0xc8, 0x2e, 0x0d, 0xd8, 0xdd, 0xb0, 0xf5, 0x5c, 0x03, 0xb8, 0x35, 0x42, - 0xfa, 0xa6, 0x58, 0xf0, 0x0a, 0x7b, 0x6f, 0xf0, 0x35, 0x8d, 0xbf, 0x61, 0xf0, 0xe6, 0x12, 0x39, - 0xae, 0xc4, 0xbe, 0x06, 0x69, 0x86, 0x43, 0x08, 0x12, 0xad, 0x0d, 0x43, 0x51, 0xd7, 0x14, 0xeb, - 0x7b, 0xb5, 0xa4, 0xa1, 0xe3, 0x4a, 0x0c, 0x06, 0x56, 0x92, 0x48, 0xad, 0x0d, 0x43, 0xd2, 0xd8, - 0x40, 0xb2, 0xa4, 0x21, 0x24, 0x31, 0xb0, 0x32, 0x97, 0x11, 0x4a, 0xd0, 0x70, 0x34, 0x37, 0xe4, - 0xb2, 0x50, 0x2a, 0xe6, 0xa2, 0x41, 0x25, 0x03, 0x45, 0xaf, 0x61, 0xf0, 0x36, 0x30, 0x2c, 0x54, - 0x8a, 0x0c, 0x1a, 0x54, 0xb6, 0xe3, 0x3b, 0x29, 0x32, 0x43, 0xe0, 0x6f, 0x68, 0xc7, 0x5c, 0x60, - 0xd8, 0x0e, 0x84, 0x20, 0xbc, 0xd7, 0x30, 0x62, 0xeb, 0xfc, 0xec, 0x40, 0x70, 0xc1, 0xc6, 0x4a, - 0x58, 0x81, 0x85, 0xe0, 0x26, 0x7c, 0x62, 0x9f, 0x1a, 0x34, 0xf1, 0x2a, 0x36, 0x8d, 0x7b, 0xad, - 0xc3, 0xac, 0x6e, 0x6e, 0xd1, 0xba, 0x40, 0xc3, 0x0c, 0x39, 0x79, 0x1f, 0xee, 0x8c, 0x78, 0x86, - 0x8f, 0x92, 0xa5, 0x41, 0x05, 0xb5, 0x8e, 0x2b, 0x71, 0xcb, 0xb8, 0x4d, 0xd8, 0xfc, 0x58, 0x7f, - 0x39, 0xe0, 0xeb, 0x03, 0xe9, 0x5c, 0xf7, 0xa1, 0xa6, 0x07, 0xcc, 0xb9, 0xcd, 0x80, 0xe9, 0x50, - 0xf2, 0x00, 0x40, 0x5f, 0x6b, 0xc3, 0xa5, 0x27, 0xd2, 0xd7, 0x9e, 0x53, 0xbc, 0x5f, 0x3f, 0x86, - 0xa6, 0xd4, 0x63, 0x25, 0xad, 0x94, 0xff, 0x75, 0xe6, 0x71, 0x14, 0x2c, 0x04, 0xd1, 0x26, 0x0b, - 0x69, 0x85, 0xbc, 0x1e, 0xbd, 0x54, 0x57, 0x44, 0x5b, 0x08, 0x79, 0x07, 0x3c, 0x73, 0x34, 0x9e, - 0x68, 0x11, 0xcf, 0x9f, 0xf4, 0xa4, 0xd7, 0x84, 0xba, 0x36, 0x3b, 0x3f, 0x39, 0xe0, 0x0e, 0xfa, - 0x92, 0x7c, 0x08, 0x0d, 0x1c, 0x58, 0x9e, 0x6c, 0x1c, 0xf6, 0xe5, 0x89, 0xab, 0xf3, 0x4c, 0x0d, - 0x12, 0xf2, 0x11, 0x34, 0xa4, 0x2a, 0x10, 0x58, 0xbd, 0xb5, 0xc4, 0xeb, 0x52, 0x15, 0x83, 0xa4, - 0x07, 0xe0, 0xf1, 0x64, 0x68, 0xce, 0xf1, 0xa7, 0x03, 0xe1, 0x39, 0xa3, 0xc5, 0xf8, 0x2a, 0x66, - 0x72, 0x9a, 0x9a, 0x41, 0xdc, 0x86, 0x20, 0x9b, 0x4e, 0x86, 0xdf, 0x4f, 0x59, 0xc1, 0x99, 0xb4, - 0x5a, 0x81, 0x6c, 0x3a, 0xf9, 0xca, 0x78, 0xc8, 0x3d, 0xa8, 0x2b, 0x91, 0x0f, 0xaf, 0xf5, 0xde, - 0x6e, 0x5c, 0x53, 0x22, 0x3f, 0x21, 0x9f, 0x40, 0x60, 0x1e, 0x9a, 0xf2, 0x06, 0x71, 0x6f, 0xcc, - 0x67, 0xde, 0xf9, 0xd8, 0x34, 0xd1, 0xcc, 0xcc, 0x16, 0x34, 0xe4, 0x58, 0x14, 0xcc, 0xbc, 0x6c, - 0xd5, 0xd8, 0xae, 0xc8, 0x0e, 0xb8, 0x3c, 0x91, 0xf6, 0x3e, 0x88, 0xd6, 0xdf, 0x67, 0x7d, 0x19, - 0x63, 0x10, 0xb9, 0xaf, 0x4f, 0x76, 0x6d, 0xfe, 0x4a, 0xdc, 0xd8, 0x2c, 0x76, 0x7e, 0x73, 0xc0, - 0x2b, 0xf5, 0x43, 0x3c, 0xa8, 0x9d, 0x8a, 0x8c, 0x85, 0x15, 0xb4, 0xf0, 0x1a, 0x0d, 0x1d, 0xb4, - 0x06, 0x99, 0x7a, 0x1e, 0x56, 0x89, 0x0f, 0xf5, 0x41, 0xa6, 0xf6, 0x9f, 0x85, 0xae, 0x35, 0x9f, - 0x1c, 0x84, 0x35, 0x6b, 0x3e, 0x7b, 0x1a, 0xd6, 0xd1, 0xd4, 0x53, 0x10, 0x02, 0x01, 0x68, 0x98, - 0x8b, 0x28, 0x0c, 0xd0, 0x36, 0xc5, 0x0e, 0xef, 0x93, 0x00, 0x9a, 0x17, 0xb4, 0x38, 0xbc, 0xa2, - 0x45, 0xf8, 0x16, 0xc6, 0xeb, 0xfa, 0x87, 0x5b, 0xb8, 0x0b, 0x0e, 0x6b, 0xf8, 0x36, 0x09, 0xa1, - 0xd5, 0x5b, 0x1a, 0x8b, 0x30, 0x21, 0xff, 0x83, 0xe0, 0x68, 0x31, 0x4e, 0x21, 0xdb, 0xb9, 0x00, - 0x58, 0xfc, 0xa1, 0x20, 0x40, 0xaf, 0x0e, 0x0b, 0x46, 0x15, 0x4b, 0xc2, 0x0a, 0xf9, 0x3f, 0xdc, - 0x59, 0x78, 0x70, 0x5f, 0x67, 0xee, 0xea, 0x17, 0x22, 0xcf, 0xd1, 0x55, 0x9d, 0xe3, 0xb4, 0x8b, - 0x25, 0xa1, 0xdb, 0xfb, 0x06, 0xee, 0x72, 0x51, 0x16, 0xf1, 0xb2, 0xc8, 0xc7, 0xbd, 0xc0, 0xfc, - 0x27, 0x9c, 0x61, 0x41, 0xcf, 0x9c, 0x6f, 0xf7, 0x2f, 0xb9, 0xba, 0x9a, 0x8e, 0xf0, 0xef, 0x6b, - 0xcf, 0x84, 0x3d, 0xe6, 0xa2, 0xb4, 0x74, 0xd5, 0xf7, 0x2e, 0xc5, 0x63, 0x9a, 0xf3, 0x3d, 0x53, - 0xfc, 0x7c, 0xf4, 0xab, 0xe3, 0x8c, 0x1a, 0xfa, 0xcb, 0x93, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, - 0xab, 0xae, 0x9b, 0x21, 0x10, 0x0b, 0x00, 0x00, + // 1228 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x56, 0xcf, 0x8e, 0x1b, 0xc5, + 0x13, 0x76, 0x7b, 0xfc, 0x67, 0xa6, 0xc6, 0xc9, 0x6f, 0x7e, 0x9d, 0x10, 0x06, 0xd0, 0x66, 0x1d, + 0x0b, 0x24, 0x2b, 0x52, 0x36, 0xca, 0x26, 0x84, 0x10, 0x11, 0x11, 0xbc, 0x56, 0xb4, 0x26, 0x28, + 0x2c, 0xb3, 0xb0, 0x07, 0x2e, 0x56, 0xdb, 0xd3, 0xbb, 0xdb, 0xec, 0x78, 0x7a, 0x98, 0x69, 0xaf, + 0xf0, 0x1d, 0xde, 0x80, 0x13, 0xa7, 0xbc, 0x02, 0x2f, 0xc4, 0x85, 0x87, 0xe0, 0x84, 0x84, 0xaa, + 0xbb, 0xfd, 0xdf, 0x5e, 0x96, 0x5b, 0x75, 0xf5, 0x57, 0x35, 0xdd, 0x5f, 0x7d, 0x55, 0xd3, 0xd0, + 0x28, 0x86, 0xe7, 0x7c, 0xc4, 0xf6, 0xb2, 0x5c, 0x2a, 0x49, 0x6f, 0x8d, 0x44, 0x72, 0x39, 0x2e, + 0xcc, 0x6a, 0xcf, 0x6c, 0xbd, 0xdf, 0x18, 0xca, 0xd1, 0x48, 0xa6, 0xc6, 0xd9, 0x7a, 0x5b, 0x01, + 0xff, 0x95, 0xe0, 0x49, 0x7c, 0xac, 0x77, 0x69, 0x08, 0xf5, 0x53, 0x5c, 0xf6, 0xba, 0x21, 0x69, + 0x92, 0xb6, 0x13, 0x4d, 0x97, 0x94, 0x42, 0x25, 0x65, 0x23, 0x1e, 0x96, 0x9b, 0xa4, 0xed, 0x45, + 0xda, 0xa6, 0x1f, 0xc2, 0x4d, 0x51, 0xf4, 0xb3, 0x5c, 0x8c, 0x58, 0x3e, 0xe9, 0x5f, 0xf0, 0x49, + 0xe8, 0x34, 0x49, 0xdb, 0x8d, 0x1a, 0xa2, 0x38, 0x32, 0xce, 0xd7, 0x7c, 0x42, 0x9b, 0xe0, 0xc7, + 0xbc, 0x18, 0xe6, 0x22, 0x53, 0x42, 0xa6, 0x61, 0x45, 0x27, 0x58, 0x74, 0xd1, 0xe7, 0xe0, 0xc5, + 0x4c, 0xb1, 0xbe, 0x9a, 0x64, 0x3c, 0xac, 0x36, 0x49, 0xfb, 0xe6, 0xfe, 0xce, 0xde, 0x86, 0xc3, + 0xef, 0x75, 0x99, 0x62, 0xdf, 0x4e, 0x32, 0x1e, 0xb9, 0xb1, 0xb5, 0x68, 0x07, 0x7c, 0x0c, 0xeb, + 0x67, 0x2c, 0x67, 0xa3, 0x22, 0xac, 0x35, 0x9d, 0xb6, 0xbf, 0x7f, 0x6f, 0x39, 0xda, 0x5e, 0xf9, + 0x35, 0x9f, 0x9c, 0xb0, 0x64, 0xcc, 0x8f, 0x98, 0xc8, 0x23, 0xc0, 0xa8, 0x23, 0x1d, 0x44, 0xbb, + 0xd0, 0x10, 0x69, 0xcc, 0x7f, 0x9a, 0x26, 0xa9, 0x5f, 0x37, 0x89, 0xaf, 0xc3, 0x6c, 0x96, 0x3b, + 0x50, 0x63, 0x63, 0x25, 0x7b, 0xdd, 0xd0, 0xd5, 0x2c, 0xd8, 0x15, 0xfd, 0x18, 0xaa, 0x85, 0x62, + 0x8a, 0x87, 0x9e, 0xbe, 0xd9, 0xee, 0xc6, 0x9b, 0x99, 0x22, 0x20, 0x2c, 0x32, 0x68, 0xfa, 0x12, + 0x1a, 0x3c, 0xe1, 0x23, 0x9e, 0x2a, 0xc3, 0x0b, 0x5c, 0x87, 0x17, 0xdf, 0x86, 0x68, 0x6a, 0xba, + 0x70, 0x23, 0xe6, 0xa7, 0x6c, 0x9c, 0xa8, 0xfe, 0x25, 0x1e, 0x39, 0xf4, 0x9b, 0xa4, 0xed, 0x6f, + 0x39, 0x80, 0xbe, 0x94, 0x3e, 0x45, 0xd4, 0xb0, 0x51, 0xda, 0xd5, 0xfa, 0x8d, 0x40, 0x70, 0x20, + 0x93, 0x84, 0x0f, 0xb1, 0x56, 0x56, 0x27, 0x53, 0x35, 0x90, 0x05, 0x35, 0xac, 0xd4, 0xb9, 0xbc, + 0x5e, 0xe7, 0x39, 0x43, 0xce, 0x12, 0x43, 0xcf, 0xa0, 0xa6, 0x65, 0x56, 0x84, 0x15, 0xcd, 0x7c, + 0xf3, 0x0a, 0x8a, 0xb4, 0x1d, 0x59, 0x7c, 0x6b, 0x17, 0xbc, 0x8e, 0x94, 0xc9, 0x17, 0x79, 0xce, + 0x26, 0x78, 0x28, 0x94, 0x45, 0x48, 0x9a, 0x4e, 0xdb, 0x8d, 0xb4, 0xdd, 0xba, 0x0b, 0x6e, 0x2f, + 0x55, 0xeb, 0xfb, 0x55, 0xbb, 0xbf, 0x0b, 0xde, 0x57, 0x32, 0x3d, 0x5b, 0x07, 0x38, 0x16, 0xd0, + 0x04, 0x78, 0x95, 0x48, 0xb6, 0x21, 0x45, 0xd9, 0x22, 0xee, 0x81, 0xdf, 0x95, 0xe3, 0x41, 0xc2, + 0xd7, 0x21, 0x64, 0x9e, 0xa4, 0x33, 0x51, 0xbc, 0x58, 0x47, 0x34, 0xe6, 0x49, 0x8e, 0x55, 0x2e, + 0x36, 0x9d, 0xc4, 0xb3, 0x90, 0x9f, 0x09, 0x80, 0xde, 0x35, 0x90, 0x27, 0x0b, 0x90, 0x6d, 0x94, + 0x1d, 0x0f, 0x59, 0xc2, 0x72, 0x53, 0x55, 0x8d, 0x5e, 0x53, 0x55, 0xf9, 0xbf, 0xaa, 0x0a, 0x19, + 0xfb, 0xf2, 0xf8, 0xeb, 0x37, 0xdb, 0xaf, 0xf2, 0x17, 0x01, 0x98, 0xab, 0x89, 0xee, 0x80, 0x37, + 0x90, 0x32, 0xe9, 0x5b, 0x1c, 0x69, 0xbb, 0x87, 0xa5, 0xc8, 0x45, 0x17, 0xe6, 0xa7, 0x1f, 0x80, + 0x2b, 0x52, 0x65, 0x76, 0xf1, 0x30, 0xd5, 0xc3, 0x52, 0x54, 0x17, 0xa9, 0xd2, 0x9b, 0x3b, 0xe0, + 0x25, 0x32, 0x3d, 0x33, 0xbb, 0xa8, 0x19, 0x07, 0x63, 0xd1, 0xa5, 0xb7, 0x77, 0x01, 0x4e, 0xb1, + 0x36, 0x66, 0x1f, 0x07, 0x4b, 0xf9, 0xb0, 0x14, 0x79, 0xda, 0xa7, 0x01, 0xf7, 0xc0, 0x8f, 0x75, + 0x69, 0x0c, 0x02, 0x47, 0x0b, 0x39, 0x2c, 0x45, 0x60, 0x9c, 0x53, 0x48, 0xa1, 0x89, 0x37, 0x90, + 0x1a, 0xaa, 0x16, 0x21, 0xc6, 0x39, 0xfd, 0xcc, 0x00, 0xab, 0x67, 0x10, 0xf5, 0x26, 0x69, 0x37, + 0xf0, 0x33, 0xda, 0x87, 0x80, 0x4e, 0xcd, 0xb0, 0xd0, 0xfa, 0xa3, 0x02, 0xfe, 0x02, 0xe5, 0xf4, + 0xc5, 0xea, 0xd5, 0xfd, 0xfd, 0xbb, 0x1b, 0x99, 0x9e, 0x69, 0x78, 0x89, 0x9a, 0xe7, 0x2b, 0xd4, + 0xf8, 0x5b, 0xea, 0x34, 0x15, 0xf8, 0x22, 0x73, 0x2f, 0x56, 0x99, 0xdb, 0xf6, 0xe9, 0x99, 0xfa, + 0x97, 0x98, 0x7d, 0xb9, 0xc6, 0xec, 0xb6, 0xb9, 0x31, 0x6f, 0x8e, 0x65, 0xea, 0x0f, 0xd6, 0xa9, + 0xdf, 0xa6, 0xd2, 0x85, 0xee, 0x59, 0x29, 0xce, 0xc1, 0x7a, 0x71, 0xb6, 0x4a, 0x7d, 0xde, 0x3d, + 0x2b, 0xe5, 0x7b, 0xb9, 0x56, 0xbe, 0x6d, 0x77, 0x99, 0xf7, 0xe8, 0x52, 0x7d, 0x31, 0x03, 0x43, + 0xaf, 0xc9, 0xe0, 0x5e, 0x91, 0x61, 0xde, 0x9f, 0x98, 0x41, 0x07, 0x4d, 0xcb, 0xf1, 0x43, 0x21, + 0x53, 0x93, 0xc0, 0xbb, 0xa2, 0x1c, 0xb3, 0xd6, 0xc2, 0x72, 0x60, 0xc8, 0x92, 0xc0, 0x7e, 0x25, + 0xe0, 0x9f, 0xf0, 0xa1, 0x92, 0x56, 0x60, 0x01, 0x38, 0xb1, 0x18, 0xd9, 0x5f, 0x35, 0x9a, 0xf8, + 0x2b, 0x33, 0x85, 0xbb, 0xd4, 0x30, 0xab, 0x9b, 0x6b, 0x94, 0xce, 0xd7, 0x61, 0x26, 0x39, 0xfd, + 0x08, 0x6e, 0x0c, 0x44, 0x8a, 0x3f, 0x75, 0x9b, 0xc6, 0xb1, 0xa2, 0x6f, 0x18, 0xb7, 0x81, 0xcd, + 0x8e, 0xf5, 0x37, 0x01, 0x4f, 0x1f, 0x48, 0xdf, 0xf5, 0x11, 0x54, 0xf4, 0x68, 0x21, 0xd7, 0x19, + 0x2d, 0x1a, 0x4a, 0x77, 0x00, 0xf4, 0x40, 0xef, 0x2f, 0x3c, 0x31, 0x3c, 0xed, 0x79, 0x83, 0x7f, + 0x96, 0xcf, 0xa0, 0x5e, 0xe8, 0xb6, 0x2a, 0xac, 0x94, 0xff, 0x75, 0xda, 0x61, 0x2b, 0xd8, 0x10, + 0x8c, 0x36, 0xb7, 0x28, 0xac, 0x90, 0x37, 0x47, 0x2f, 0xf0, 0x8a, 0xd1, 0x36, 0x84, 0xbe, 0x07, + 0xae, 0x39, 0x9a, 0x88, 0xb5, 0x88, 0x67, 0x4f, 0xa2, 0xb8, 0x53, 0x87, 0xaa, 0x36, 0x5b, 0xbf, + 0x10, 0x70, 0x7a, 0xdd, 0x82, 0x7e, 0x02, 0x35, 0x6c, 0x58, 0x11, 0x5f, 0xd9, 0xec, 0x8b, 0x1d, + 0x57, 0x15, 0xa9, 0xea, 0xc5, 0xf4, 0x53, 0xa8, 0x15, 0x2a, 0xc7, 0xc0, 0xf2, 0xb5, 0x25, 0x5e, + 0x2d, 0x54, 0xde, 0x8b, 0x3b, 0x00, 0xae, 0x88, 0xfb, 0xe6, 0x1c, 0x7f, 0x12, 0x08, 0x8e, 0x39, + 0xcb, 0x87, 0xe7, 0x11, 0x2f, 0xc6, 0x89, 0xb2, 0xd3, 0xcb, 0x4f, 0xc7, 0xa3, 0xfe, 0x8f, 0x63, + 0x9e, 0x0b, 0x5e, 0x58, 0xad, 0x40, 0x3a, 0x1e, 0x7d, 0x63, 0x3c, 0xf4, 0x16, 0x54, 0x95, 0xcc, + 0xfa, 0x17, 0xfa, 0xdb, 0x4e, 0x54, 0x51, 0x32, 0x7b, 0x4d, 0x3f, 0x07, 0xdf, 0xfc, 0x62, 0xa7, + 0x13, 0xc4, 0xd9, 0x7a, 0x9f, 0x59, 0xe5, 0x23, 0x53, 0x44, 0xd3, 0x33, 0x77, 0xa0, 0x56, 0x0c, + 0x65, 0xce, 0xcd, 0x3f, 0xbd, 0x1c, 0xd9, 0x15, 0xbd, 0x0f, 0x8e, 0x88, 0x0b, 0x3b, 0x0f, 0xc2, + 0xcd, 0xf3, 0xac, 0x5b, 0x44, 0x08, 0xa2, 0xb7, 0xf5, 0xc9, 0x2e, 0xcc, 0xab, 0xce, 0x89, 0xcc, + 0xe2, 0xfe, 0xef, 0x04, 0xdc, 0xa9, 0x7e, 0xa8, 0x0b, 0x95, 0x37, 0x32, 0xe5, 0x41, 0x09, 0x2d, + 0x1c, 0xa3, 0x01, 0x41, 0xab, 0x97, 0xaa, 0x67, 0x41, 0x99, 0x7a, 0x50, 0xed, 0xa5, 0xea, 0xd1, + 0xd3, 0xc0, 0xb1, 0xe6, 0xe3, 0xfd, 0xa0, 0x62, 0xcd, 0xa7, 0x4f, 0x82, 0x2a, 0x9a, 0xba, 0x0b, + 0x02, 0xa0, 0x00, 0x35, 0x33, 0x88, 0x02, 0x1f, 0x6d, 0x43, 0x76, 0x70, 0x9b, 0xfa, 0x50, 0x3f, + 0x61, 0xf9, 0xc1, 0x39, 0xcb, 0x83, 0x77, 0x10, 0xaf, 0xf9, 0x0f, 0xee, 0xe0, 0x57, 0xb0, 0x59, + 0x83, 0x77, 0x69, 0x00, 0x8d, 0xce, 0x42, 0x5b, 0x04, 0x31, 0xfd, 0x1f, 0xf8, 0xaf, 0xe6, 0xed, + 0x14, 0xf0, 0xfb, 0x27, 0x00, 0xf3, 0x17, 0x1e, 0x06, 0xe8, 0xd5, 0x41, 0xce, 0x99, 0xe2, 0x71, + 0x50, 0xa2, 0xff, 0x87, 0x1b, 0x73, 0x0f, 0x7e, 0x97, 0xcc, 0x5c, 0xdd, 0x5c, 0x66, 0x19, 0xba, + 0xca, 0xb3, 0x38, 0xed, 0xe2, 0x71, 0xe0, 0x74, 0xbe, 0x83, 0x9b, 0x42, 0x4e, 0x49, 0x3c, 0xcb, + 0xb3, 0x61, 0xc7, 0x37, 0x2f, 0xa4, 0x23, 0x24, 0xf4, 0x88, 0x7c, 0xff, 0xe8, 0x4c, 0xa8, 0xf3, + 0xf1, 0x00, 0x5f, 0xaf, 0x0f, 0x0d, 0xec, 0x81, 0x90, 0x53, 0x4b, 0xb3, 0xfe, 0xf0, 0x4c, 0x3e, + 0x60, 0x99, 0x78, 0x68, 0xc8, 0xcf, 0x06, 0x6f, 0x09, 0x19, 0xd4, 0xf4, 0xce, 0xe3, 0x7f, 0x02, + 0x00, 0x00, 0xff, 0xff, 0xf2, 0x1d, 0xf9, 0x3b, 0x50, 0x0c, 0x00, 0x00, } diff --git a/proto/schema.proto b/proto/schema.proto index b582a79..3b8c066 100644 --- a/proto/schema.proto +++ b/proto/schema.proto @@ -55,6 +55,7 @@ message FieldSchema { FieldState state = 9; // To keep compatible with older version, the default // state is `Created`. DataType element_type = 10; // For array type, the element type is stored here + ValueField default_value = 11; // default_value only support scalars except array and json for now } /** @@ -89,6 +90,18 @@ message ArrayArray { message JSONArray { repeated bytes data = 1; } +message ValueField { + oneof data { + bool bool_data = 1; + int32 int_data = 2; + int64 long_data = 3; + float float_data = 4; + double double_data = 5; + string string_data = 6; + bytes bytes_data = 7; + } +} + message ScalarField { oneof data { BoolArray bool_data = 1;