|
|
@@ -1465,7 +1465,6 @@ type ColumnValue struct {
|
|
|
// Types that are assignable to TypedValue:
|
|
|
//
|
|
|
// *ColumnValue_StringValue
|
|
|
- // *ColumnValue_Uint32Value
|
|
|
// *ColumnValue_Uint64Value
|
|
|
// *ColumnValue_Float64Value
|
|
|
// *ColumnValue_BoolValue
|
|
|
@@ -1532,13 +1531,6 @@ func (x *ColumnValue) GetStringValue() string {
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
-func (x *ColumnValue) GetUint32Value() uint32 {
|
|
|
- if x, ok := x.GetTypedValue().(*ColumnValue_Uint32Value); ok {
|
|
|
- return x.Uint32Value
|
|
|
- }
|
|
|
- return 0
|
|
|
-}
|
|
|
-
|
|
|
func (x *ColumnValue) GetUint64Value() uint64 {
|
|
|
if x, ok := x.GetTypedValue().(*ColumnValue_Uint64Value); ok {
|
|
|
return x.Uint64Value
|
|
|
@@ -1568,26 +1560,20 @@ type ColumnValue_StringValue struct {
|
|
|
StringValue string `protobuf:"bytes,3,opt,name=StringValue,proto3,oneof"`
|
|
|
}
|
|
|
|
|
|
-type ColumnValue_Uint32Value struct {
|
|
|
- Uint32Value uint32 `protobuf:"varint,4,opt,name=Uint32Value,proto3,oneof"`
|
|
|
-}
|
|
|
-
|
|
|
type ColumnValue_Uint64Value struct {
|
|
|
- Uint64Value uint64 `protobuf:"varint,5,opt,name=Uint64Value,proto3,oneof"`
|
|
|
+ Uint64Value uint64 `protobuf:"varint,4,opt,name=Uint64Value,proto3,oneof"`
|
|
|
}
|
|
|
|
|
|
type ColumnValue_Float64Value struct {
|
|
|
- Float64Value float64 `protobuf:"fixed64,6,opt,name=Float64Value,proto3,oneof"`
|
|
|
+ Float64Value float64 `protobuf:"fixed64,5,opt,name=Float64Value,proto3,oneof"`
|
|
|
}
|
|
|
|
|
|
type ColumnValue_BoolValue struct {
|
|
|
- BoolValue bool `protobuf:"varint,7,opt,name=BoolValue,proto3,oneof"`
|
|
|
+ BoolValue bool `protobuf:"varint,6,opt,name=BoolValue,proto3,oneof"`
|
|
|
}
|
|
|
|
|
|
func (*ColumnValue_StringValue) isColumnValue_TypedValue() {}
|
|
|
|
|
|
-func (*ColumnValue_Uint32Value) isColumnValue_TypedValue() {}
|
|
|
-
|
|
|
func (*ColumnValue_Uint64Value) isColumnValue_TypedValue() {}
|
|
|
|
|
|
func (*ColumnValue_Float64Value) isColumnValue_TypedValue() {}
|
|
|
@@ -1871,25 +1857,22 @@ var file_v1_request_command_proto_rawDesc = []byte{
|
|
|
0x52, 0x04, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x05, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18,
|
|
|
0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e,
|
|
|
0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x05, 0x56, 0x61, 0x6c,
|
|
|
- 0x75, 0x65, 0x22, 0xf5, 0x01, 0x0a, 0x0b, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x56, 0x61, 0x6c,
|
|
|
+ 0x75, 0x65, 0x22, 0xd1, 0x01, 0x0a, 0x0b, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x56, 0x61, 0x6c,
|
|
|
0x75, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x4b, 0x69, 0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
|
|
|
0x52, 0x04, 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02,
|
|
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x22, 0x0a, 0x0b, 0x53, 0x74,
|
|
|
0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48,
|
|
|
0x00, 0x52, 0x0b, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x22,
|
|
|
- 0x0a, 0x0b, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x04, 0x20,
|
|
|
- 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x0b, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x56, 0x61, 0x6c,
|
|
|
- 0x75, 0x65, 0x12, 0x22, 0x0a, 0x0b, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75,
|
|
|
- 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x48, 0x00, 0x52, 0x0b, 0x55, 0x69, 0x6e, 0x74, 0x36,
|
|
|
- 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x24, 0x0a, 0x0c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x36,
|
|
|
- 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x48, 0x00, 0x52, 0x0c,
|
|
|
- 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1e, 0x0a, 0x09,
|
|
|
- 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x48,
|
|
|
- 0x00, 0x52, 0x09, 0x42, 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x0c, 0x0a, 0x0a,
|
|
|
- 0x54, 0x79, 0x70, 0x65, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x20, 0x5a, 0x1e, 0x64, 0x70,
|
|
|
- 0x73, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x5f, 0x61, 0x70, 0x69, 0x2f, 0x70,
|
|
|
- 0x62, 0x2f, 0x76, 0x31, 0x2f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x62, 0x06, 0x70, 0x72,
|
|
|
- 0x6f, 0x74, 0x6f, 0x33,
|
|
|
+ 0x0a, 0x0b, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x04, 0x20,
|
|
|
+ 0x01, 0x28, 0x04, 0x48, 0x00, 0x52, 0x0b, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c,
|
|
|
+ 0x75, 0x65, 0x12, 0x24, 0x0a, 0x0c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c,
|
|
|
+ 0x75, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x48, 0x00, 0x52, 0x0c, 0x46, 0x6c, 0x6f, 0x61,
|
|
|
+ 0x74, 0x36, 0x34, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x1e, 0x0a, 0x09, 0x42, 0x6f, 0x6f, 0x6c,
|
|
|
+ 0x56, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x09, 0x42,
|
|
|
+ 0x6f, 0x6f, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x54, 0x79, 0x70, 0x65,
|
|
|
+ 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x20, 0x5a, 0x1e, 0x64, 0x70, 0x73, 0x2f, 0x61, 0x70,
|
|
|
+ 0x69, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x5f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x62, 0x2f, 0x76, 0x31,
|
|
|
+ 0x2f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
}
|
|
|
|
|
|
var (
|
|
|
@@ -2251,7 +2234,6 @@ func file_v1_request_command_proto_init() {
|
|
|
}
|
|
|
file_v1_request_command_proto_msgTypes[21].OneofWrappers = []interface{}{
|
|
|
(*ColumnValue_StringValue)(nil),
|
|
|
- (*ColumnValue_Uint32Value)(nil),
|
|
|
(*ColumnValue_Uint64Value)(nil),
|
|
|
(*ColumnValue_Float64Value)(nil),
|
|
|
(*ColumnValue_BoolValue)(nil),
|