diff --git a/Makefile b/Makefile index 1ace9a4d24d..5dd4db4d398 100644 --- a/Makefile +++ b/Makefile @@ -135,7 +135,6 @@ PROTO_SRCS = $(wildcard proto/*.proto) PROTO_SRC_NAMES = $(basename $(notdir $(PROTO_SRCS))) PROTO_PY_OUTS = $(foreach name, $(PROTO_SRC_NAMES), py/vtproto/$(name)_pb2.py) PROTO_GO_OUTS = $(foreach name, $(PROTO_SRC_NAMES), go/vt/proto/$(name)/$(name).pb.go) -PROTO_GO_TEMPS = $(foreach name, $(PROTO_SRC_NAMES), go/vt/.proto.tmp/$(name).pb.go) # This rule rebuilds all the go and python files from the proto definitions for gRPC. proto: proto_banner $(PROTO_GO_OUTS) $(PROTO_PY_OUTS) @@ -152,19 +151,11 @@ endif $(PROTO_PY_OUTS): py/vtproto/%_pb2.py: proto/%.proto $(PROTOC_COMMAND) -Iproto $< --python_out=py/vtproto --grpc_python_out=py/vtproto -$(PROTO_GO_OUTS): $(PROTO_GO_TEMPS) +$(PROTO_GO_OUTS): install_protoc-gen-go proto/*.proto for name in $(PROTO_SRC_NAMES); do \ - mkdir -p go/vt/proto/$${name}; \ - cp -a go/vt/.proto.tmp/$${name}.pb.go go/vt/proto/$${name}/$${name}.pb.go; \ + cd $(VTROOT)/src && PATH=$(VTROOT)/bin:$(PATH) $(VTROOT)/bin/protoc --go_out=plugins=grpc:. -Ivitess.io/vitess/proto vitess.io/vitess/proto/$${name}.proto; \ done -$(PROTO_GO_TEMPS): install_protoc-gen-go - -$(PROTO_GO_TEMPS): go/vt/.proto.tmp/%.pb.go: proto/%.proto - mkdir -p go/vt/.proto.tmp - $(PROTOC_COMMAND) -Iproto $< --plugin=grpc=protoc-gen-go --go_out=plugins=grpc:go/vt/.proto.tmp - sed -i -e 's,import \([a-z0-9_]*\) ".",import \1 "vitess.io/vitess/go/vt/proto/\1",g' $@ - # Helper targets for building Docker images. # Please read docker/README.md to understand the different available images. diff --git a/bootstrap.sh b/bootstrap.sh index 08ca48d93c7..51853067f8c 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -139,6 +139,24 @@ function install_grpc() { install_dep "gRPC" "1.10.0" "$VTROOT/dist/grpc" install_grpc +# Install protoc. +function install_protoc() { + local version="$1" + local dist="$2" + + case $(uname) in + Linux) local platform=linux;; + Darwin) local platform=osx;; + esac + + wget "https://github.com/google/protobuf/releases/download/v$version/protoc-$version-$platform-x86_64.zip" + unzip "protoc-$version-$platform-x86_64.zip" + ln -snf "$dist/bin/protoc" "$VTROOT/bin/protoc" +} +protoc_ver=3.5.1 +install_dep "protoc" "$protoc_ver" "$VTROOT/dist/vt-protoc-$protoc_ver" install_protoc + + # Install Zookeeper. function install_zookeeper() { local version="$1" diff --git a/go/vt/proto/automation/automation.pb.go b/go/vt/proto/automation/automation.pb.go index f9ecbc8ec68..811fc3ecde8 100644 --- a/go/vt/proto/automation/automation.pb.go +++ b/go/vt/proto/automation/automation.pb.go @@ -1,24 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: automation.proto -/* -Package automation is a generated protocol buffer package. - -It is generated from these files: - automation.proto - -It has these top-level messages: - ClusterOperation - TaskContainer - Task - EnqueueClusterOperationRequest - EnqueueClusterOperationResponse - GetClusterOperationStateRequest - GetClusterOperationStateResponse - GetClusterOperationDetailsRequest - GetClusterOperationDetailsResponse -*/ -package automation +package automation // import "vitess.io/vitess/go/vt/proto/automation" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -60,7 +43,9 @@ var ClusterOperationState_value = map[string]int32{ func (x ClusterOperationState) String() string { return proto.EnumName(ClusterOperationState_name, int32(x)) } -func (ClusterOperationState) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (ClusterOperationState) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_automation_7092712054bc689e, []int{0} +} type TaskState int32 @@ -87,7 +72,9 @@ var TaskState_value = map[string]int32{ func (x TaskState) String() string { return proto.EnumName(TaskState_name, int32(x)) } -func (TaskState) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +func (TaskState) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_automation_7092712054bc689e, []int{1} +} type ClusterOperation struct { Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"` @@ -96,13 +83,35 @@ type ClusterOperation struct { // Cached value. This has to be re-evaluated e.g. after a checkpoint load because running tasks may have already finished. State ClusterOperationState `protobuf:"varint,3,opt,name=state,enum=automation.ClusterOperationState" json:"state,omitempty"` // Error of the first task which failed. Set after state advanced to CLUSTER_OPERATION_DONE. If empty, all tasks succeeded. Cached value, see state above. - Error string `protobuf:"bytes,4,opt,name=error" json:"error,omitempty"` + Error string `protobuf:"bytes,4,opt,name=error" json:"error,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ClusterOperation) Reset() { *m = ClusterOperation{} } +func (m *ClusterOperation) String() string { return proto.CompactTextString(m) } +func (*ClusterOperation) ProtoMessage() {} +func (*ClusterOperation) Descriptor() ([]byte, []int) { + return fileDescriptor_automation_7092712054bc689e, []int{0} +} +func (m *ClusterOperation) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ClusterOperation.Unmarshal(m, b) +} +func (m *ClusterOperation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ClusterOperation.Marshal(b, m, deterministic) +} +func (dst *ClusterOperation) XXX_Merge(src proto.Message) { + xxx_messageInfo_ClusterOperation.Merge(dst, src) +} +func (m *ClusterOperation) XXX_Size() int { + return xxx_messageInfo_ClusterOperation.Size(m) +} +func (m *ClusterOperation) XXX_DiscardUnknown() { + xxx_messageInfo_ClusterOperation.DiscardUnknown(m) } -func (m *ClusterOperation) Reset() { *m = ClusterOperation{} } -func (m *ClusterOperation) String() string { return proto.CompactTextString(m) } -func (*ClusterOperation) ProtoMessage() {} -func (*ClusterOperation) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +var xxx_messageInfo_ClusterOperation proto.InternalMessageInfo func (m *ClusterOperation) GetId() string { if m != nil { @@ -135,14 +144,36 @@ func (m *ClusterOperation) GetError() string { // TaskContainer holds one or more task which may be executed in parallel. // "concurrency", if > 0, limits the amount of concurrently executed tasks. type TaskContainer struct { - ParallelTasks []*Task `protobuf:"bytes,1,rep,name=parallel_tasks,json=parallelTasks" json:"parallel_tasks,omitempty"` - Concurrency int32 `protobuf:"varint,2,opt,name=concurrency" json:"concurrency,omitempty"` + ParallelTasks []*Task `protobuf:"bytes,1,rep,name=parallel_tasks,json=parallelTasks" json:"parallel_tasks,omitempty"` + Concurrency int32 `protobuf:"varint,2,opt,name=concurrency" json:"concurrency,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *TaskContainer) Reset() { *m = TaskContainer{} } -func (m *TaskContainer) String() string { return proto.CompactTextString(m) } -func (*TaskContainer) ProtoMessage() {} -func (*TaskContainer) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +func (m *TaskContainer) Reset() { *m = TaskContainer{} } +func (m *TaskContainer) String() string { return proto.CompactTextString(m) } +func (*TaskContainer) ProtoMessage() {} +func (*TaskContainer) Descriptor() ([]byte, []int) { + return fileDescriptor_automation_7092712054bc689e, []int{1} +} +func (m *TaskContainer) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_TaskContainer.Unmarshal(m, b) +} +func (m *TaskContainer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_TaskContainer.Marshal(b, m, deterministic) +} +func (dst *TaskContainer) XXX_Merge(src proto.Message) { + xxx_messageInfo_TaskContainer.Merge(dst, src) +} +func (m *TaskContainer) XXX_Size() int { + return xxx_messageInfo_TaskContainer.Size(m) +} +func (m *TaskContainer) XXX_DiscardUnknown() { + xxx_messageInfo_TaskContainer.DiscardUnknown(m) +} + +var xxx_messageInfo_TaskContainer proto.InternalMessageInfo func (m *TaskContainer) GetParallelTasks() []*Task { if m != nil { @@ -169,13 +200,35 @@ type Task struct { // Set after state advanced to DONE. Output string `protobuf:"bytes,5,opt,name=output" json:"output,omitempty"` // Set after state advanced to DONE. If empty, the task did succeed. - Error string `protobuf:"bytes,6,opt,name=error" json:"error,omitempty"` + Error string `protobuf:"bytes,6,opt,name=error" json:"error,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Task) Reset() { *m = Task{} } +func (m *Task) String() string { return proto.CompactTextString(m) } +func (*Task) ProtoMessage() {} +func (*Task) Descriptor() ([]byte, []int) { + return fileDescriptor_automation_7092712054bc689e, []int{2} +} +func (m *Task) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Task.Unmarshal(m, b) +} +func (m *Task) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Task.Marshal(b, m, deterministic) +} +func (dst *Task) XXX_Merge(src proto.Message) { + xxx_messageInfo_Task.Merge(dst, src) +} +func (m *Task) XXX_Size() int { + return xxx_messageInfo_Task.Size(m) +} +func (m *Task) XXX_DiscardUnknown() { + xxx_messageInfo_Task.DiscardUnknown(m) } -func (m *Task) Reset() { *m = Task{} } -func (m *Task) String() string { return proto.CompactTextString(m) } -func (*Task) ProtoMessage() {} -func (*Task) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } +var xxx_messageInfo_Task proto.InternalMessageInfo func (m *Task) GetName() string { if m != nil { @@ -220,14 +273,36 @@ func (m *Task) GetError() string { } type EnqueueClusterOperationRequest struct { - Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` - Parameters map[string]string `protobuf:"bytes,2,rep,name=parameters" json:"parameters,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` + Parameters map[string]string `protobuf:"bytes,2,rep,name=parameters" json:"parameters,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *EnqueueClusterOperationRequest) Reset() { *m = EnqueueClusterOperationRequest{} } -func (m *EnqueueClusterOperationRequest) String() string { return proto.CompactTextString(m) } -func (*EnqueueClusterOperationRequest) ProtoMessage() {} -func (*EnqueueClusterOperationRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } +func (m *EnqueueClusterOperationRequest) Reset() { *m = EnqueueClusterOperationRequest{} } +func (m *EnqueueClusterOperationRequest) String() string { return proto.CompactTextString(m) } +func (*EnqueueClusterOperationRequest) ProtoMessage() {} +func (*EnqueueClusterOperationRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_automation_7092712054bc689e, []int{3} +} +func (m *EnqueueClusterOperationRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_EnqueueClusterOperationRequest.Unmarshal(m, b) +} +func (m *EnqueueClusterOperationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_EnqueueClusterOperationRequest.Marshal(b, m, deterministic) +} +func (dst *EnqueueClusterOperationRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_EnqueueClusterOperationRequest.Merge(dst, src) +} +func (m *EnqueueClusterOperationRequest) XXX_Size() int { + return xxx_messageInfo_EnqueueClusterOperationRequest.Size(m) +} +func (m *EnqueueClusterOperationRequest) XXX_DiscardUnknown() { + xxx_messageInfo_EnqueueClusterOperationRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_EnqueueClusterOperationRequest proto.InternalMessageInfo func (m *EnqueueClusterOperationRequest) GetName() string { if m != nil { @@ -244,13 +319,35 @@ func (m *EnqueueClusterOperationRequest) GetParameters() map[string]string { } type EnqueueClusterOperationResponse struct { - Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"` + Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *EnqueueClusterOperationResponse) Reset() { *m = EnqueueClusterOperationResponse{} } -func (m *EnqueueClusterOperationResponse) String() string { return proto.CompactTextString(m) } -func (*EnqueueClusterOperationResponse) ProtoMessage() {} -func (*EnqueueClusterOperationResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} } +func (m *EnqueueClusterOperationResponse) Reset() { *m = EnqueueClusterOperationResponse{} } +func (m *EnqueueClusterOperationResponse) String() string { return proto.CompactTextString(m) } +func (*EnqueueClusterOperationResponse) ProtoMessage() {} +func (*EnqueueClusterOperationResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_automation_7092712054bc689e, []int{4} +} +func (m *EnqueueClusterOperationResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_EnqueueClusterOperationResponse.Unmarshal(m, b) +} +func (m *EnqueueClusterOperationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_EnqueueClusterOperationResponse.Marshal(b, m, deterministic) +} +func (dst *EnqueueClusterOperationResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_EnqueueClusterOperationResponse.Merge(dst, src) +} +func (m *EnqueueClusterOperationResponse) XXX_Size() int { + return xxx_messageInfo_EnqueueClusterOperationResponse.Size(m) +} +func (m *EnqueueClusterOperationResponse) XXX_DiscardUnknown() { + xxx_messageInfo_EnqueueClusterOperationResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_EnqueueClusterOperationResponse proto.InternalMessageInfo func (m *EnqueueClusterOperationResponse) GetId() string { if m != nil { @@ -260,13 +357,35 @@ func (m *EnqueueClusterOperationResponse) GetId() string { } type GetClusterOperationStateRequest struct { - Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"` + Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *GetClusterOperationStateRequest) Reset() { *m = GetClusterOperationStateRequest{} } -func (m *GetClusterOperationStateRequest) String() string { return proto.CompactTextString(m) } -func (*GetClusterOperationStateRequest) ProtoMessage() {} -func (*GetClusterOperationStateRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } +func (m *GetClusterOperationStateRequest) Reset() { *m = GetClusterOperationStateRequest{} } +func (m *GetClusterOperationStateRequest) String() string { return proto.CompactTextString(m) } +func (*GetClusterOperationStateRequest) ProtoMessage() {} +func (*GetClusterOperationStateRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_automation_7092712054bc689e, []int{5} +} +func (m *GetClusterOperationStateRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetClusterOperationStateRequest.Unmarshal(m, b) +} +func (m *GetClusterOperationStateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetClusterOperationStateRequest.Marshal(b, m, deterministic) +} +func (dst *GetClusterOperationStateRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetClusterOperationStateRequest.Merge(dst, src) +} +func (m *GetClusterOperationStateRequest) XXX_Size() int { + return xxx_messageInfo_GetClusterOperationStateRequest.Size(m) +} +func (m *GetClusterOperationStateRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GetClusterOperationStateRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_GetClusterOperationStateRequest proto.InternalMessageInfo func (m *GetClusterOperationStateRequest) GetId() string { if m != nil { @@ -276,16 +395,36 @@ func (m *GetClusterOperationStateRequest) GetId() string { } type GetClusterOperationStateResponse struct { - State ClusterOperationState `protobuf:"varint,1,opt,name=state,enum=automation.ClusterOperationState" json:"state,omitempty"` + State ClusterOperationState `protobuf:"varint,1,opt,name=state,enum=automation.ClusterOperationState" json:"state,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *GetClusterOperationStateResponse) Reset() { *m = GetClusterOperationStateResponse{} } func (m *GetClusterOperationStateResponse) String() string { return proto.CompactTextString(m) } func (*GetClusterOperationStateResponse) ProtoMessage() {} func (*GetClusterOperationStateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{6} + return fileDescriptor_automation_7092712054bc689e, []int{6} +} +func (m *GetClusterOperationStateResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetClusterOperationStateResponse.Unmarshal(m, b) +} +func (m *GetClusterOperationStateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetClusterOperationStateResponse.Marshal(b, m, deterministic) +} +func (dst *GetClusterOperationStateResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetClusterOperationStateResponse.Merge(dst, src) +} +func (m *GetClusterOperationStateResponse) XXX_Size() int { + return xxx_messageInfo_GetClusterOperationStateResponse.Size(m) +} +func (m *GetClusterOperationStateResponse) XXX_DiscardUnknown() { + xxx_messageInfo_GetClusterOperationStateResponse.DiscardUnknown(m) } +var xxx_messageInfo_GetClusterOperationStateResponse proto.InternalMessageInfo + func (m *GetClusterOperationStateResponse) GetState() ClusterOperationState { if m != nil { return m.State @@ -294,15 +433,35 @@ func (m *GetClusterOperationStateResponse) GetState() ClusterOperationState { } type GetClusterOperationDetailsRequest struct { - Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"` + Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *GetClusterOperationDetailsRequest) Reset() { *m = GetClusterOperationDetailsRequest{} } func (m *GetClusterOperationDetailsRequest) String() string { return proto.CompactTextString(m) } func (*GetClusterOperationDetailsRequest) ProtoMessage() {} func (*GetClusterOperationDetailsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{7} + return fileDescriptor_automation_7092712054bc689e, []int{7} +} +func (m *GetClusterOperationDetailsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetClusterOperationDetailsRequest.Unmarshal(m, b) +} +func (m *GetClusterOperationDetailsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetClusterOperationDetailsRequest.Marshal(b, m, deterministic) +} +func (dst *GetClusterOperationDetailsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetClusterOperationDetailsRequest.Merge(dst, src) +} +func (m *GetClusterOperationDetailsRequest) XXX_Size() int { + return xxx_messageInfo_GetClusterOperationDetailsRequest.Size(m) } +func (m *GetClusterOperationDetailsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GetClusterOperationDetailsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_GetClusterOperationDetailsRequest proto.InternalMessageInfo func (m *GetClusterOperationDetailsRequest) GetId() string { if m != nil { @@ -313,15 +472,35 @@ func (m *GetClusterOperationDetailsRequest) GetId() string { type GetClusterOperationDetailsResponse struct { // Full snapshot of the execution e.g. including output of each task. - ClusterOp *ClusterOperation `protobuf:"bytes,2,opt,name=cluster_op,json=clusterOp" json:"cluster_op,omitempty"` + ClusterOp *ClusterOperation `protobuf:"bytes,2,opt,name=cluster_op,json=clusterOp" json:"cluster_op,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *GetClusterOperationDetailsResponse) Reset() { *m = GetClusterOperationDetailsResponse{} } func (m *GetClusterOperationDetailsResponse) String() string { return proto.CompactTextString(m) } func (*GetClusterOperationDetailsResponse) ProtoMessage() {} func (*GetClusterOperationDetailsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{8} + return fileDescriptor_automation_7092712054bc689e, []int{8} +} +func (m *GetClusterOperationDetailsResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetClusterOperationDetailsResponse.Unmarshal(m, b) +} +func (m *GetClusterOperationDetailsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetClusterOperationDetailsResponse.Marshal(b, m, deterministic) } +func (dst *GetClusterOperationDetailsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetClusterOperationDetailsResponse.Merge(dst, src) +} +func (m *GetClusterOperationDetailsResponse) XXX_Size() int { + return xxx_messageInfo_GetClusterOperationDetailsResponse.Size(m) +} +func (m *GetClusterOperationDetailsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_GetClusterOperationDetailsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_GetClusterOperationDetailsResponse proto.InternalMessageInfo func (m *GetClusterOperationDetailsResponse) GetClusterOp() *ClusterOperation { if m != nil { @@ -334,7 +513,9 @@ func init() { proto.RegisterType((*ClusterOperation)(nil), "automation.ClusterOperation") proto.RegisterType((*TaskContainer)(nil), "automation.TaskContainer") proto.RegisterType((*Task)(nil), "automation.Task") + proto.RegisterMapType((map[string]string)(nil), "automation.Task.ParametersEntry") proto.RegisterType((*EnqueueClusterOperationRequest)(nil), "automation.EnqueueClusterOperationRequest") + proto.RegisterMapType((map[string]string)(nil), "automation.EnqueueClusterOperationRequest.ParametersEntry") proto.RegisterType((*EnqueueClusterOperationResponse)(nil), "automation.EnqueueClusterOperationResponse") proto.RegisterType((*GetClusterOperationStateRequest)(nil), "automation.GetClusterOperationStateRequest") proto.RegisterType((*GetClusterOperationStateResponse)(nil), "automation.GetClusterOperationStateResponse") @@ -344,44 +525,45 @@ func init() { proto.RegisterEnum("automation.TaskState", TaskState_name, TaskState_value) } -func init() { proto.RegisterFile("automation.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 562 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x94, 0xdb, 0x6a, 0xdb, 0x4c, - 0x14, 0x85, 0x7f, 0xc9, 0x87, 0xbf, 0xde, 0x6a, 0x1c, 0x31, 0x34, 0x46, 0x09, 0x4d, 0x23, 0xab, - 0x37, 0x26, 0x05, 0x43, 0x9d, 0x8b, 0x94, 0xb4, 0x85, 0x1a, 0x5b, 0x84, 0xe0, 0x22, 0x85, 0xb1, - 0x4c, 0xa1, 0xbd, 0x30, 0x53, 0x67, 0x2e, 0x54, 0xcb, 0x92, 0x32, 0x33, 0x2a, 0xf8, 0x05, 0xfa, - 0x10, 0x7d, 0x89, 0x3e, 0x4a, 0x5f, 0xa9, 0xe8, 0x64, 0xcb, 0xf2, 0x01, 0x4a, 0xef, 0x34, 0x5b, - 0x6b, 0xaf, 0xbd, 0xe6, 0xb3, 0xb7, 0x40, 0x25, 0x91, 0x08, 0x16, 0x44, 0xb8, 0x81, 0xdf, 0x0d, - 0x59, 0x20, 0x02, 0x04, 0xeb, 0x8a, 0xf1, 0x4b, 0x02, 0x75, 0xe0, 0x45, 0x5c, 0x50, 0x66, 0x87, - 0x94, 0x25, 0x45, 0xd4, 0x04, 0xd9, 0x7d, 0xd0, 0x24, 0x5d, 0xea, 0x34, 0xb0, 0xec, 0x3e, 0xa0, - 0x77, 0xf0, 0x94, 0x53, 0xe6, 0x12, 0x6f, 0x2a, 0x08, 0x9f, 0x73, 0x4d, 0xd6, 0x2b, 0x1d, 0xa5, - 0x77, 0xda, 0x2d, 0x38, 0x3b, 0x84, 0xcf, 0x07, 0x81, 0x2f, 0x88, 0xeb, 0x53, 0x86, 0x95, 0x54, - 0x1e, 0x17, 0x39, 0xba, 0x86, 0x1a, 0x17, 0x44, 0x50, 0xad, 0xa2, 0x4b, 0x9d, 0x66, 0xaf, 0x5d, - 0x6c, 0x2b, 0x8f, 0x1e, 0xc7, 0x42, 0x9c, 0xea, 0xd1, 0x33, 0xa8, 0x51, 0xc6, 0x02, 0xa6, 0x55, - 0x93, 0x24, 0xe9, 0xc1, 0xf8, 0x06, 0x47, 0x1b, 0xc3, 0xd0, 0x35, 0x34, 0x43, 0xc2, 0x88, 0xe7, - 0xd1, 0x3c, 0x9f, 0x94, 0xe4, 0x53, 0xcb, 0xf9, 0xf0, 0x51, 0xae, 0x4b, 0x83, 0xe9, 0xa0, 0xcc, - 0x02, 0x7f, 0x16, 0x31, 0x46, 0xfd, 0xd9, 0x52, 0x93, 0x75, 0xa9, 0x53, 0xc3, 0xc5, 0x92, 0xf1, - 0x43, 0x86, 0x6a, 0xac, 0x45, 0x08, 0xaa, 0x3e, 0x59, 0xd0, 0x8c, 0x49, 0xf2, 0x8c, 0x3e, 0x00, - 0xc4, 0x7e, 0x0b, 0x2a, 0x28, 0xcb, 0x99, 0xe8, 0xe5, 0x99, 0xdd, 0xfb, 0x95, 0xc4, 0xf4, 0x05, - 0x5b, 0xe2, 0x42, 0x4f, 0xc6, 0xb9, 0xb2, 0xe2, 0xfc, 0x2a, 0x27, 0x55, 0x4d, 0x48, 0x9d, 0x94, - 0xcd, 0x36, 0xe8, 0xb4, 0xa0, 0x1e, 0x44, 0x22, 0x8c, 0x84, 0x56, 0x4b, 0x0c, 0xb2, 0xd3, 0x9a, - 0x5a, 0xbd, 0x40, 0xed, 0xec, 0x3d, 0x1c, 0x97, 0x92, 0x20, 0x15, 0x2a, 0x73, 0xba, 0xcc, 0xae, - 0x14, 0x3f, 0xc6, 0xad, 0xdf, 0x89, 0x17, 0xd1, 0x04, 0x45, 0x03, 0xa7, 0x87, 0x1b, 0xf9, 0x8d, - 0x64, 0xfc, 0x96, 0xe0, 0x85, 0xe9, 0x3f, 0x46, 0x34, 0xa2, 0xe5, 0x9f, 0x0c, 0xd3, 0xc7, 0x88, - 0x72, 0xb1, 0x13, 0xd1, 0xe7, 0x1d, 0x88, 0x6e, 0x8a, 0xb7, 0x3a, 0xec, 0x79, 0x08, 0xde, 0xbf, - 0xde, 0xe8, 0x35, 0x5c, 0xec, 0x1d, 0xce, 0xc3, 0xc0, 0xe7, 0xb4, 0xbc, 0x06, 0x71, 0xcb, 0x2d, - 0x15, 0xbb, 0xff, 0xb2, 0x19, 0x84, 0x72, 0xcb, 0x17, 0xd0, 0xf7, 0xb7, 0x64, 0x63, 0x56, 0xfb, - 0x21, 0xfd, 0xdd, 0x7e, 0x18, 0x57, 0xd0, 0xde, 0x61, 0x3e, 0xa4, 0x82, 0xb8, 0x1e, 0xdf, 0x97, - 0x88, 0x80, 0x71, 0xa8, 0x29, 0xcb, 0xf4, 0x16, 0x60, 0x96, 0x4a, 0xa6, 0x41, 0x98, 0xc0, 0x53, - 0x7a, 0xcf, 0x0f, 0x05, 0xc3, 0x8d, 0x59, 0x5e, 0xb9, 0xfc, 0x29, 0xc1, 0xc9, 0xce, 0xe0, 0xe8, - 0x25, 0x5c, 0x4c, 0xac, 0x91, 0x65, 0x7f, 0xb2, 0xa6, 0x83, 0x8f, 0x93, 0xb1, 0x63, 0xe2, 0xa9, - 0x7d, 0x6f, 0xe2, 0xbe, 0x73, 0x67, 0x5b, 0xd3, 0xb1, 0xd3, 0x77, 0x4c, 0xf5, 0x3f, 0xd4, 0x86, - 0xf3, 0xed, 0x97, 0x96, 0xed, 0xc4, 0x02, 0xec, 0x98, 0x43, 0x55, 0x42, 0xe7, 0x70, 0xba, 0x2d, - 0xc1, 0x13, 0xcb, 0xba, 0xb3, 0x6e, 0x55, 0x19, 0x9d, 0x41, 0x6b, 0xfb, 0xf5, 0xd0, 0xb6, 0x4c, - 0xb5, 0x72, 0x39, 0x82, 0xc6, 0x6a, 0x95, 0x50, 0x0b, 0x50, 0x9e, 0xc7, 0xe9, 0x8f, 0x47, 0xab, - 0x08, 0xc7, 0xa0, 0x6c, 0x0e, 0x54, 0xe0, 0xff, 0xb5, 0xfd, 0x13, 0xa8, 0xa6, 0x66, 0x5f, 0xeb, - 0xc9, 0x07, 0xf5, 0xea, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x8f, 0x42, 0xc7, 0x06, 0x64, 0x05, - 0x00, 0x00, +func init() { proto.RegisterFile("automation.proto", fileDescriptor_automation_7092712054bc689e) } + +var fileDescriptor_automation_7092712054bc689e = []byte{ + // 588 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x94, 0xdd, 0x6e, 0xd3, 0x3e, + 0x18, 0xc6, 0xff, 0x49, 0xdb, 0xfd, 0xe9, 0x1b, 0xb6, 0x45, 0x16, 0x9b, 0xb2, 0x89, 0xb1, 0x2c, + 0x1c, 0x50, 0x86, 0xd4, 0x8a, 0xed, 0x60, 0x68, 0x80, 0xc4, 0xd8, 0xa2, 0x69, 0x1a, 0x4a, 0x26, + 0x37, 0x13, 0xd2, 0x38, 0xa8, 0x4c, 0x67, 0xa1, 0xd0, 0x34, 0xce, 0x6c, 0xa7, 0x52, 0x6f, 0x80, + 0x8b, 0xe0, 0x26, 0xb8, 0x14, 0x6e, 0x09, 0xe5, 0xab, 0x4d, 0xd3, 0x0f, 0x09, 0x71, 0x66, 0xbf, + 0x7e, 0xde, 0xe7, 0x7d, 0xfc, 0x6b, 0x1d, 0xd0, 0x49, 0x2c, 0xd9, 0x90, 0x48, 0x9f, 0x85, 0xed, + 0x88, 0x33, 0xc9, 0x10, 0x4c, 0x2b, 0xd6, 0x2f, 0x05, 0xf4, 0xf3, 0x20, 0x16, 0x92, 0x72, 0x37, + 0xa2, 0x3c, 0x2d, 0xa2, 0x0d, 0x50, 0xfd, 0x7b, 0x43, 0x31, 0x95, 0x56, 0x13, 0xab, 0xfe, 0x3d, + 0x7a, 0x07, 0x8f, 0x05, 0xe5, 0x3e, 0x09, 0x7a, 0x92, 0x88, 0x81, 0x30, 0x54, 0xb3, 0xd6, 0xd2, + 0x8e, 0x76, 0xda, 0x25, 0x67, 0x8f, 0x88, 0xc1, 0x39, 0x0b, 0x25, 0xf1, 0x43, 0xca, 0xb1, 0x96, + 0xc9, 0x93, 0xa2, 0x40, 0x27, 0xd0, 0x10, 0x92, 0x48, 0x6a, 0xd4, 0x4c, 0xa5, 0xb5, 0x71, 0x74, + 0x50, 0x6e, 0xab, 0x8e, 0xee, 0x26, 0x42, 0x9c, 0xe9, 0xd1, 0x13, 0x68, 0x50, 0xce, 0x19, 0x37, + 0xea, 0x69, 0x92, 0x6c, 0x63, 0x7d, 0x87, 0xf5, 0x99, 0x61, 0xe8, 0x04, 0x36, 0x22, 0xc2, 0x49, + 0x10, 0xd0, 0x22, 0x9f, 0x92, 0xe6, 0xd3, 0xab, 0xf9, 0xf0, 0x7a, 0xa1, 0xcb, 0x82, 0x99, 0xa0, + 0xf5, 0x59, 0xd8, 0x8f, 0x39, 0xa7, 0x61, 0x7f, 0x6c, 0xa8, 0xa6, 0xd2, 0x6a, 0xe0, 0x72, 0xc9, + 0xfa, 0xa1, 0x42, 0x3d, 0xd1, 0x22, 0x04, 0xf5, 0x90, 0x0c, 0x69, 0xce, 0x24, 0x5d, 0xa3, 0x0f, + 0x00, 0x89, 0xdf, 0x90, 0x4a, 0xca, 0x0b, 0x26, 0x66, 0x75, 0x66, 0xfb, 0x66, 0x22, 0xb1, 0x43, + 0xc9, 0xc7, 0xb8, 0xd4, 0x93, 0x73, 0xae, 0x4d, 0x38, 0xbf, 0x2a, 0x48, 0xd5, 0x53, 0x52, 0x5b, + 0x55, 0xb3, 0x19, 0x3a, 0xdb, 0xb0, 0xc6, 0x62, 0x19, 0xc5, 0xd2, 0x68, 0xa4, 0x06, 0xf9, 0x6e, + 0x4a, 0x6d, 0xad, 0x44, 0x6d, 0xf7, 0x3d, 0x6c, 0x56, 0x92, 0x20, 0x1d, 0x6a, 0x03, 0x3a, 0xce, + 0xaf, 0x94, 0x2c, 0x93, 0xd6, 0x11, 0x09, 0x62, 0x9a, 0xa2, 0x68, 0xe2, 0x6c, 0x73, 0xaa, 0xbe, + 0x51, 0xac, 0xdf, 0x0a, 0x3c, 0xb3, 0xc3, 0x87, 0x98, 0xc6, 0xb4, 0xfa, 0x93, 0x61, 0xfa, 0x10, + 0x53, 0x21, 0x17, 0x22, 0xba, 0x5b, 0x80, 0xe8, 0xb4, 0x7c, 0xab, 0xd5, 0x9e, 0xab, 0xe0, 0xfd, + 0xeb, 0x8d, 0x5e, 0xc3, 0xfe, 0xd2, 0xe1, 0x22, 0x62, 0xa1, 0xa0, 0xd5, 0x67, 0x90, 0xb4, 0x5c, + 0x52, 0xb9, 0xf8, 0x2f, 0x9b, 0x43, 0xa8, 0xb6, 0x7c, 0x01, 0x73, 0x79, 0x4b, 0x3e, 0x66, 0xf2, + 0x3e, 0x94, 0xbf, 0x7b, 0x1f, 0xd6, 0x31, 0x1c, 0x2c, 0x30, 0xbf, 0xa0, 0x92, 0xf8, 0x81, 0x58, + 0x96, 0x88, 0x80, 0xb5, 0xaa, 0x29, 0xcf, 0xf4, 0x16, 0xa0, 0x9f, 0x49, 0x7a, 0x2c, 0x4a, 0xe1, + 0x69, 0x47, 0x4f, 0x57, 0x05, 0xc3, 0xcd, 0x7e, 0x51, 0x39, 0xfc, 0xa9, 0xc0, 0xd6, 0xc2, 0xe0, + 0xe8, 0x39, 0xec, 0xdf, 0x3a, 0xd7, 0x8e, 0xfb, 0xd9, 0xe9, 0x9d, 0x7f, 0xba, 0xed, 0x7a, 0x36, + 0xee, 0xb9, 0x37, 0x36, 0x3e, 0xf3, 0xae, 0x5c, 0xa7, 0xd7, 0xf5, 0xce, 0x3c, 0x5b, 0xff, 0x0f, + 0x1d, 0xc0, 0xde, 0xfc, 0xa1, 0xe3, 0x7a, 0x89, 0x00, 0x7b, 0xf6, 0x85, 0xae, 0xa0, 0x3d, 0xd8, + 0x99, 0x97, 0xe0, 0x5b, 0xc7, 0xb9, 0x72, 0x2e, 0x75, 0x15, 0xed, 0xc2, 0xf6, 0xfc, 0xf1, 0x85, + 0xeb, 0xd8, 0x7a, 0xed, 0xf0, 0x1a, 0x9a, 0x93, 0xa7, 0x84, 0xb6, 0x01, 0x15, 0x79, 0xbc, 0xb3, + 0xee, 0xf5, 0x24, 0xc2, 0x26, 0x68, 0xb3, 0x03, 0x35, 0xf8, 0x7f, 0x6a, 0xff, 0x08, 0xea, 0x99, + 0xd9, 0xc7, 0x97, 0x77, 0x2f, 0x46, 0xbe, 0xa4, 0x42, 0xb4, 0x7d, 0xd6, 0xc9, 0x56, 0x9d, 0x6f, + 0xac, 0x33, 0x92, 0x9d, 0xf4, 0x4b, 0xdb, 0x99, 0x02, 0xfb, 0xba, 0x96, 0x56, 0x8e, 0xff, 0x04, + 0x00, 0x00, 0xff, 0xff, 0xa0, 0x42, 0x72, 0x53, 0x8f, 0x05, 0x00, 0x00, } diff --git a/go/vt/proto/automationservice/automationservice.pb.go b/go/vt/proto/automationservice/automationservice.pb.go index a4910d720d6..5cb974fe48a 100644 --- a/go/vt/proto/automationservice/automationservice.pb.go +++ b/go/vt/proto/automationservice/automationservice.pb.go @@ -1,15 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: automationservice.proto -/* -Package automationservice is a generated protocol buffer package. - -It is generated from these files: - automationservice.proto - -It has these top-level messages: -*/ -package automationservice +package automationservice // import "vitess.io/vitess/go/vt/proto/automationservice" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -143,10 +135,12 @@ var _Automation_serviceDesc = grpc.ServiceDesc{ Metadata: "automationservice.proto", } -func init() { proto.RegisterFile("automationservice.proto", fileDescriptor0) } +func init() { + proto.RegisterFile("automationservice.proto", fileDescriptor_automationservice_42ff8d484b987c6f) +} -var fileDescriptor0 = []byte{ - // 150 bytes of a gzipped FileDescriptorProto +var fileDescriptor_automationservice_42ff8d484b987c6f = []byte{ + // 178 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4f, 0x2c, 0x2d, 0xc9, 0xcf, 0x4d, 0x2c, 0xc9, 0xcc, 0xcf, 0x2b, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0xc4, 0x90, 0x90, 0x12, 0x40, 0x08, 0x41, 0x14, 0x19, 0x35, 0x32, @@ -155,6 +149,8 @@ var fileDescriptor0 = []byte{ 0x9a, 0x71, 0x28, 0x0a, 0x4a, 0x2d, 0x2c, 0x4d, 0x2d, 0x2e, 0x91, 0xd2, 0x26, 0x4a, 0x6d, 0x71, 0x01, 0xc8, 0x65, 0x4a, 0x0c, 0x42, 0xb5, 0x5c, 0x52, 0xee, 0xa9, 0x25, 0xe8, 0x0a, 0x5c, 0x52, 0x4b, 0x12, 0x33, 0x73, 0x8a, 0x85, 0x74, 0x91, 0x0d, 0xc3, 0xad, 0x0e, 0x66, 0xb7, 0x1e, 0xb1, - 0xca, 0x61, 0xd6, 0x27, 0xb1, 0x81, 0x83, 0xc2, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x1a, 0x3e, - 0xd2, 0x25, 0x4a, 0x01, 0x00, 0x00, + 0xca, 0x61, 0xd6, 0x3b, 0x19, 0x44, 0xe9, 0x95, 0x65, 0x96, 0xa4, 0x16, 0x17, 0xeb, 0x65, 0xe6, + 0xeb, 0x43, 0x58, 0xfa, 0xe9, 0xf9, 0xfa, 0x65, 0x25, 0xfa, 0xe0, 0x30, 0xd2, 0xc7, 0x08, 0xc7, + 0x24, 0x36, 0xb0, 0x84, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x8f, 0x4a, 0x9d, 0xc0, 0x7c, 0x01, + 0x00, 0x00, } diff --git a/go/vt/proto/binlogdata/binlogdata.pb.go b/go/vt/proto/binlogdata/binlogdata.pb.go index 89ce9259407..1e56d779b32 100644 --- a/go/vt/proto/binlogdata/binlogdata.pb.go +++ b/go/vt/proto/binlogdata/binlogdata.pb.go @@ -1,21 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: binlogdata.proto -/* -Package binlogdata is a generated protocol buffer package. - -It is generated from these files: - binlogdata.proto - -It has these top-level messages: - Charset - BinlogTransaction - StreamKeyRangeRequest - StreamKeyRangeResponse - StreamTablesRequest - StreamTablesResponse -*/ -package binlogdata +package binlogdata // import "vitess.io/vitess/go/vt/proto/binlogdata" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -79,7 +65,7 @@ func (x BinlogTransaction_Statement_Category) String() string { return proto.EnumName(BinlogTransaction_Statement_Category_name, int32(x)) } func (BinlogTransaction_Statement_Category) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{1, 0, 0} + return fileDescriptor_binlogdata_ccae9945406a9695, []int{1, 0, 0} } // Charset is the per-statement charset info from a QUERY_EVENT binlog entry. @@ -89,13 +75,35 @@ type Charset struct { // @@session.collation_connection Conn int32 `protobuf:"varint,2,opt,name=conn" json:"conn,omitempty"` // @@session.collation_server - Server int32 `protobuf:"varint,3,opt,name=server" json:"server,omitempty"` + Server int32 `protobuf:"varint,3,opt,name=server" json:"server,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *Charset) Reset() { *m = Charset{} } -func (m *Charset) String() string { return proto.CompactTextString(m) } -func (*Charset) ProtoMessage() {} -func (*Charset) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (m *Charset) Reset() { *m = Charset{} } +func (m *Charset) String() string { return proto.CompactTextString(m) } +func (*Charset) ProtoMessage() {} +func (*Charset) Descriptor() ([]byte, []int) { + return fileDescriptor_binlogdata_ccae9945406a9695, []int{0} +} +func (m *Charset) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Charset.Unmarshal(m, b) +} +func (m *Charset) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Charset.Marshal(b, m, deterministic) +} +func (dst *Charset) XXX_Merge(src proto.Message) { + xxx_messageInfo_Charset.Merge(dst, src) +} +func (m *Charset) XXX_Size() int { + return xxx_messageInfo_Charset.Size(m) +} +func (m *Charset) XXX_DiscardUnknown() { + xxx_messageInfo_Charset.DiscardUnknown(m) +} + +var xxx_messageInfo_Charset proto.InternalMessageInfo func (m *Charset) GetClient() int32 { if m != nil { @@ -124,13 +132,35 @@ type BinlogTransaction struct { // the statements in this transaction Statements []*BinlogTransaction_Statement `protobuf:"bytes,1,rep,name=statements" json:"statements,omitempty"` // The Event Token for this event. - EventToken *query.EventToken `protobuf:"bytes,4,opt,name=event_token,json=eventToken" json:"event_token,omitempty"` + EventToken *query.EventToken `protobuf:"bytes,4,opt,name=event_token,json=eventToken" json:"event_token,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *BinlogTransaction) Reset() { *m = BinlogTransaction{} } -func (m *BinlogTransaction) String() string { return proto.CompactTextString(m) } -func (*BinlogTransaction) ProtoMessage() {} -func (*BinlogTransaction) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +func (m *BinlogTransaction) Reset() { *m = BinlogTransaction{} } +func (m *BinlogTransaction) String() string { return proto.CompactTextString(m) } +func (*BinlogTransaction) ProtoMessage() {} +func (*BinlogTransaction) Descriptor() ([]byte, []int) { + return fileDescriptor_binlogdata_ccae9945406a9695, []int{1} +} +func (m *BinlogTransaction) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BinlogTransaction.Unmarshal(m, b) +} +func (m *BinlogTransaction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BinlogTransaction.Marshal(b, m, deterministic) +} +func (dst *BinlogTransaction) XXX_Merge(src proto.Message) { + xxx_messageInfo_BinlogTransaction.Merge(dst, src) +} +func (m *BinlogTransaction) XXX_Size() int { + return xxx_messageInfo_BinlogTransaction.Size(m) +} +func (m *BinlogTransaction) XXX_DiscardUnknown() { + xxx_messageInfo_BinlogTransaction.DiscardUnknown(m) +} + +var xxx_messageInfo_BinlogTransaction proto.InternalMessageInfo func (m *BinlogTransaction) GetStatements() []*BinlogTransaction_Statement { if m != nil { @@ -152,13 +182,35 @@ type BinlogTransaction_Statement struct { // charset of this statement, if different from pre-negotiated default. Charset *Charset `protobuf:"bytes,2,opt,name=charset" json:"charset,omitempty"` // the sql - Sql []byte `protobuf:"bytes,3,opt,name=sql,proto3" json:"sql,omitempty"` + Sql []byte `protobuf:"bytes,3,opt,name=sql,proto3" json:"sql,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *BinlogTransaction_Statement) Reset() { *m = BinlogTransaction_Statement{} } +func (m *BinlogTransaction_Statement) String() string { return proto.CompactTextString(m) } +func (*BinlogTransaction_Statement) ProtoMessage() {} +func (*BinlogTransaction_Statement) Descriptor() ([]byte, []int) { + return fileDescriptor_binlogdata_ccae9945406a9695, []int{1, 0} +} +func (m *BinlogTransaction_Statement) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BinlogTransaction_Statement.Unmarshal(m, b) +} +func (m *BinlogTransaction_Statement) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BinlogTransaction_Statement.Marshal(b, m, deterministic) +} +func (dst *BinlogTransaction_Statement) XXX_Merge(src proto.Message) { + xxx_messageInfo_BinlogTransaction_Statement.Merge(dst, src) +} +func (m *BinlogTransaction_Statement) XXX_Size() int { + return xxx_messageInfo_BinlogTransaction_Statement.Size(m) +} +func (m *BinlogTransaction_Statement) XXX_DiscardUnknown() { + xxx_messageInfo_BinlogTransaction_Statement.DiscardUnknown(m) } -func (m *BinlogTransaction_Statement) Reset() { *m = BinlogTransaction_Statement{} } -func (m *BinlogTransaction_Statement) String() string { return proto.CompactTextString(m) } -func (*BinlogTransaction_Statement) ProtoMessage() {} -func (*BinlogTransaction_Statement) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1, 0} } +var xxx_messageInfo_BinlogTransaction_Statement proto.InternalMessageInfo func (m *BinlogTransaction_Statement) GetCategory() BinlogTransaction_Statement_Category { if m != nil { @@ -188,13 +240,35 @@ type StreamKeyRangeRequest struct { // what to get KeyRange *topodata.KeyRange `protobuf:"bytes,2,opt,name=key_range,json=keyRange" json:"key_range,omitempty"` // default charset on the player side - Charset *Charset `protobuf:"bytes,3,opt,name=charset" json:"charset,omitempty"` + Charset *Charset `protobuf:"bytes,3,opt,name=charset" json:"charset,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *StreamKeyRangeRequest) Reset() { *m = StreamKeyRangeRequest{} } -func (m *StreamKeyRangeRequest) String() string { return proto.CompactTextString(m) } -func (*StreamKeyRangeRequest) ProtoMessage() {} -func (*StreamKeyRangeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } +func (m *StreamKeyRangeRequest) Reset() { *m = StreamKeyRangeRequest{} } +func (m *StreamKeyRangeRequest) String() string { return proto.CompactTextString(m) } +func (*StreamKeyRangeRequest) ProtoMessage() {} +func (*StreamKeyRangeRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_binlogdata_ccae9945406a9695, []int{2} +} +func (m *StreamKeyRangeRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamKeyRangeRequest.Unmarshal(m, b) +} +func (m *StreamKeyRangeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamKeyRangeRequest.Marshal(b, m, deterministic) +} +func (dst *StreamKeyRangeRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamKeyRangeRequest.Merge(dst, src) +} +func (m *StreamKeyRangeRequest) XXX_Size() int { + return xxx_messageInfo_StreamKeyRangeRequest.Size(m) +} +func (m *StreamKeyRangeRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StreamKeyRangeRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_StreamKeyRangeRequest proto.InternalMessageInfo func (m *StreamKeyRangeRequest) GetPosition() string { if m != nil { @@ -219,13 +293,35 @@ func (m *StreamKeyRangeRequest) GetCharset() *Charset { // StreamKeyRangeResponse is the response from StreamKeyRange type StreamKeyRangeResponse struct { - BinlogTransaction *BinlogTransaction `protobuf:"bytes,1,opt,name=binlog_transaction,json=binlogTransaction" json:"binlog_transaction,omitempty"` + BinlogTransaction *BinlogTransaction `protobuf:"bytes,1,opt,name=binlog_transaction,json=binlogTransaction" json:"binlog_transaction,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StreamKeyRangeResponse) Reset() { *m = StreamKeyRangeResponse{} } +func (m *StreamKeyRangeResponse) String() string { return proto.CompactTextString(m) } +func (*StreamKeyRangeResponse) ProtoMessage() {} +func (*StreamKeyRangeResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_binlogdata_ccae9945406a9695, []int{3} +} +func (m *StreamKeyRangeResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamKeyRangeResponse.Unmarshal(m, b) +} +func (m *StreamKeyRangeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamKeyRangeResponse.Marshal(b, m, deterministic) +} +func (dst *StreamKeyRangeResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamKeyRangeResponse.Merge(dst, src) +} +func (m *StreamKeyRangeResponse) XXX_Size() int { + return xxx_messageInfo_StreamKeyRangeResponse.Size(m) +} +func (m *StreamKeyRangeResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StreamKeyRangeResponse.DiscardUnknown(m) } -func (m *StreamKeyRangeResponse) Reset() { *m = StreamKeyRangeResponse{} } -func (m *StreamKeyRangeResponse) String() string { return proto.CompactTextString(m) } -func (*StreamKeyRangeResponse) ProtoMessage() {} -func (*StreamKeyRangeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } +var xxx_messageInfo_StreamKeyRangeResponse proto.InternalMessageInfo func (m *StreamKeyRangeResponse) GetBinlogTransaction() *BinlogTransaction { if m != nil { @@ -241,13 +337,35 @@ type StreamTablesRequest struct { // what to get Tables []string `protobuf:"bytes,2,rep,name=tables" json:"tables,omitempty"` // default charset on the player side - Charset *Charset `protobuf:"bytes,3,opt,name=charset" json:"charset,omitempty"` + Charset *Charset `protobuf:"bytes,3,opt,name=charset" json:"charset,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StreamTablesRequest) Reset() { *m = StreamTablesRequest{} } +func (m *StreamTablesRequest) String() string { return proto.CompactTextString(m) } +func (*StreamTablesRequest) ProtoMessage() {} +func (*StreamTablesRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_binlogdata_ccae9945406a9695, []int{4} +} +func (m *StreamTablesRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamTablesRequest.Unmarshal(m, b) +} +func (m *StreamTablesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamTablesRequest.Marshal(b, m, deterministic) +} +func (dst *StreamTablesRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamTablesRequest.Merge(dst, src) +} +func (m *StreamTablesRequest) XXX_Size() int { + return xxx_messageInfo_StreamTablesRequest.Size(m) +} +func (m *StreamTablesRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StreamTablesRequest.DiscardUnknown(m) } -func (m *StreamTablesRequest) Reset() { *m = StreamTablesRequest{} } -func (m *StreamTablesRequest) String() string { return proto.CompactTextString(m) } -func (*StreamTablesRequest) ProtoMessage() {} -func (*StreamTablesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} } +var xxx_messageInfo_StreamTablesRequest proto.InternalMessageInfo func (m *StreamTablesRequest) GetPosition() string { if m != nil { @@ -272,13 +390,35 @@ func (m *StreamTablesRequest) GetCharset() *Charset { // StreamTablesResponse is the response from StreamTables type StreamTablesResponse struct { - BinlogTransaction *BinlogTransaction `protobuf:"bytes,1,opt,name=binlog_transaction,json=binlogTransaction" json:"binlog_transaction,omitempty"` + BinlogTransaction *BinlogTransaction `protobuf:"bytes,1,opt,name=binlog_transaction,json=binlogTransaction" json:"binlog_transaction,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StreamTablesResponse) Reset() { *m = StreamTablesResponse{} } +func (m *StreamTablesResponse) String() string { return proto.CompactTextString(m) } +func (*StreamTablesResponse) ProtoMessage() {} +func (*StreamTablesResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_binlogdata_ccae9945406a9695, []int{5} +} +func (m *StreamTablesResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamTablesResponse.Unmarshal(m, b) +} +func (m *StreamTablesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamTablesResponse.Marshal(b, m, deterministic) +} +func (dst *StreamTablesResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamTablesResponse.Merge(dst, src) +} +func (m *StreamTablesResponse) XXX_Size() int { + return xxx_messageInfo_StreamTablesResponse.Size(m) +} +func (m *StreamTablesResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StreamTablesResponse.DiscardUnknown(m) } -func (m *StreamTablesResponse) Reset() { *m = StreamTablesResponse{} } -func (m *StreamTablesResponse) String() string { return proto.CompactTextString(m) } -func (*StreamTablesResponse) ProtoMessage() {} -func (*StreamTablesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } +var xxx_messageInfo_StreamTablesResponse proto.InternalMessageInfo func (m *StreamTablesResponse) GetBinlogTransaction() *BinlogTransaction { if m != nil { @@ -298,42 +438,44 @@ func init() { proto.RegisterEnum("binlogdata.BinlogTransaction_Statement_Category", BinlogTransaction_Statement_Category_name, BinlogTransaction_Statement_Category_value) } -func init() { proto.RegisterFile("binlogdata.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 540 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0x5d, 0x6e, 0xda, 0x40, - 0x10, 0xae, 0xb1, 0x43, 0xec, 0x71, 0x9a, 0x2c, 0x9b, 0x26, 0xb2, 0x90, 0x2a, 0x21, 0xbf, 0x94, - 0x97, 0xba, 0x95, 0x7b, 0x02, 0x6c, 0xaf, 0x10, 0xc9, 0x02, 0xd1, 0xe2, 0xbc, 0xf4, 0xc5, 0x32, - 0x64, 0x4b, 0x11, 0xc4, 0x06, 0xef, 0x26, 0x2a, 0xe7, 0xe8, 0x29, 0x7a, 0x91, 0xde, 0xa4, 0xf7, - 0xa8, 0xfc, 0x83, 0xa1, 0xa9, 0xd4, 0xa6, 0x0f, 0x7d, 0x9b, 0x6f, 0xe6, 0x9b, 0x6f, 0x66, 0x3e, - 0xaf, 0x0c, 0x68, 0xba, 0x48, 0x56, 0xe9, 0xfc, 0x2e, 0x96, 0xb1, 0xb3, 0xce, 0x52, 0x99, 0x62, - 0xd8, 0x67, 0xda, 0xe6, 0xe6, 0x81, 0x67, 0xdb, 0xb2, 0xd0, 0x3e, 0x95, 0xe9, 0x3a, 0xdd, 0x13, - 0xed, 0x21, 0x1c, 0xfb, 0x9f, 0xe3, 0x4c, 0x70, 0x89, 0x2f, 0xa1, 0x39, 0x5b, 0x2d, 0x78, 0x22, - 0x2d, 0xa5, 0xa3, 0x74, 0x8f, 0x58, 0x85, 0x30, 0x06, 0x6d, 0x96, 0x26, 0x89, 0xd5, 0x28, 0xb2, - 0x45, 0x9c, 0x73, 0x05, 0xcf, 0x1e, 0x79, 0x66, 0xa9, 0x25, 0xb7, 0x44, 0xf6, 0x0f, 0x15, 0x5a, - 0x5e, 0x31, 0x3a, 0xcc, 0xe2, 0x44, 0xc4, 0x33, 0xb9, 0x48, 0x13, 0xdc, 0x07, 0x10, 0x32, 0x96, - 0xfc, 0x9e, 0x27, 0x52, 0x58, 0x4a, 0x47, 0xed, 0x9a, 0xee, 0x1b, 0xe7, 0x60, 0xe9, 0xdf, 0x5a, - 0x9c, 0xc9, 0x8e, 0xcf, 0x0e, 0x5a, 0xb1, 0x0b, 0x26, 0x7f, 0xe4, 0x89, 0x8c, 0x64, 0xba, 0xe4, - 0x89, 0xa5, 0x75, 0x94, 0xae, 0xe9, 0xb6, 0x9c, 0xf2, 0x40, 0x92, 0x57, 0xc2, 0xbc, 0xc0, 0x80, - 0xd7, 0x71, 0xfb, 0x7b, 0x03, 0x8c, 0x5a, 0x0d, 0x53, 0xd0, 0x67, 0xb1, 0xe4, 0xf3, 0x34, 0xdb, - 0x16, 0x67, 0x9e, 0xba, 0xef, 0x9f, 0xb9, 0x88, 0xe3, 0x57, 0x7d, 0xac, 0x56, 0xc0, 0x6f, 0xe1, - 0x78, 0x56, 0xba, 0x57, 0xb8, 0x63, 0xba, 0xe7, 0x87, 0x62, 0x95, 0xb1, 0x6c, 0xc7, 0xc1, 0x08, - 0x54, 0xb1, 0x59, 0x15, 0x96, 0x9d, 0xb0, 0x3c, 0xb4, 0xbf, 0x29, 0xa0, 0xef, 0x74, 0xf1, 0x39, - 0x9c, 0x79, 0x34, 0xba, 0x1d, 0x31, 0xe2, 0x8f, 0xfb, 0xa3, 0xc1, 0x47, 0x12, 0xa0, 0x17, 0xf8, - 0x04, 0x74, 0x8f, 0x46, 0x1e, 0xe9, 0x0f, 0x46, 0x48, 0xc1, 0x2f, 0xc1, 0xf0, 0x68, 0xe4, 0x8f, - 0x87, 0xc3, 0x41, 0x88, 0x1a, 0xf8, 0x0c, 0x4c, 0x8f, 0x46, 0x6c, 0x4c, 0xa9, 0xd7, 0xf3, 0xaf, - 0x91, 0x8a, 0x2f, 0xa0, 0xe5, 0xd1, 0x28, 0x18, 0xd2, 0x28, 0x20, 0x37, 0x8c, 0xf8, 0xbd, 0x90, - 0x04, 0x48, 0xc3, 0x00, 0xcd, 0x3c, 0x1d, 0x50, 0x74, 0x54, 0xc5, 0x13, 0x12, 0xa2, 0x66, 0x25, - 0x37, 0x18, 0x4d, 0x08, 0x0b, 0xd1, 0x71, 0x05, 0x6f, 0x6f, 0x82, 0x5e, 0x48, 0x90, 0x5e, 0xc1, - 0x80, 0x50, 0x12, 0x12, 0x64, 0x5c, 0x69, 0x7a, 0x03, 0xa9, 0x57, 0x9a, 0xae, 0x22, 0xcd, 0xfe, - 0xaa, 0xc0, 0xc5, 0x44, 0x66, 0x3c, 0xbe, 0xbf, 0xe6, 0x5b, 0x16, 0x27, 0x73, 0xce, 0xf8, 0xe6, - 0x81, 0x0b, 0x89, 0xdb, 0xa0, 0xaf, 0x53, 0xb1, 0xc8, 0xbd, 0x2b, 0x0c, 0x36, 0x58, 0x8d, 0xf1, - 0x3b, 0x30, 0x96, 0x7c, 0x1b, 0x65, 0x39, 0xbf, 0x32, 0x0c, 0x3b, 0xf5, 0x83, 0xac, 0x95, 0xf4, - 0x65, 0x15, 0x1d, 0xfa, 0xab, 0xfe, 0xdd, 0x5f, 0xfb, 0x13, 0x5c, 0x3e, 0x5d, 0x4a, 0xac, 0xd3, - 0x44, 0x70, 0x4c, 0x01, 0x97, 0x8d, 0x91, 0xdc, 0x7f, 0xdb, 0x62, 0x3f, 0xd3, 0x7d, 0xfd, 0xc7, - 0x07, 0xc0, 0x5a, 0xd3, 0xa7, 0x29, 0xfb, 0x0b, 0x9c, 0x97, 0x73, 0xc2, 0x78, 0xba, 0xe2, 0xe2, - 0x39, 0xa7, 0x5f, 0x42, 0x53, 0x16, 0x64, 0xab, 0xd1, 0x51, 0xbb, 0x06, 0xab, 0xd0, 0xbf, 0x5e, - 0x78, 0x07, 0xaf, 0x7e, 0x9d, 0xfc, 0x3f, 0xee, 0x9b, 0x36, 0x8b, 0x7f, 0xc3, 0x87, 0x9f, 0x01, - 0x00, 0x00, 0xff, 0xff, 0xf4, 0x20, 0x24, 0xf0, 0x58, 0x04, 0x00, 0x00, +func init() { proto.RegisterFile("binlogdata.proto", fileDescriptor_binlogdata_ccae9945406a9695) } + +var fileDescriptor_binlogdata_ccae9945406a9695 = []byte{ + // 564 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0xdd, 0x4e, 0xdb, 0x30, + 0x14, 0x5e, 0x9a, 0x52, 0xd2, 0x13, 0x06, 0xae, 0x19, 0xa8, 0xaa, 0x34, 0xa9, 0xca, 0x0d, 0xdd, + 0xc5, 0x92, 0x29, 0x7b, 0x02, 0x92, 0x58, 0xa8, 0xe0, 0x16, 0xe4, 0x86, 0x1b, 0x6e, 0xa2, 0xb4, + 0x78, 0x5d, 0x44, 0x89, 0x4b, 0x6c, 0xaa, 0xf5, 0x39, 0xf6, 0x14, 0x7b, 0x91, 0xbd, 0xc9, 0xde, + 0x63, 0xca, 0x0f, 0x69, 0xc7, 0xa4, 0x8d, 0x5d, 0xec, 0xee, 0xfb, 0x8e, 0xbf, 0xf3, 0xf9, 0x9c, + 0x2f, 0x56, 0x00, 0x4d, 0x93, 0x74, 0x21, 0xe6, 0xb7, 0xb1, 0x8a, 0xed, 0x65, 0x26, 0x94, 0xc0, + 0xb0, 0xa9, 0xf4, 0xcc, 0x87, 0x47, 0x9e, 0xad, 0xcb, 0x83, 0xde, 0xbe, 0x12, 0x4b, 0xb1, 0x11, + 0x5a, 0x23, 0xd8, 0xf5, 0x3f, 0xc7, 0x99, 0xe4, 0x0a, 0x1f, 0x43, 0x6b, 0xb6, 0x48, 0x78, 0xaa, + 0xba, 0x5a, 0x5f, 0x1b, 0xec, 0xb0, 0x8a, 0x61, 0x0c, 0xcd, 0x99, 0x48, 0xd3, 0x6e, 0xa3, 0xa8, + 0x16, 0x38, 0xd7, 0x4a, 0x9e, 0xad, 0x78, 0xd6, 0xd5, 0x4b, 0x6d, 0xc9, 0xac, 0x1f, 0x3a, 0x74, + 0xbc, 0xe2, 0xea, 0x30, 0x8b, 0x53, 0x19, 0xcf, 0x54, 0x22, 0x52, 0x7c, 0x06, 0x20, 0x55, 0xac, + 0xf8, 0x3d, 0x4f, 0x95, 0xec, 0x6a, 0x7d, 0x7d, 0x60, 0xba, 0x27, 0xf6, 0xd6, 0xd0, 0xbf, 0xb5, + 0xd8, 0x93, 0x27, 0x3d, 0xdb, 0x6a, 0xc5, 0x2e, 0x98, 0x7c, 0xc5, 0x53, 0x15, 0x29, 0x71, 0xc7, + 0xd3, 0x6e, 0xb3, 0xaf, 0x0d, 0x4c, 0xb7, 0x63, 0x97, 0x0b, 0x92, 0xfc, 0x24, 0xcc, 0x0f, 0x18, + 0xf0, 0x1a, 0xf7, 0xbe, 0x37, 0xa0, 0x5d, 0xbb, 0x61, 0x0a, 0xc6, 0x2c, 0x56, 0x7c, 0x2e, 0xb2, + 0x75, 0xb1, 0xe6, 0xbe, 0xfb, 0xe1, 0x85, 0x83, 0xd8, 0x7e, 0xd5, 0xc7, 0x6a, 0x07, 0xfc, 0x1e, + 0x76, 0x67, 0x65, 0x7a, 0x45, 0x3a, 0xa6, 0x7b, 0xb8, 0x6d, 0x56, 0x05, 0xcb, 0x9e, 0x34, 0x18, + 0x81, 0x2e, 0x1f, 0x16, 0x45, 0x64, 0x7b, 0x2c, 0x87, 0xd6, 0x37, 0x0d, 0x8c, 0x27, 0x5f, 0x7c, + 0x08, 0x07, 0x1e, 0x8d, 0xae, 0xc7, 0x8c, 0xf8, 0x97, 0x67, 0xe3, 0xe1, 0x0d, 0x09, 0xd0, 0x2b, + 0xbc, 0x07, 0x86, 0x47, 0x23, 0x8f, 0x9c, 0x0d, 0xc7, 0x48, 0xc3, 0xaf, 0xa1, 0xed, 0xd1, 0xc8, + 0xbf, 0x1c, 0x8d, 0x86, 0x21, 0x6a, 0xe0, 0x03, 0x30, 0x3d, 0x1a, 0xb1, 0x4b, 0x4a, 0xbd, 0x53, + 0xff, 0x02, 0xe9, 0xf8, 0x08, 0x3a, 0x1e, 0x8d, 0x82, 0x11, 0x8d, 0x02, 0x72, 0xc5, 0x88, 0x7f, + 0x1a, 0x92, 0x00, 0x35, 0x31, 0x40, 0x2b, 0x2f, 0x07, 0x14, 0xed, 0x54, 0x78, 0x42, 0x42, 0xd4, + 0xaa, 0xec, 0x86, 0xe3, 0x09, 0x61, 0x21, 0xda, 0xad, 0xe8, 0xf5, 0x55, 0x70, 0x1a, 0x12, 0x64, + 0x54, 0x34, 0x20, 0x94, 0x84, 0x04, 0xb5, 0xcf, 0x9b, 0x46, 0x03, 0xe9, 0xe7, 0x4d, 0x43, 0x47, + 0x4d, 0xeb, 0xab, 0x06, 0x47, 0x13, 0x95, 0xf1, 0xf8, 0xfe, 0x82, 0xaf, 0x59, 0x9c, 0xce, 0x39, + 0xe3, 0x0f, 0x8f, 0x5c, 0x2a, 0xdc, 0x03, 0x63, 0x29, 0x64, 0x92, 0x67, 0x57, 0x04, 0xdc, 0x66, + 0x35, 0xc7, 0x0e, 0xb4, 0xef, 0xf8, 0x3a, 0xca, 0x72, 0x7d, 0x15, 0x18, 0xb6, 0xeb, 0x07, 0x59, + 0x3b, 0x19, 0x77, 0x15, 0xda, 0xce, 0x57, 0xff, 0x7b, 0xbe, 0xd6, 0x27, 0x38, 0x7e, 0x3e, 0x94, + 0x5c, 0x8a, 0x54, 0x72, 0x4c, 0x01, 0x97, 0x8d, 0x91, 0xda, 0x7c, 0xdb, 0x62, 0x3e, 0xd3, 0x7d, + 0xfb, 0xc7, 0x07, 0xc0, 0x3a, 0xd3, 0xe7, 0x25, 0xeb, 0x0b, 0x1c, 0x96, 0xf7, 0x84, 0xf1, 0x74, + 0xc1, 0xe5, 0x4b, 0x56, 0x3f, 0x86, 0x96, 0x2a, 0xc4, 0xdd, 0x46, 0x5f, 0x1f, 0xb4, 0x59, 0xc5, + 0xfe, 0x75, 0xc3, 0x5b, 0x78, 0xf3, 0xeb, 0xcd, 0xff, 0x63, 0x3f, 0xef, 0xdd, 0xcd, 0xc9, 0x2a, + 0x51, 0x5c, 0x4a, 0x3b, 0x11, 0x4e, 0x89, 0x9c, 0xb9, 0x70, 0x56, 0xca, 0x29, 0x7e, 0x1a, 0xce, + 0xc6, 0x6f, 0xda, 0x2a, 0x2a, 0x1f, 0x7f, 0x06, 0x00, 0x00, 0xff, 0xff, 0xa0, 0x1b, 0x77, 0x20, + 0x83, 0x04, 0x00, 0x00, } diff --git a/go/vt/proto/binlogservice/binlogservice.pb.go b/go/vt/proto/binlogservice/binlogservice.pb.go index 56f98cda8fe..e30c88fa272 100644 --- a/go/vt/proto/binlogservice/binlogservice.pb.go +++ b/go/vt/proto/binlogservice/binlogservice.pb.go @@ -1,15 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: binlogservice.proto -/* -Package binlogservice is a generated protocol buffer package. - -It is generated from these files: - binlogservice.proto - -It has these top-level messages: -*/ -package binlogservice +package binlogservice // import "vitess.io/vitess/go/vt/proto/binlogservice" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -199,10 +191,10 @@ var _UpdateStream_serviceDesc = grpc.ServiceDesc{ Metadata: "binlogservice.proto", } -func init() { proto.RegisterFile("binlogservice.proto", fileDescriptor0) } +func init() { proto.RegisterFile("binlogservice.proto", fileDescriptor_binlogservice_0e1eb8b2f97a2dc1) } -var fileDescriptor0 = []byte{ - // 149 bytes of a gzipped FileDescriptorProto +var fileDescriptor_binlogservice_0e1eb8b2f97a2dc1 = []byte{ + // 177 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4e, 0xca, 0xcc, 0xcb, 0xc9, 0x4f, 0x2f, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x45, 0x11, 0x94, 0x12, 0x80, 0x70, 0x53, 0x12, 0x4b, 0x12, 0x21, 0x0a, 0x8c, 0x0e, 0x31, @@ -211,6 +203,8 @@ var fileDescriptor0 = []byte{ 0xba, 0x50, 0xe5, 0x82, 0x52, 0x0b, 0x4b, 0x53, 0x8b, 0x4b, 0xa4, 0x94, 0xf0, 0x29, 0x29, 0x2e, 0xc8, 0xcf, 0x2b, 0x4e, 0x55, 0x62, 0x30, 0x60, 0x14, 0x0a, 0xe5, 0xe2, 0x81, 0xc8, 0x86, 0x24, 0x26, 0xe5, 0xa4, 0x16, 0x0b, 0xc9, 0x63, 0xea, 0x83, 0xc8, 0xc0, 0x0c, 0x56, 0xc0, 0xad, 0x00, - 0x61, 0x6c, 0x12, 0x1b, 0xd8, 0x2f, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa3, 0x4c, 0x2b, - 0x54, 0x03, 0x01, 0x00, 0x00, + 0x61, 0xac, 0x93, 0x4e, 0x94, 0x56, 0x59, 0x66, 0x49, 0x6a, 0x71, 0xb1, 0x5e, 0x66, 0xbe, 0x3e, + 0x84, 0xa5, 0x9f, 0x9e, 0xaf, 0x5f, 0x56, 0xa2, 0x0f, 0xf6, 0xa4, 0x3e, 0x4a, 0x20, 0x24, 0xb1, + 0x81, 0x05, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x4a, 0xf4, 0x0a, 0x9c, 0x31, 0x01, 0x00, + 0x00, } diff --git a/go/vt/proto/logutil/logutil.pb.go b/go/vt/proto/logutil/logutil.pb.go index 0201514873d..61754fc4bab 100644 --- a/go/vt/proto/logutil/logutil.pb.go +++ b/go/vt/proto/logutil/logutil.pb.go @@ -1,17 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: logutil.proto -/* -Package logutil is a generated protocol buffer package. - -It is generated from these files: - logutil.proto - -It has these top-level messages: - Time - Event -*/ -package logutil +package logutil // import "vitess.io/vitess/go/vt/proto/logutil" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -58,19 +48,43 @@ var Level_value = map[string]int32{ func (x Level) String() string { return proto.EnumName(Level_name, int32(x)) } -func (Level) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (Level) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_logutil_39c26af5691dd7cd, []int{0} +} // Time represents a time stamp in nanoseconds. In go, use logutil library // to convert times. type Time struct { - Seconds int64 `protobuf:"varint,1,opt,name=seconds" json:"seconds,omitempty"` - Nanoseconds int32 `protobuf:"varint,2,opt,name=nanoseconds" json:"nanoseconds,omitempty"` + Seconds int64 `protobuf:"varint,1,opt,name=seconds" json:"seconds,omitempty"` + Nanoseconds int32 `protobuf:"varint,2,opt,name=nanoseconds" json:"nanoseconds,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *Time) Reset() { *m = Time{} } -func (m *Time) String() string { return proto.CompactTextString(m) } -func (*Time) ProtoMessage() {} -func (*Time) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (m *Time) Reset() { *m = Time{} } +func (m *Time) String() string { return proto.CompactTextString(m) } +func (*Time) ProtoMessage() {} +func (*Time) Descriptor() ([]byte, []int) { + return fileDescriptor_logutil_39c26af5691dd7cd, []int{0} +} +func (m *Time) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Time.Unmarshal(m, b) +} +func (m *Time) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Time.Marshal(b, m, deterministic) +} +func (dst *Time) XXX_Merge(src proto.Message) { + xxx_messageInfo_Time.Merge(dst, src) +} +func (m *Time) XXX_Size() int { + return xxx_messageInfo_Time.Size(m) +} +func (m *Time) XXX_DiscardUnknown() { + xxx_messageInfo_Time.DiscardUnknown(m) +} + +var xxx_messageInfo_Time proto.InternalMessageInfo func (m *Time) GetSeconds() int64 { if m != nil { @@ -88,17 +102,39 @@ func (m *Time) GetNanoseconds() int32 { // Event is a single logging event type Event struct { - Time *Time `protobuf:"bytes,1,opt,name=time" json:"time,omitempty"` - Level Level `protobuf:"varint,2,opt,name=level,enum=logutil.Level" json:"level,omitempty"` - File string `protobuf:"bytes,3,opt,name=file" json:"file,omitempty"` - Line int64 `protobuf:"varint,4,opt,name=line" json:"line,omitempty"` - Value string `protobuf:"bytes,5,opt,name=value" json:"value,omitempty"` + Time *Time `protobuf:"bytes,1,opt,name=time" json:"time,omitempty"` + Level Level `protobuf:"varint,2,opt,name=level,enum=logutil.Level" json:"level,omitempty"` + File string `protobuf:"bytes,3,opt,name=file" json:"file,omitempty"` + Line int64 `protobuf:"varint,4,opt,name=line" json:"line,omitempty"` + Value string `protobuf:"bytes,5,opt,name=value" json:"value,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Event) Reset() { *m = Event{} } +func (m *Event) String() string { return proto.CompactTextString(m) } +func (*Event) ProtoMessage() {} +func (*Event) Descriptor() ([]byte, []int) { + return fileDescriptor_logutil_39c26af5691dd7cd, []int{1} +} +func (m *Event) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Event.Unmarshal(m, b) +} +func (m *Event) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Event.Marshal(b, m, deterministic) +} +func (dst *Event) XXX_Merge(src proto.Message) { + xxx_messageInfo_Event.Merge(dst, src) +} +func (m *Event) XXX_Size() int { + return xxx_messageInfo_Event.Size(m) +} +func (m *Event) XXX_DiscardUnknown() { + xxx_messageInfo_Event.DiscardUnknown(m) } -func (m *Event) Reset() { *m = Event{} } -func (m *Event) String() string { return proto.CompactTextString(m) } -func (*Event) ProtoMessage() {} -func (*Event) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +var xxx_messageInfo_Event proto.InternalMessageInfo func (m *Event) GetTime() *Time { if m != nil { @@ -141,23 +177,25 @@ func init() { proto.RegisterEnum("logutil.Level", Level_name, Level_value) } -func init() { proto.RegisterFile("logutil.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 235 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x90, 0x41, 0x4b, 0xc3, 0x40, - 0x10, 0x85, 0xdd, 0x66, 0xd7, 0xd8, 0x09, 0x2d, 0x61, 0xf0, 0xb0, 0xc7, 0x58, 0x3c, 0x04, 0x0f, - 0x3d, 0x54, 0xf0, 0xae, 0x12, 0xa5, 0x50, 0x12, 0x18, 0x05, 0xcf, 0x55, 0x47, 0x59, 0xd8, 0xee, - 0x8a, 0x4d, 0xf3, 0x33, 0xfc, 0xcd, 0x92, 0x89, 0x91, 0xde, 0xe6, 0x7d, 0xef, 0xf1, 0xde, 0xb2, - 0x30, 0xf3, 0xf1, 0xf3, 0xd0, 0x3a, 0xbf, 0xfc, 0xfa, 0x8e, 0x6d, 0xc4, 0xf4, 0x4f, 0x2e, 0xee, - 0x40, 0x3f, 0xbb, 0x1d, 0xa3, 0x85, 0x74, 0xcf, 0x6f, 0x31, 0xbc, 0xef, 0xad, 0x2a, 0x54, 0x99, - 0xd0, 0x28, 0xb1, 0x80, 0x2c, 0x6c, 0x43, 0x1c, 0xdd, 0x49, 0xa1, 0x4a, 0x43, 0xc7, 0x68, 0xf1, - 0xa3, 0xc0, 0x54, 0x1d, 0x87, 0x16, 0x2f, 0x40, 0xb7, 0x6e, 0xc7, 0x52, 0x91, 0xad, 0x66, 0xcb, - 0x71, 0xb4, 0x9f, 0x20, 0xb1, 0xf0, 0x12, 0x8c, 0xe7, 0x8e, 0xbd, 0x14, 0xcd, 0x57, 0xf3, 0xff, - 0xcc, 0xa6, 0xa7, 0x34, 0x98, 0x88, 0xa0, 0x3f, 0x9c, 0x67, 0x9b, 0x14, 0xaa, 0x9c, 0x92, 0xdc, - 0x3d, 0xf3, 0x2e, 0xb0, 0xd5, 0xf2, 0x3e, 0xb9, 0xf1, 0x1c, 0x4c, 0xb7, 0xf5, 0x07, 0xb6, 0x46, - 0x82, 0x83, 0xb8, 0xba, 0x01, 0x23, 0x6d, 0x78, 0x06, 0x7a, 0x5d, 0x3f, 0x34, 0xf9, 0x09, 0x66, - 0x90, 0xbe, 0xdc, 0x52, 0xbd, 0xae, 0x1f, 0x73, 0x85, 0x53, 0x30, 0x15, 0x51, 0x43, 0xf9, 0xa4, - 0xe7, 0xf7, 0x4d, 0xfd, 0xd4, 0x6c, 0xaa, 0x3c, 0x79, 0x3d, 0x95, 0xcf, 0xb9, 0xfe, 0x0d, 0x00, - 0x00, 0xff, 0xff, 0x57, 0x27, 0x8f, 0xe1, 0x2d, 0x01, 0x00, 0x00, +func init() { proto.RegisterFile("logutil.proto", fileDescriptor_logutil_39c26af5691dd7cd) } + +var fileDescriptor_logutil_39c26af5691dd7cd = []byte{ + // 260 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x90, 0x41, 0x4b, 0xfb, 0x40, + 0x10, 0xc5, 0xff, 0xdb, 0x64, 0xff, 0xb1, 0x13, 0x5a, 0xc2, 0xe0, 0x21, 0xc7, 0x58, 0x8a, 0x04, + 0x0f, 0x09, 0x54, 0xf0, 0x6e, 0x25, 0x4a, 0xa1, 0x24, 0xb0, 0x0a, 0x82, 0xb7, 0xaa, 0x63, 0x59, + 0xd8, 0x66, 0xc5, 0x6c, 0xf7, 0x63, 0xf8, 0x99, 0x25, 0x93, 0x46, 0xbc, 0xbd, 0xf7, 0x7b, 0xc3, + 0x9b, 0x61, 0x60, 0x66, 0xec, 0xfe, 0xe8, 0xb4, 0x29, 0x3e, 0xbf, 0xac, 0xb3, 0x18, 0x9d, 0xec, + 0x62, 0x0d, 0xe1, 0x93, 0x3e, 0x10, 0xa6, 0x10, 0x75, 0xf4, 0x66, 0xdb, 0xf7, 0x2e, 0x15, 0x99, + 0xc8, 0x03, 0x35, 0x5a, 0xcc, 0x20, 0x6e, 0x77, 0xad, 0x1d, 0xd3, 0x49, 0x26, 0x72, 0xa9, 0xfe, + 0xa2, 0xc5, 0xb7, 0x00, 0x59, 0x79, 0x6a, 0x1d, 0x5e, 0x40, 0xe8, 0xf4, 0x81, 0xb8, 0x22, 0x5e, + 0xcd, 0x8a, 0x71, 0x69, 0xbf, 0x42, 0x71, 0x84, 0x4b, 0x90, 0x86, 0x3c, 0x19, 0x2e, 0x9a, 0xaf, + 0xe6, 0xbf, 0x33, 0xdb, 0x9e, 0xaa, 0x21, 0x44, 0x84, 0xf0, 0x43, 0x1b, 0x4a, 0x83, 0x4c, 0xe4, + 0x53, 0xc5, 0xba, 0x67, 0x46, 0xb7, 0x94, 0x86, 0x7c, 0x1f, 0x6b, 0x3c, 0x07, 0xe9, 0x77, 0xe6, + 0x48, 0xa9, 0xe4, 0xc1, 0xc1, 0x5c, 0xdd, 0x80, 0xe4, 0x36, 0x3c, 0x83, 0x70, 0x53, 0xdf, 0x37, + 0xc9, 0x3f, 0x8c, 0x21, 0x7a, 0xbe, 0x55, 0xf5, 0xa6, 0x7e, 0x48, 0x04, 0x4e, 0x41, 0x56, 0x4a, + 0x35, 0x2a, 0x99, 0xf4, 0xfc, 0xae, 0xa9, 0x1f, 0x9b, 0x6d, 0x95, 0x04, 0xeb, 0xcb, 0x97, 0xa5, + 0xd7, 0x8e, 0xba, 0xae, 0xd0, 0xb6, 0x1c, 0x54, 0xb9, 0xb7, 0xa5, 0x77, 0x25, 0x7f, 0xad, 0x3c, + 0x9d, 0xfa, 0xfa, 0x9f, 0xed, 0xf5, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x27, 0x02, 0xa1, 0x99, + 0x55, 0x01, 0x00, 0x00, } diff --git a/go/vt/proto/mysqlctl/mysqlctl.pb.go b/go/vt/proto/mysqlctl/mysqlctl.pb.go index c96a2f9926d..32b5da0d8f7 100644 --- a/go/vt/proto/mysqlctl/mysqlctl.pb.go +++ b/go/vt/proto/mysqlctl/mysqlctl.pb.go @@ -1,25 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: mysqlctl.proto -/* -Package mysqlctl is a generated protocol buffer package. - -It is generated from these files: - mysqlctl.proto - -It has these top-level messages: - StartRequest - StartResponse - ShutdownRequest - ShutdownResponse - RunMysqlUpgradeRequest - RunMysqlUpgradeResponse - ReinitConfigRequest - ReinitConfigResponse - RefreshConfigRequest - RefreshConfigResponse -*/ -package mysqlctl +package mysqlctl // import "vitess.io/vitess/go/vt/proto/mysqlctl" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -42,13 +24,35 @@ var _ = math.Inf const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package type StartRequest struct { - MysqldArgs []string `protobuf:"bytes,1,rep,name=mysqld_args,json=mysqldArgs" json:"mysqld_args,omitempty"` + MysqldArgs []string `protobuf:"bytes,1,rep,name=mysqld_args,json=mysqldArgs" json:"mysqld_args,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *StartRequest) Reset() { *m = StartRequest{} } -func (m *StartRequest) String() string { return proto.CompactTextString(m) } -func (*StartRequest) ProtoMessage() {} -func (*StartRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (m *StartRequest) Reset() { *m = StartRequest{} } +func (m *StartRequest) String() string { return proto.CompactTextString(m) } +func (*StartRequest) ProtoMessage() {} +func (*StartRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_mysqlctl_dc3430948664e7fa, []int{0} +} +func (m *StartRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StartRequest.Unmarshal(m, b) +} +func (m *StartRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StartRequest.Marshal(b, m, deterministic) +} +func (dst *StartRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StartRequest.Merge(dst, src) +} +func (m *StartRequest) XXX_Size() int { + return xxx_messageInfo_StartRequest.Size(m) +} +func (m *StartRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StartRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_StartRequest proto.InternalMessageInfo func (m *StartRequest) GetMysqldArgs() []string { if m != nil { @@ -58,21 +62,65 @@ func (m *StartRequest) GetMysqldArgs() []string { } type StartResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StartResponse) Reset() { *m = StartResponse{} } +func (m *StartResponse) String() string { return proto.CompactTextString(m) } +func (*StartResponse) ProtoMessage() {} +func (*StartResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_mysqlctl_dc3430948664e7fa, []int{1} +} +func (m *StartResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StartResponse.Unmarshal(m, b) +} +func (m *StartResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StartResponse.Marshal(b, m, deterministic) +} +func (dst *StartResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StartResponse.Merge(dst, src) +} +func (m *StartResponse) XXX_Size() int { + return xxx_messageInfo_StartResponse.Size(m) +} +func (m *StartResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StartResponse.DiscardUnknown(m) } -func (m *StartResponse) Reset() { *m = StartResponse{} } -func (m *StartResponse) String() string { return proto.CompactTextString(m) } -func (*StartResponse) ProtoMessage() {} -func (*StartResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +var xxx_messageInfo_StartResponse proto.InternalMessageInfo type ShutdownRequest struct { - WaitForMysqld bool `protobuf:"varint,1,opt,name=wait_for_mysqld,json=waitForMysqld" json:"wait_for_mysqld,omitempty"` + WaitForMysqld bool `protobuf:"varint,1,opt,name=wait_for_mysqld,json=waitForMysqld" json:"wait_for_mysqld,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ShutdownRequest) Reset() { *m = ShutdownRequest{} } -func (m *ShutdownRequest) String() string { return proto.CompactTextString(m) } -func (*ShutdownRequest) ProtoMessage() {} -func (*ShutdownRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } +func (m *ShutdownRequest) Reset() { *m = ShutdownRequest{} } +func (m *ShutdownRequest) String() string { return proto.CompactTextString(m) } +func (*ShutdownRequest) ProtoMessage() {} +func (*ShutdownRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_mysqlctl_dc3430948664e7fa, []int{2} +} +func (m *ShutdownRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ShutdownRequest.Unmarshal(m, b) +} +func (m *ShutdownRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ShutdownRequest.Marshal(b, m, deterministic) +} +func (dst *ShutdownRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ShutdownRequest.Merge(dst, src) +} +func (m *ShutdownRequest) XXX_Size() int { + return xxx_messageInfo_ShutdownRequest.Size(m) +} +func (m *ShutdownRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ShutdownRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ShutdownRequest proto.InternalMessageInfo func (m *ShutdownRequest) GetWaitForMysqld() bool { if m != nil { @@ -82,60 +130,214 @@ func (m *ShutdownRequest) GetWaitForMysqld() bool { } type ShutdownResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ShutdownResponse) Reset() { *m = ShutdownResponse{} } -func (m *ShutdownResponse) String() string { return proto.CompactTextString(m) } -func (*ShutdownResponse) ProtoMessage() {} -func (*ShutdownResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } +func (m *ShutdownResponse) Reset() { *m = ShutdownResponse{} } +func (m *ShutdownResponse) String() string { return proto.CompactTextString(m) } +func (*ShutdownResponse) ProtoMessage() {} +func (*ShutdownResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_mysqlctl_dc3430948664e7fa, []int{3} +} +func (m *ShutdownResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ShutdownResponse.Unmarshal(m, b) +} +func (m *ShutdownResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ShutdownResponse.Marshal(b, m, deterministic) +} +func (dst *ShutdownResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ShutdownResponse.Merge(dst, src) +} +func (m *ShutdownResponse) XXX_Size() int { + return xxx_messageInfo_ShutdownResponse.Size(m) +} +func (m *ShutdownResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ShutdownResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ShutdownResponse proto.InternalMessageInfo type RunMysqlUpgradeRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RunMysqlUpgradeRequest) Reset() { *m = RunMysqlUpgradeRequest{} } +func (m *RunMysqlUpgradeRequest) String() string { return proto.CompactTextString(m) } +func (*RunMysqlUpgradeRequest) ProtoMessage() {} +func (*RunMysqlUpgradeRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_mysqlctl_dc3430948664e7fa, []int{4} +} +func (m *RunMysqlUpgradeRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RunMysqlUpgradeRequest.Unmarshal(m, b) +} +func (m *RunMysqlUpgradeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RunMysqlUpgradeRequest.Marshal(b, m, deterministic) +} +func (dst *RunMysqlUpgradeRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_RunMysqlUpgradeRequest.Merge(dst, src) +} +func (m *RunMysqlUpgradeRequest) XXX_Size() int { + return xxx_messageInfo_RunMysqlUpgradeRequest.Size(m) +} +func (m *RunMysqlUpgradeRequest) XXX_DiscardUnknown() { + xxx_messageInfo_RunMysqlUpgradeRequest.DiscardUnknown(m) } -func (m *RunMysqlUpgradeRequest) Reset() { *m = RunMysqlUpgradeRequest{} } -func (m *RunMysqlUpgradeRequest) String() string { return proto.CompactTextString(m) } -func (*RunMysqlUpgradeRequest) ProtoMessage() {} -func (*RunMysqlUpgradeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} } +var xxx_messageInfo_RunMysqlUpgradeRequest proto.InternalMessageInfo type RunMysqlUpgradeResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *RunMysqlUpgradeResponse) Reset() { *m = RunMysqlUpgradeResponse{} } -func (m *RunMysqlUpgradeResponse) String() string { return proto.CompactTextString(m) } -func (*RunMysqlUpgradeResponse) ProtoMessage() {} -func (*RunMysqlUpgradeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } +func (m *RunMysqlUpgradeResponse) Reset() { *m = RunMysqlUpgradeResponse{} } +func (m *RunMysqlUpgradeResponse) String() string { return proto.CompactTextString(m) } +func (*RunMysqlUpgradeResponse) ProtoMessage() {} +func (*RunMysqlUpgradeResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_mysqlctl_dc3430948664e7fa, []int{5} +} +func (m *RunMysqlUpgradeResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RunMysqlUpgradeResponse.Unmarshal(m, b) +} +func (m *RunMysqlUpgradeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RunMysqlUpgradeResponse.Marshal(b, m, deterministic) +} +func (dst *RunMysqlUpgradeResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_RunMysqlUpgradeResponse.Merge(dst, src) +} +func (m *RunMysqlUpgradeResponse) XXX_Size() int { + return xxx_messageInfo_RunMysqlUpgradeResponse.Size(m) +} +func (m *RunMysqlUpgradeResponse) XXX_DiscardUnknown() { + xxx_messageInfo_RunMysqlUpgradeResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_RunMysqlUpgradeResponse proto.InternalMessageInfo type ReinitConfigRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ReinitConfigRequest) Reset() { *m = ReinitConfigRequest{} } +func (m *ReinitConfigRequest) String() string { return proto.CompactTextString(m) } +func (*ReinitConfigRequest) ProtoMessage() {} +func (*ReinitConfigRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_mysqlctl_dc3430948664e7fa, []int{6} +} +func (m *ReinitConfigRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ReinitConfigRequest.Unmarshal(m, b) +} +func (m *ReinitConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ReinitConfigRequest.Marshal(b, m, deterministic) +} +func (dst *ReinitConfigRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReinitConfigRequest.Merge(dst, src) +} +func (m *ReinitConfigRequest) XXX_Size() int { + return xxx_messageInfo_ReinitConfigRequest.Size(m) +} +func (m *ReinitConfigRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ReinitConfigRequest.DiscardUnknown(m) } -func (m *ReinitConfigRequest) Reset() { *m = ReinitConfigRequest{} } -func (m *ReinitConfigRequest) String() string { return proto.CompactTextString(m) } -func (*ReinitConfigRequest) ProtoMessage() {} -func (*ReinitConfigRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} } +var xxx_messageInfo_ReinitConfigRequest proto.InternalMessageInfo type ReinitConfigResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ReinitConfigResponse) Reset() { *m = ReinitConfigResponse{} } -func (m *ReinitConfigResponse) String() string { return proto.CompactTextString(m) } -func (*ReinitConfigResponse) ProtoMessage() {} -func (*ReinitConfigResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} } +func (m *ReinitConfigResponse) Reset() { *m = ReinitConfigResponse{} } +func (m *ReinitConfigResponse) String() string { return proto.CompactTextString(m) } +func (*ReinitConfigResponse) ProtoMessage() {} +func (*ReinitConfigResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_mysqlctl_dc3430948664e7fa, []int{7} +} +func (m *ReinitConfigResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ReinitConfigResponse.Unmarshal(m, b) +} +func (m *ReinitConfigResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ReinitConfigResponse.Marshal(b, m, deterministic) +} +func (dst *ReinitConfigResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReinitConfigResponse.Merge(dst, src) +} +func (m *ReinitConfigResponse) XXX_Size() int { + return xxx_messageInfo_ReinitConfigResponse.Size(m) +} +func (m *ReinitConfigResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ReinitConfigResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ReinitConfigResponse proto.InternalMessageInfo type RefreshConfigRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *RefreshConfigRequest) Reset() { *m = RefreshConfigRequest{} } -func (m *RefreshConfigRequest) String() string { return proto.CompactTextString(m) } -func (*RefreshConfigRequest) ProtoMessage() {} -func (*RefreshConfigRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} } +func (m *RefreshConfigRequest) Reset() { *m = RefreshConfigRequest{} } +func (m *RefreshConfigRequest) String() string { return proto.CompactTextString(m) } +func (*RefreshConfigRequest) ProtoMessage() {} +func (*RefreshConfigRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_mysqlctl_dc3430948664e7fa, []int{8} +} +func (m *RefreshConfigRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RefreshConfigRequest.Unmarshal(m, b) +} +func (m *RefreshConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RefreshConfigRequest.Marshal(b, m, deterministic) +} +func (dst *RefreshConfigRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_RefreshConfigRequest.Merge(dst, src) +} +func (m *RefreshConfigRequest) XXX_Size() int { + return xxx_messageInfo_RefreshConfigRequest.Size(m) +} +func (m *RefreshConfigRequest) XXX_DiscardUnknown() { + xxx_messageInfo_RefreshConfigRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_RefreshConfigRequest proto.InternalMessageInfo type RefreshConfigResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RefreshConfigResponse) Reset() { *m = RefreshConfigResponse{} } +func (m *RefreshConfigResponse) String() string { return proto.CompactTextString(m) } +func (*RefreshConfigResponse) ProtoMessage() {} +func (*RefreshConfigResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_mysqlctl_dc3430948664e7fa, []int{9} +} +func (m *RefreshConfigResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RefreshConfigResponse.Unmarshal(m, b) +} +func (m *RefreshConfigResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RefreshConfigResponse.Marshal(b, m, deterministic) +} +func (dst *RefreshConfigResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_RefreshConfigResponse.Merge(dst, src) +} +func (m *RefreshConfigResponse) XXX_Size() int { + return xxx_messageInfo_RefreshConfigResponse.Size(m) +} +func (m *RefreshConfigResponse) XXX_DiscardUnknown() { + xxx_messageInfo_RefreshConfigResponse.DiscardUnknown(m) } -func (m *RefreshConfigResponse) Reset() { *m = RefreshConfigResponse{} } -func (m *RefreshConfigResponse) String() string { return proto.CompactTextString(m) } -func (*RefreshConfigResponse) ProtoMessage() {} -func (*RefreshConfigResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} } +var xxx_messageInfo_RefreshConfigResponse proto.InternalMessageInfo func init() { proto.RegisterType((*StartRequest)(nil), "mysqlctl.StartRequest") @@ -354,28 +556,30 @@ var _MysqlCtl_serviceDesc = grpc.ServiceDesc{ Metadata: "mysqlctl.proto", } -func init() { proto.RegisterFile("mysqlctl.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 313 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0x4d, 0x4f, 0x83, 0x30, - 0x18, 0xc7, 0x5d, 0x16, 0x0d, 0x3e, 0x6e, 0x62, 0xaa, 0x1b, 0xac, 0x89, 0x0e, 0x39, 0x98, 0x9d, - 0x66, 0xa2, 0x27, 0xbd, 0x19, 0x12, 0x6f, 0xc6, 0xa4, 0x8b, 0x89, 0x37, 0x82, 0x52, 0x18, 0x09, - 0x52, 0xd6, 0x96, 0x2c, 0x7e, 0x05, 0x3f, 0xb5, 0xb1, 0x14, 0x06, 0x63, 0xf3, 0xc8, 0xff, 0xed, - 0x09, 0x3f, 0x80, 0xd3, 0xaf, 0x6f, 0xb1, 0x4a, 0x3f, 0x65, 0x3a, 0xcf, 0x39, 0x93, 0x0c, 0x19, - 0xd5, 0xb3, 0x7b, 0x0b, 0x83, 0x85, 0x0c, 0xb8, 0x24, 0x74, 0x55, 0x50, 0x21, 0xd1, 0x14, 0x4e, - 0x94, 0x17, 0xfa, 0x01, 0x8f, 0x85, 0xdd, 0x73, 0xfa, 0xb3, 0x63, 0x02, 0xa5, 0xf4, 0xc4, 0x63, - 0xe1, 0x9a, 0x30, 0xd4, 0x05, 0x91, 0xb3, 0x4c, 0x50, 0xf7, 0x01, 0xcc, 0xc5, 0xb2, 0x90, 0x21, - 0x5b, 0x67, 0xd5, 0xc8, 0x0d, 0x98, 0xeb, 0x20, 0x91, 0x7e, 0xc4, 0xb8, 0x5f, 0x56, 0xed, 0x9e, - 0xd3, 0x9b, 0x19, 0x64, 0xf8, 0x27, 0x3f, 0x33, 0xfe, 0xa2, 0x44, 0x17, 0xc1, 0xd9, 0xa6, 0xaa, - 0xe7, 0x6c, 0x18, 0x93, 0x22, 0x53, 0x81, 0xb7, 0x3c, 0xe6, 0x41, 0x48, 0xf5, 0xaa, 0x3b, 0x01, - 0xab, 0xe3, 0xe8, 0xd2, 0x08, 0xce, 0x09, 0x4d, 0xb2, 0x44, 0x7a, 0x2c, 0x8b, 0x92, 0xb8, 0x6a, - 0x8c, 0xe1, 0xa2, 0x2d, 0xeb, 0xb8, 0xd2, 0x23, 0x4e, 0xc5, 0xb2, 0x9d, 0xb7, 0x60, 0xb4, 0xa5, - 0x97, 0x85, 0xbb, 0x9f, 0x3e, 0x18, 0xea, 0xb0, 0x27, 0x53, 0xf4, 0x08, 0x87, 0x8a, 0x00, 0x1a, - 0xcf, 0x6b, 0xac, 0x4d, 0x86, 0xd8, 0xea, 0xe8, 0xfa, 0xee, 0x01, 0xf2, 0xc0, 0xa8, 0xde, 0x18, - 0x4d, 0x1a, 0xb1, 0x36, 0x40, 0x8c, 0x77, 0x59, 0xf5, 0xc8, 0x3b, 0x98, 0x5b, 0x20, 0x90, 0xb3, - 0x29, 0xec, 0xa6, 0x87, 0xaf, 0xff, 0x49, 0xd4, 0xcb, 0xaf, 0x30, 0x68, 0x02, 0x43, 0x97, 0x8d, - 0x52, 0x97, 0x2f, 0xbe, 0xda, 0x67, 0xd7, 0x83, 0x04, 0x86, 0x2d, 0xa2, 0xa8, 0x55, 0xe9, 0x7e, - 0x02, 0x3c, 0xdd, 0xeb, 0x57, 0x9b, 0x1f, 0x47, 0xea, 0x1f, 0xbe, 0xff, 0x0d, 0x00, 0x00, 0xff, - 0xff, 0x81, 0x96, 0x68, 0x13, 0xd5, 0x02, 0x00, 0x00, +func init() { proto.RegisterFile("mysqlctl.proto", fileDescriptor_mysqlctl_dc3430948664e7fa) } + +var fileDescriptor_mysqlctl_dc3430948664e7fa = []byte{ + // 339 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0x4d, 0x4f, 0xfa, 0x30, + 0x1c, 0xc7, 0xff, 0x84, 0xfc, 0xcd, 0xfc, 0x09, 0xce, 0x54, 0x79, 0x6a, 0xa2, 0xe0, 0x12, 0x95, + 0x13, 0x4d, 0xf4, 0xa4, 0x37, 0x25, 0xf1, 0x66, 0x4c, 0x4a, 0x4c, 0x8c, 0x17, 0x32, 0xa5, 0x8c, + 0x26, 0xb8, 0x42, 0x5b, 0x20, 0xbe, 0x05, 0x5f, 0xb5, 0xb1, 0x6b, 0xc7, 0xc6, 0xc0, 0xdb, 0xfa, + 0x7d, 0x6a, 0xf6, 0xd9, 0xe0, 0xf0, 0xf3, 0x4b, 0xcd, 0xa7, 0x1f, 0x7a, 0xda, 0x9b, 0x49, 0xa1, + 0x05, 0xf2, 0xdc, 0x39, 0x20, 0x50, 0x19, 0xe8, 0x50, 0x6a, 0xca, 0xe6, 0x0b, 0xa6, 0x34, 0x6a, + 0xc3, 0x81, 0xf1, 0x46, 0xc3, 0x50, 0x46, 0xaa, 0x59, 0xea, 0x94, 0xbb, 0xfb, 0x14, 0x12, 0xe9, + 0x5e, 0x46, 0x2a, 0xf0, 0xa1, 0x6a, 0x0b, 0x6a, 0x26, 0x62, 0xc5, 0x82, 0x5b, 0xf0, 0x07, 0x93, + 0x85, 0x1e, 0x89, 0x55, 0xec, 0x46, 0x2e, 0xc1, 0x5f, 0x85, 0x5c, 0x0f, 0xc7, 0x42, 0x0e, 0x93, + 0x6a, 0xb3, 0xd4, 0x29, 0x75, 0x3d, 0x5a, 0xfd, 0x95, 0x1f, 0x85, 0x7c, 0x32, 0x62, 0x80, 0xe0, + 0x68, 0x5d, 0xb5, 0x73, 0x4d, 0xa8, 0xd3, 0x45, 0x6c, 0x02, 0x2f, 0xb3, 0x48, 0x86, 0x23, 0x66, + 0x57, 0x83, 0x16, 0x34, 0x0a, 0x8e, 0x2d, 0xd5, 0xe0, 0x98, 0x32, 0x1e, 0x73, 0xdd, 0x17, 0xf1, + 0x98, 0x47, 0xae, 0x51, 0x87, 0x93, 0xbc, 0x6c, 0xe3, 0x46, 0x1f, 0x4b, 0xa6, 0x26, 0xf9, 0x7c, + 0x03, 0x6a, 0x1b, 0x7a, 0x52, 0xb8, 0xfe, 0x2e, 0x83, 0x67, 0x2e, 0xee, 0xeb, 0x29, 0xba, 0x83, + 0xff, 0x86, 0x00, 0xaa, 0xf7, 0x52, 0xac, 0x59, 0x86, 0xb8, 0x51, 0xd0, 0xed, 0xbd, 0xff, 0x50, + 0x1f, 0x3c, 0xf7, 0xc6, 0xa8, 0x95, 0x89, 0xe5, 0x01, 0x62, 0xbc, 0xcd, 0x4a, 0x47, 0x5e, 0xc1, + 0xdf, 0x00, 0x81, 0x3a, 0xeb, 0xc2, 0x76, 0x7a, 0xf8, 0xfc, 0x8f, 0x44, 0xba, 0xfc, 0x0c, 0x95, + 0x2c, 0x30, 0x74, 0x9a, 0x29, 0x15, 0xf9, 0xe2, 0xb3, 0x5d, 0x76, 0x3a, 0x48, 0xa1, 0x9a, 0x23, + 0x8a, 0x72, 0x95, 0xe2, 0x27, 0xc0, 0xed, 0x9d, 0xbe, 0xdb, 0x7c, 0xb8, 0x7a, 0xbb, 0x58, 0x72, + 0xcd, 0x94, 0xea, 0x71, 0x41, 0x92, 0x27, 0x12, 0x09, 0xb2, 0xd4, 0xc4, 0xfc, 0xdc, 0xc4, 0x0d, + 0xbc, 0xef, 0x99, 0xf3, 0xcd, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb8, 0xe2, 0x15, 0x86, 0xfe, + 0x02, 0x00, 0x00, } diff --git a/go/vt/proto/query/query.pb.go b/go/vt/proto/query/query.pb.go index 0accc15f47b..98f8a7ac9f7 100644 --- a/go/vt/proto/query/query.pb.go +++ b/go/vt/proto/query/query.pb.go @@ -1,74 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: query.proto -/* -Package query is a generated protocol buffer package. - -It is generated from these files: - query.proto - -It has these top-level messages: - Target - VTGateCallerID - EventToken - Value - BindVariable - BoundQuery - ExecuteOptions - Field - Row - ResultExtras - QueryResult - StreamEvent - ExecuteRequest - ExecuteResponse - ResultWithError - ExecuteBatchRequest - ExecuteBatchResponse - StreamExecuteRequest - StreamExecuteResponse - BeginRequest - BeginResponse - CommitRequest - CommitResponse - RollbackRequest - RollbackResponse - PrepareRequest - PrepareResponse - CommitPreparedRequest - CommitPreparedResponse - RollbackPreparedRequest - RollbackPreparedResponse - CreateTransactionRequest - CreateTransactionResponse - StartCommitRequest - StartCommitResponse - SetRollbackRequest - SetRollbackResponse - ConcludeTransactionRequest - ConcludeTransactionResponse - ReadTransactionRequest - ReadTransactionResponse - BeginExecuteRequest - BeginExecuteResponse - BeginExecuteBatchRequest - BeginExecuteBatchResponse - MessageStreamRequest - MessageStreamResponse - MessageAckRequest - MessageAckResponse - SplitQueryRequest - QuerySplit - SplitQueryResponse - StreamHealthRequest - RealtimeStats - AggregateStats - StreamHealthResponse - UpdateStreamRequest - UpdateStreamResponse - TransactionMetadata -*/ -package query +package query // import "vitess.io/vitess/go/vt/proto/query" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -161,7 +94,9 @@ var MySqlFlag_value = map[string]int32{ func (x MySqlFlag) String() string { return proto.EnumName(MySqlFlag_name, int32(x)) } -func (MySqlFlag) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (MySqlFlag) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{0} +} // Flag allows us to qualify types by their common properties. type Flag int32 @@ -198,7 +133,9 @@ var Flag_value = map[string]int32{ func (x Flag) String() string { return proto.EnumName(Flag_name, int32(x)) } -func (Flag) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +func (Flag) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{1} +} // Type defines the various supported data types in bind vars // and query results. @@ -377,7 +314,9 @@ var Type_value = map[string]int32{ func (x Type) String() string { return proto.EnumName(Type_name, int32(x)) } -func (Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } +func (Type) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{2} +} // TransactionState represents the state of a distributed transaction. type TransactionState int32 @@ -405,7 +344,9 @@ var TransactionState_value = map[string]int32{ func (x TransactionState) String() string { return proto.EnumName(TransactionState_name, int32(x)) } -func (TransactionState) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } +func (TransactionState) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{3} +} type ExecuteOptions_IncludedFields int32 @@ -430,7 +371,7 @@ func (x ExecuteOptions_IncludedFields) String() string { return proto.EnumName(ExecuteOptions_IncludedFields_name, int32(x)) } func (ExecuteOptions_IncludedFields) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{6, 0} + return fileDescriptor_query_05c95bca0e3aaf7a, []int{6, 0} } type ExecuteOptions_Workload int32 @@ -458,7 +399,9 @@ var ExecuteOptions_Workload_value = map[string]int32{ func (x ExecuteOptions_Workload) String() string { return proto.EnumName(ExecuteOptions_Workload_name, int32(x)) } -func (ExecuteOptions_Workload) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{6, 1} } +func (ExecuteOptions_Workload) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{6, 1} +} type ExecuteOptions_TransactionIsolation int32 @@ -489,7 +432,7 @@ func (x ExecuteOptions_TransactionIsolation) String() string { return proto.EnumName(ExecuteOptions_TransactionIsolation_name, int32(x)) } func (ExecuteOptions_TransactionIsolation) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{6, 2} + return fileDescriptor_query_05c95bca0e3aaf7a, []int{6, 2} } // The category of one statement. @@ -516,7 +459,7 @@ func (x StreamEvent_Statement_Category) String() string { return proto.EnumName(StreamEvent_Statement_Category_name, int32(x)) } func (StreamEvent_Statement_Category) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{11, 0, 0} + return fileDescriptor_query_05c95bca0e3aaf7a, []int{11, 0, 0} } type SplitQueryRequest_Algorithm int32 @@ -539,7 +482,7 @@ func (x SplitQueryRequest_Algorithm) String() string { return proto.EnumName(SplitQueryRequest_Algorithm_name, int32(x)) } func (SplitQueryRequest_Algorithm) EnumDescriptor() ([]byte, []int) { - return fileDescriptor0, []int{49, 0} + return fileDescriptor_query_05c95bca0e3aaf7a, []int{49, 0} } // Target describes what the client expects the tablet is. @@ -550,13 +493,35 @@ type Target struct { TabletType topodata.TabletType `protobuf:"varint,3,opt,name=tablet_type,json=tabletType,enum=topodata.TabletType" json:"tablet_type,omitempty"` // cell is used for routing queries between vtgate and vttablets. It // is not used when Target is part of the Session sent by the client. - Cell string `protobuf:"bytes,4,opt,name=cell" json:"cell,omitempty"` + Cell string `protobuf:"bytes,4,opt,name=cell" json:"cell,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *Target) Reset() { *m = Target{} } -func (m *Target) String() string { return proto.CompactTextString(m) } -func (*Target) ProtoMessage() {} -func (*Target) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (m *Target) Reset() { *m = Target{} } +func (m *Target) String() string { return proto.CompactTextString(m) } +func (*Target) ProtoMessage() {} +func (*Target) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{0} +} +func (m *Target) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Target.Unmarshal(m, b) +} +func (m *Target) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Target.Marshal(b, m, deterministic) +} +func (dst *Target) XXX_Merge(src proto.Message) { + xxx_messageInfo_Target.Merge(dst, src) +} +func (m *Target) XXX_Size() int { + return xxx_messageInfo_Target.Size(m) +} +func (m *Target) XXX_DiscardUnknown() { + xxx_messageInfo_Target.DiscardUnknown(m) +} + +var xxx_messageInfo_Target proto.InternalMessageInfo func (m *Target) GetKeyspace() string { if m != nil { @@ -595,14 +560,36 @@ func (m *Target) GetCell() string { // structure, which is not secure at all, because it is provided // by the Vitess client. type VTGateCallerID struct { - Username string `protobuf:"bytes,1,opt,name=username" json:"username,omitempty"` - Groups []string `protobuf:"bytes,2,rep,name=groups" json:"groups,omitempty"` + Username string `protobuf:"bytes,1,opt,name=username" json:"username,omitempty"` + Groups []string `protobuf:"bytes,2,rep,name=groups" json:"groups,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *VTGateCallerID) Reset() { *m = VTGateCallerID{} } +func (m *VTGateCallerID) String() string { return proto.CompactTextString(m) } +func (*VTGateCallerID) ProtoMessage() {} +func (*VTGateCallerID) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{1} +} +func (m *VTGateCallerID) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_VTGateCallerID.Unmarshal(m, b) +} +func (m *VTGateCallerID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_VTGateCallerID.Marshal(b, m, deterministic) +} +func (dst *VTGateCallerID) XXX_Merge(src proto.Message) { + xxx_messageInfo_VTGateCallerID.Merge(dst, src) +} +func (m *VTGateCallerID) XXX_Size() int { + return xxx_messageInfo_VTGateCallerID.Size(m) +} +func (m *VTGateCallerID) XXX_DiscardUnknown() { + xxx_messageInfo_VTGateCallerID.DiscardUnknown(m) } -func (m *VTGateCallerID) Reset() { *m = VTGateCallerID{} } -func (m *VTGateCallerID) String() string { return proto.CompactTextString(m) } -func (*VTGateCallerID) ProtoMessage() {} -func (*VTGateCallerID) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +var xxx_messageInfo_VTGateCallerID proto.InternalMessageInfo func (m *VTGateCallerID) GetUsername() string { if m != nil { @@ -630,13 +617,35 @@ type EventToken struct { Shard string `protobuf:"bytes,2,opt,name=shard" json:"shard,omitempty"` // The position on the replication stream after this statement was applied. // It is not the transaction ID / GTID, but the position / GTIDSet. - Position string `protobuf:"bytes,3,opt,name=position" json:"position,omitempty"` + Position string `protobuf:"bytes,3,opt,name=position" json:"position,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *EventToken) Reset() { *m = EventToken{} } -func (m *EventToken) String() string { return proto.CompactTextString(m) } -func (*EventToken) ProtoMessage() {} -func (*EventToken) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } +func (m *EventToken) Reset() { *m = EventToken{} } +func (m *EventToken) String() string { return proto.CompactTextString(m) } +func (*EventToken) ProtoMessage() {} +func (*EventToken) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{2} +} +func (m *EventToken) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_EventToken.Unmarshal(m, b) +} +func (m *EventToken) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_EventToken.Marshal(b, m, deterministic) +} +func (dst *EventToken) XXX_Merge(src proto.Message) { + xxx_messageInfo_EventToken.Merge(dst, src) +} +func (m *EventToken) XXX_Size() int { + return xxx_messageInfo_EventToken.Size(m) +} +func (m *EventToken) XXX_DiscardUnknown() { + xxx_messageInfo_EventToken.DiscardUnknown(m) +} + +var xxx_messageInfo_EventToken proto.InternalMessageInfo func (m *EventToken) GetTimestamp() int64 { if m != nil { @@ -661,14 +670,36 @@ func (m *EventToken) GetPosition() string { // Value represents a typed value. type Value struct { - Type Type `protobuf:"varint,1,opt,name=type,enum=query.Type" json:"type,omitempty"` - Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` + Type Type `protobuf:"varint,1,opt,name=type,enum=query.Type" json:"type,omitempty"` + Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Value) Reset() { *m = Value{} } +func (m *Value) String() string { return proto.CompactTextString(m) } +func (*Value) ProtoMessage() {} +func (*Value) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{3} +} +func (m *Value) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Value.Unmarshal(m, b) +} +func (m *Value) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Value.Marshal(b, m, deterministic) +} +func (dst *Value) XXX_Merge(src proto.Message) { + xxx_messageInfo_Value.Merge(dst, src) +} +func (m *Value) XXX_Size() int { + return xxx_messageInfo_Value.Size(m) +} +func (m *Value) XXX_DiscardUnknown() { + xxx_messageInfo_Value.DiscardUnknown(m) } -func (m *Value) Reset() { *m = Value{} } -func (m *Value) String() string { return proto.CompactTextString(m) } -func (*Value) ProtoMessage() {} -func (*Value) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } +var xxx_messageInfo_Value proto.InternalMessageInfo func (m *Value) GetType() Type { if m != nil { @@ -689,13 +720,35 @@ type BindVariable struct { Type Type `protobuf:"varint,1,opt,name=type,enum=query.Type" json:"type,omitempty"` Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` // values are set if type is TUPLE. - Values []*Value `protobuf:"bytes,3,rep,name=values" json:"values,omitempty"` + Values []*Value `protobuf:"bytes,3,rep,name=values" json:"values,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *BindVariable) Reset() { *m = BindVariable{} } -func (m *BindVariable) String() string { return proto.CompactTextString(m) } -func (*BindVariable) ProtoMessage() {} -func (*BindVariable) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} } +func (m *BindVariable) Reset() { *m = BindVariable{} } +func (m *BindVariable) String() string { return proto.CompactTextString(m) } +func (*BindVariable) ProtoMessage() {} +func (*BindVariable) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{4} +} +func (m *BindVariable) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BindVariable.Unmarshal(m, b) +} +func (m *BindVariable) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BindVariable.Marshal(b, m, deterministic) +} +func (dst *BindVariable) XXX_Merge(src proto.Message) { + xxx_messageInfo_BindVariable.Merge(dst, src) +} +func (m *BindVariable) XXX_Size() int { + return xxx_messageInfo_BindVariable.Size(m) +} +func (m *BindVariable) XXX_DiscardUnknown() { + xxx_messageInfo_BindVariable.DiscardUnknown(m) +} + +var xxx_messageInfo_BindVariable proto.InternalMessageInfo func (m *BindVariable) GetType() Type { if m != nil { @@ -724,13 +777,35 @@ type BoundQuery struct { Sql string `protobuf:"bytes,1,opt,name=sql" json:"sql,omitempty"` // bind_variables is a map of all bind variables to expand in the query. // nil values are not allowed. Use NULL_TYPE to express a NULL value. - BindVariables map[string]*BindVariable `protobuf:"bytes,2,rep,name=bind_variables,json=bindVariables" json:"bind_variables,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + BindVariables map[string]*BindVariable `protobuf:"bytes,2,rep,name=bind_variables,json=bindVariables" json:"bind_variables,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *BoundQuery) Reset() { *m = BoundQuery{} } +func (m *BoundQuery) String() string { return proto.CompactTextString(m) } +func (*BoundQuery) ProtoMessage() {} +func (*BoundQuery) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{5} +} +func (m *BoundQuery) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BoundQuery.Unmarshal(m, b) +} +func (m *BoundQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BoundQuery.Marshal(b, m, deterministic) +} +func (dst *BoundQuery) XXX_Merge(src proto.Message) { + xxx_messageInfo_BoundQuery.Merge(dst, src) +} +func (m *BoundQuery) XXX_Size() int { + return xxx_messageInfo_BoundQuery.Size(m) +} +func (m *BoundQuery) XXX_DiscardUnknown() { + xxx_messageInfo_BoundQuery.DiscardUnknown(m) } -func (m *BoundQuery) Reset() { *m = BoundQuery{} } -func (m *BoundQuery) String() string { return proto.CompactTextString(m) } -func (*BoundQuery) ProtoMessage() {} -func (*BoundQuery) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } +var xxx_messageInfo_BoundQuery proto.InternalMessageInfo func (m *BoundQuery) GetSql() string { if m != nil { @@ -776,13 +851,35 @@ type ExecuteOptions struct { TransactionIsolation ExecuteOptions_TransactionIsolation `protobuf:"varint,9,opt,name=transaction_isolation,json=transactionIsolation,enum=query.ExecuteOptions_TransactionIsolation" json:"transaction_isolation,omitempty"` // skip_query_plan_cache specifies if the query plan shoud be cached by vitess. // By default all query plans are cached. - SkipQueryPlanCache bool `protobuf:"varint,10,opt,name=skip_query_plan_cache,json=skipQueryPlanCache" json:"skip_query_plan_cache,omitempty"` + SkipQueryPlanCache bool `protobuf:"varint,10,opt,name=skip_query_plan_cache,json=skipQueryPlanCache" json:"skip_query_plan_cache,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ExecuteOptions) Reset() { *m = ExecuteOptions{} } -func (m *ExecuteOptions) String() string { return proto.CompactTextString(m) } -func (*ExecuteOptions) ProtoMessage() {} -func (*ExecuteOptions) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} } +func (m *ExecuteOptions) Reset() { *m = ExecuteOptions{} } +func (m *ExecuteOptions) String() string { return proto.CompactTextString(m) } +func (*ExecuteOptions) ProtoMessage() {} +func (*ExecuteOptions) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{6} +} +func (m *ExecuteOptions) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteOptions.Unmarshal(m, b) +} +func (m *ExecuteOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteOptions.Marshal(b, m, deterministic) +} +func (dst *ExecuteOptions) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteOptions.Merge(dst, src) +} +func (m *ExecuteOptions) XXX_Size() int { + return xxx_messageInfo_ExecuteOptions.Size(m) +} +func (m *ExecuteOptions) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteOptions.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecuteOptions proto.InternalMessageInfo func (m *ExecuteOptions) GetIncludeEventToken() bool { if m != nil { @@ -860,13 +957,35 @@ type Field struct { // decimals is actualy a uint8. Only the lower 8 bits are used. Decimals uint32 `protobuf:"varint,9,opt,name=decimals" json:"decimals,omitempty"` // flags is actually a uint16. Only the lower 16 bits are used. - Flags uint32 `protobuf:"varint,10,opt,name=flags" json:"flags,omitempty"` + Flags uint32 `protobuf:"varint,10,opt,name=flags" json:"flags,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Field) Reset() { *m = Field{} } +func (m *Field) String() string { return proto.CompactTextString(m) } +func (*Field) ProtoMessage() {} +func (*Field) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{7} +} +func (m *Field) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Field.Unmarshal(m, b) +} +func (m *Field) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Field.Marshal(b, m, deterministic) +} +func (dst *Field) XXX_Merge(src proto.Message) { + xxx_messageInfo_Field.Merge(dst, src) +} +func (m *Field) XXX_Size() int { + return xxx_messageInfo_Field.Size(m) +} +func (m *Field) XXX_DiscardUnknown() { + xxx_messageInfo_Field.DiscardUnknown(m) } -func (m *Field) Reset() { *m = Field{} } -func (m *Field) String() string { return proto.CompactTextString(m) } -func (*Field) ProtoMessage() {} -func (*Field) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} } +var xxx_messageInfo_Field proto.InternalMessageInfo func (m *Field) GetName() string { if m != nil { @@ -946,13 +1065,35 @@ type Row struct { // to know the offset where the next value begins in values. Lengths []int64 `protobuf:"zigzag64,1,rep,packed,name=lengths" json:"lengths,omitempty"` // values contains a concatenation of all values in the row. - Values []byte `protobuf:"bytes,2,opt,name=values,proto3" json:"values,omitempty"` + Values []byte `protobuf:"bytes,2,opt,name=values,proto3" json:"values,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *Row) Reset() { *m = Row{} } -func (m *Row) String() string { return proto.CompactTextString(m) } -func (*Row) ProtoMessage() {} -func (*Row) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} } +func (m *Row) Reset() { *m = Row{} } +func (m *Row) String() string { return proto.CompactTextString(m) } +func (*Row) ProtoMessage() {} +func (*Row) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{8} +} +func (m *Row) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Row.Unmarshal(m, b) +} +func (m *Row) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Row.Marshal(b, m, deterministic) +} +func (dst *Row) XXX_Merge(src proto.Message) { + xxx_messageInfo_Row.Merge(dst, src) +} +func (m *Row) XXX_Size() int { + return xxx_messageInfo_Row.Size(m) +} +func (m *Row) XXX_DiscardUnknown() { + xxx_messageInfo_Row.DiscardUnknown(m) +} + +var xxx_messageInfo_Row proto.InternalMessageInfo func (m *Row) GetLengths() []int64 { if m != nil { @@ -976,13 +1117,35 @@ type ResultExtras struct { EventToken *EventToken `protobuf:"bytes,1,opt,name=event_token,json=eventToken" json:"event_token,omitempty"` // If set, it means the data returned with this result is fresher // than the compare_token passed in the ExecuteOptions. - Fresher bool `protobuf:"varint,2,opt,name=fresher" json:"fresher,omitempty"` + Fresher bool `protobuf:"varint,2,opt,name=fresher" json:"fresher,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ResultExtras) Reset() { *m = ResultExtras{} } +func (m *ResultExtras) String() string { return proto.CompactTextString(m) } +func (*ResultExtras) ProtoMessage() {} +func (*ResultExtras) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{9} +} +func (m *ResultExtras) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ResultExtras.Unmarshal(m, b) +} +func (m *ResultExtras) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ResultExtras.Marshal(b, m, deterministic) +} +func (dst *ResultExtras) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResultExtras.Merge(dst, src) +} +func (m *ResultExtras) XXX_Size() int { + return xxx_messageInfo_ResultExtras.Size(m) +} +func (m *ResultExtras) XXX_DiscardUnknown() { + xxx_messageInfo_ResultExtras.DiscardUnknown(m) } -func (m *ResultExtras) Reset() { *m = ResultExtras{} } -func (m *ResultExtras) String() string { return proto.CompactTextString(m) } -func (*ResultExtras) ProtoMessage() {} -func (*ResultExtras) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} } +var xxx_messageInfo_ResultExtras proto.InternalMessageInfo func (m *ResultExtras) GetEventToken() *EventToken { if m != nil { @@ -1008,17 +1171,39 @@ func (m *ResultExtras) GetFresher() bool { // len(QueryResult[0].fields) is always equal to len(row) (for each // row in rows for each QueryResult in QueryResult[1:]). type QueryResult struct { - Fields []*Field `protobuf:"bytes,1,rep,name=fields" json:"fields,omitempty"` - RowsAffected uint64 `protobuf:"varint,2,opt,name=rows_affected,json=rowsAffected" json:"rows_affected,omitempty"` - InsertId uint64 `protobuf:"varint,3,opt,name=insert_id,json=insertId" json:"insert_id,omitempty"` - Rows []*Row `protobuf:"bytes,4,rep,name=rows" json:"rows,omitempty"` - Extras *ResultExtras `protobuf:"bytes,5,opt,name=extras" json:"extras,omitempty"` + Fields []*Field `protobuf:"bytes,1,rep,name=fields" json:"fields,omitempty"` + RowsAffected uint64 `protobuf:"varint,2,opt,name=rows_affected,json=rowsAffected" json:"rows_affected,omitempty"` + InsertId uint64 `protobuf:"varint,3,opt,name=insert_id,json=insertId" json:"insert_id,omitempty"` + Rows []*Row `protobuf:"bytes,4,rep,name=rows" json:"rows,omitempty"` + Extras *ResultExtras `protobuf:"bytes,5,opt,name=extras" json:"extras,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *QueryResult) Reset() { *m = QueryResult{} } -func (m *QueryResult) String() string { return proto.CompactTextString(m) } -func (*QueryResult) ProtoMessage() {} -func (*QueryResult) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} } +func (m *QueryResult) Reset() { *m = QueryResult{} } +func (m *QueryResult) String() string { return proto.CompactTextString(m) } +func (*QueryResult) ProtoMessage() {} +func (*QueryResult) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{10} +} +func (m *QueryResult) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_QueryResult.Unmarshal(m, b) +} +func (m *QueryResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_QueryResult.Marshal(b, m, deterministic) +} +func (dst *QueryResult) XXX_Merge(src proto.Message) { + xxx_messageInfo_QueryResult.Merge(dst, src) +} +func (m *QueryResult) XXX_Size() int { + return xxx_messageInfo_QueryResult.Size(m) +} +func (m *QueryResult) XXX_DiscardUnknown() { + xxx_messageInfo_QueryResult.DiscardUnknown(m) +} + +var xxx_messageInfo_QueryResult proto.InternalMessageInfo func (m *QueryResult) GetFields() []*Field { if m != nil { @@ -1062,13 +1247,35 @@ type StreamEvent struct { // The statements in this transaction. Statements []*StreamEvent_Statement `protobuf:"bytes,1,rep,name=statements" json:"statements,omitempty"` // The Event Token for this event. - EventToken *EventToken `protobuf:"bytes,2,opt,name=event_token,json=eventToken" json:"event_token,omitempty"` + EventToken *EventToken `protobuf:"bytes,2,opt,name=event_token,json=eventToken" json:"event_token,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StreamEvent) Reset() { *m = StreamEvent{} } +func (m *StreamEvent) String() string { return proto.CompactTextString(m) } +func (*StreamEvent) ProtoMessage() {} +func (*StreamEvent) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{11} +} +func (m *StreamEvent) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamEvent.Unmarshal(m, b) +} +func (m *StreamEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamEvent.Marshal(b, m, deterministic) +} +func (dst *StreamEvent) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamEvent.Merge(dst, src) +} +func (m *StreamEvent) XXX_Size() int { + return xxx_messageInfo_StreamEvent.Size(m) +} +func (m *StreamEvent) XXX_DiscardUnknown() { + xxx_messageInfo_StreamEvent.DiscardUnknown(m) } -func (m *StreamEvent) Reset() { *m = StreamEvent{} } -func (m *StreamEvent) String() string { return proto.CompactTextString(m) } -func (*StreamEvent) ProtoMessage() {} -func (*StreamEvent) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} } +var xxx_messageInfo_StreamEvent proto.InternalMessageInfo func (m *StreamEvent) GetStatements() []*StreamEvent_Statement { if m != nil { @@ -1093,13 +1300,35 @@ type StreamEvent_Statement struct { PrimaryKeyValues []*Row `protobuf:"bytes,4,rep,name=primary_key_values,json=primaryKeyValues" json:"primary_key_values,omitempty"` // sql is set for all queries. // FIXME(alainjobart) we may not need it for DMLs. - Sql []byte `protobuf:"bytes,5,opt,name=sql,proto3" json:"sql,omitempty"` + Sql []byte `protobuf:"bytes,5,opt,name=sql,proto3" json:"sql,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StreamEvent_Statement) Reset() { *m = StreamEvent_Statement{} } +func (m *StreamEvent_Statement) String() string { return proto.CompactTextString(m) } +func (*StreamEvent_Statement) ProtoMessage() {} +func (*StreamEvent_Statement) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{11, 0} +} +func (m *StreamEvent_Statement) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamEvent_Statement.Unmarshal(m, b) +} +func (m *StreamEvent_Statement) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamEvent_Statement.Marshal(b, m, deterministic) +} +func (dst *StreamEvent_Statement) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamEvent_Statement.Merge(dst, src) +} +func (m *StreamEvent_Statement) XXX_Size() int { + return xxx_messageInfo_StreamEvent_Statement.Size(m) +} +func (m *StreamEvent_Statement) XXX_DiscardUnknown() { + xxx_messageInfo_StreamEvent_Statement.DiscardUnknown(m) } -func (m *StreamEvent_Statement) Reset() { *m = StreamEvent_Statement{} } -func (m *StreamEvent_Statement) String() string { return proto.CompactTextString(m) } -func (*StreamEvent_Statement) ProtoMessage() {} -func (*StreamEvent_Statement) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11, 0} } +var xxx_messageInfo_StreamEvent_Statement proto.InternalMessageInfo func (m *StreamEvent_Statement) GetCategory() StreamEvent_Statement_Category { if m != nil { @@ -1138,18 +1367,40 @@ func (m *StreamEvent_Statement) GetSql() []byte { // ExecuteRequest is the payload to Execute type ExecuteRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - Query *BoundQuery `protobuf:"bytes,4,opt,name=query" json:"query,omitempty"` - TransactionId int64 `protobuf:"varint,5,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` - Options *ExecuteOptions `protobuf:"bytes,6,opt,name=options" json:"options,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + Query *BoundQuery `protobuf:"bytes,4,opt,name=query" json:"query,omitempty"` + TransactionId int64 `protobuf:"varint,5,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + Options *ExecuteOptions `protobuf:"bytes,6,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteRequest) Reset() { *m = ExecuteRequest{} } +func (m *ExecuteRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteRequest) ProtoMessage() {} +func (*ExecuteRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{12} +} +func (m *ExecuteRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteRequest.Unmarshal(m, b) +} +func (m *ExecuteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteRequest.Merge(dst, src) +} +func (m *ExecuteRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteRequest.Size(m) +} +func (m *ExecuteRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteRequest.DiscardUnknown(m) } -func (m *ExecuteRequest) Reset() { *m = ExecuteRequest{} } -func (m *ExecuteRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteRequest) ProtoMessage() {} -func (*ExecuteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} } +var xxx_messageInfo_ExecuteRequest proto.InternalMessageInfo func (m *ExecuteRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -1195,13 +1446,35 @@ func (m *ExecuteRequest) GetOptions() *ExecuteOptions { // ExecuteResponse is the returned value from Execute type ExecuteResponse struct { - Result *QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + Result *QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ExecuteResponse) Reset() { *m = ExecuteResponse{} } -func (m *ExecuteResponse) String() string { return proto.CompactTextString(m) } -func (*ExecuteResponse) ProtoMessage() {} -func (*ExecuteResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} } +func (m *ExecuteResponse) Reset() { *m = ExecuteResponse{} } +func (m *ExecuteResponse) String() string { return proto.CompactTextString(m) } +func (*ExecuteResponse) ProtoMessage() {} +func (*ExecuteResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{13} +} +func (m *ExecuteResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteResponse.Unmarshal(m, b) +} +func (m *ExecuteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteResponse.Merge(dst, src) +} +func (m *ExecuteResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteResponse.Size(m) +} +func (m *ExecuteResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecuteResponse proto.InternalMessageInfo func (m *ExecuteResponse) GetResult() *QueryResult { if m != nil { @@ -1217,13 +1490,35 @@ type ResultWithError struct { // error contains an query level error, only set if result is unset. Error *vtrpc.RPCError `protobuf:"bytes,1,opt,name=error" json:"error,omitempty"` // result contains the query result, only set if error is unset. - Result *QueryResult `protobuf:"bytes,2,opt,name=result" json:"result,omitempty"` + Result *QueryResult `protobuf:"bytes,2,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ResultWithError) Reset() { *m = ResultWithError{} } -func (m *ResultWithError) String() string { return proto.CompactTextString(m) } -func (*ResultWithError) ProtoMessage() {} -func (*ResultWithError) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} } +func (m *ResultWithError) Reset() { *m = ResultWithError{} } +func (m *ResultWithError) String() string { return proto.CompactTextString(m) } +func (*ResultWithError) ProtoMessage() {} +func (*ResultWithError) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{14} +} +func (m *ResultWithError) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ResultWithError.Unmarshal(m, b) +} +func (m *ResultWithError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ResultWithError.Marshal(b, m, deterministic) +} +func (dst *ResultWithError) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResultWithError.Merge(dst, src) +} +func (m *ResultWithError) XXX_Size() int { + return xxx_messageInfo_ResultWithError.Size(m) +} +func (m *ResultWithError) XXX_DiscardUnknown() { + xxx_messageInfo_ResultWithError.DiscardUnknown(m) +} + +var xxx_messageInfo_ResultWithError proto.InternalMessageInfo func (m *ResultWithError) GetError() *vtrpc.RPCError { if m != nil { @@ -1241,19 +1536,41 @@ func (m *ResultWithError) GetResult() *QueryResult { // ExecuteBatchRequest is the payload to ExecuteBatch type ExecuteBatchRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - Queries []*BoundQuery `protobuf:"bytes,4,rep,name=queries" json:"queries,omitempty"` - AsTransaction bool `protobuf:"varint,5,opt,name=as_transaction,json=asTransaction" json:"as_transaction,omitempty"` - TransactionId int64 `protobuf:"varint,6,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` - Options *ExecuteOptions `protobuf:"bytes,7,opt,name=options" json:"options,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + Queries []*BoundQuery `protobuf:"bytes,4,rep,name=queries" json:"queries,omitempty"` + AsTransaction bool `protobuf:"varint,5,opt,name=as_transaction,json=asTransaction" json:"as_transaction,omitempty"` + TransactionId int64 `protobuf:"varint,6,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + Options *ExecuteOptions `protobuf:"bytes,7,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ExecuteBatchRequest) Reset() { *m = ExecuteBatchRequest{} } -func (m *ExecuteBatchRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteBatchRequest) ProtoMessage() {} -func (*ExecuteBatchRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} } +func (m *ExecuteBatchRequest) Reset() { *m = ExecuteBatchRequest{} } +func (m *ExecuteBatchRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteBatchRequest) ProtoMessage() {} +func (*ExecuteBatchRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{15} +} +func (m *ExecuteBatchRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteBatchRequest.Unmarshal(m, b) +} +func (m *ExecuteBatchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteBatchRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteBatchRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteBatchRequest.Merge(dst, src) +} +func (m *ExecuteBatchRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteBatchRequest.Size(m) +} +func (m *ExecuteBatchRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteBatchRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecuteBatchRequest proto.InternalMessageInfo func (m *ExecuteBatchRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -1306,13 +1623,35 @@ func (m *ExecuteBatchRequest) GetOptions() *ExecuteOptions { // ExecuteBatchResponse is the returned value from ExecuteBatch type ExecuteBatchResponse struct { - Results []*QueryResult `protobuf:"bytes,1,rep,name=results" json:"results,omitempty"` + Results []*QueryResult `protobuf:"bytes,1,rep,name=results" json:"results,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteBatchResponse) Reset() { *m = ExecuteBatchResponse{} } +func (m *ExecuteBatchResponse) String() string { return proto.CompactTextString(m) } +func (*ExecuteBatchResponse) ProtoMessage() {} +func (*ExecuteBatchResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{16} +} +func (m *ExecuteBatchResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteBatchResponse.Unmarshal(m, b) +} +func (m *ExecuteBatchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteBatchResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteBatchResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteBatchResponse.Merge(dst, src) +} +func (m *ExecuteBatchResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteBatchResponse.Size(m) +} +func (m *ExecuteBatchResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteBatchResponse.DiscardUnknown(m) } -func (m *ExecuteBatchResponse) Reset() { *m = ExecuteBatchResponse{} } -func (m *ExecuteBatchResponse) String() string { return proto.CompactTextString(m) } -func (*ExecuteBatchResponse) ProtoMessage() {} -func (*ExecuteBatchResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} } +var xxx_messageInfo_ExecuteBatchResponse proto.InternalMessageInfo func (m *ExecuteBatchResponse) GetResults() []*QueryResult { if m != nil { @@ -1323,17 +1662,39 @@ func (m *ExecuteBatchResponse) GetResults() []*QueryResult { // StreamExecuteRequest is the payload to StreamExecute type StreamExecuteRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - Query *BoundQuery `protobuf:"bytes,4,opt,name=query" json:"query,omitempty"` - Options *ExecuteOptions `protobuf:"bytes,5,opt,name=options" json:"options,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + Query *BoundQuery `protobuf:"bytes,4,opt,name=query" json:"query,omitempty"` + Options *ExecuteOptions `protobuf:"bytes,5,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StreamExecuteRequest) Reset() { *m = StreamExecuteRequest{} } +func (m *StreamExecuteRequest) String() string { return proto.CompactTextString(m) } +func (*StreamExecuteRequest) ProtoMessage() {} +func (*StreamExecuteRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{17} +} +func (m *StreamExecuteRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamExecuteRequest.Unmarshal(m, b) +} +func (m *StreamExecuteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamExecuteRequest.Marshal(b, m, deterministic) +} +func (dst *StreamExecuteRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamExecuteRequest.Merge(dst, src) +} +func (m *StreamExecuteRequest) XXX_Size() int { + return xxx_messageInfo_StreamExecuteRequest.Size(m) +} +func (m *StreamExecuteRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StreamExecuteRequest.DiscardUnknown(m) } -func (m *StreamExecuteRequest) Reset() { *m = StreamExecuteRequest{} } -func (m *StreamExecuteRequest) String() string { return proto.CompactTextString(m) } -func (*StreamExecuteRequest) ProtoMessage() {} -func (*StreamExecuteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} } +var xxx_messageInfo_StreamExecuteRequest proto.InternalMessageInfo func (m *StreamExecuteRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -1372,13 +1733,35 @@ func (m *StreamExecuteRequest) GetOptions() *ExecuteOptions { // StreamExecuteResponse is the returned value from StreamExecute type StreamExecuteResponse struct { - Result *QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + Result *QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StreamExecuteResponse) Reset() { *m = StreamExecuteResponse{} } +func (m *StreamExecuteResponse) String() string { return proto.CompactTextString(m) } +func (*StreamExecuteResponse) ProtoMessage() {} +func (*StreamExecuteResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{18} +} +func (m *StreamExecuteResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamExecuteResponse.Unmarshal(m, b) +} +func (m *StreamExecuteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamExecuteResponse.Marshal(b, m, deterministic) +} +func (dst *StreamExecuteResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamExecuteResponse.Merge(dst, src) +} +func (m *StreamExecuteResponse) XXX_Size() int { + return xxx_messageInfo_StreamExecuteResponse.Size(m) +} +func (m *StreamExecuteResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StreamExecuteResponse.DiscardUnknown(m) } -func (m *StreamExecuteResponse) Reset() { *m = StreamExecuteResponse{} } -func (m *StreamExecuteResponse) String() string { return proto.CompactTextString(m) } -func (*StreamExecuteResponse) ProtoMessage() {} -func (*StreamExecuteResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} } +var xxx_messageInfo_StreamExecuteResponse proto.InternalMessageInfo func (m *StreamExecuteResponse) GetResult() *QueryResult { if m != nil { @@ -1389,16 +1772,38 @@ func (m *StreamExecuteResponse) GetResult() *QueryResult { // BeginRequest is the payload to Begin type BeginRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - Options *ExecuteOptions `protobuf:"bytes,4,opt,name=options" json:"options,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + Options *ExecuteOptions `protobuf:"bytes,4,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *BeginRequest) Reset() { *m = BeginRequest{} } +func (m *BeginRequest) String() string { return proto.CompactTextString(m) } +func (*BeginRequest) ProtoMessage() {} +func (*BeginRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{19} +} +func (m *BeginRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BeginRequest.Unmarshal(m, b) +} +func (m *BeginRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BeginRequest.Marshal(b, m, deterministic) +} +func (dst *BeginRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_BeginRequest.Merge(dst, src) +} +func (m *BeginRequest) XXX_Size() int { + return xxx_messageInfo_BeginRequest.Size(m) +} +func (m *BeginRequest) XXX_DiscardUnknown() { + xxx_messageInfo_BeginRequest.DiscardUnknown(m) } -func (m *BeginRequest) Reset() { *m = BeginRequest{} } -func (m *BeginRequest) String() string { return proto.CompactTextString(m) } -func (*BeginRequest) ProtoMessage() {} -func (*BeginRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} } +var xxx_messageInfo_BeginRequest proto.InternalMessageInfo func (m *BeginRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -1430,13 +1835,35 @@ func (m *BeginRequest) GetOptions() *ExecuteOptions { // BeginResponse is the returned value from Begin type BeginResponse struct { - TransactionId int64 `protobuf:"varint,1,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + TransactionId int64 `protobuf:"varint,1,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *BeginResponse) Reset() { *m = BeginResponse{} } -func (m *BeginResponse) String() string { return proto.CompactTextString(m) } -func (*BeginResponse) ProtoMessage() {} -func (*BeginResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} } +func (m *BeginResponse) Reset() { *m = BeginResponse{} } +func (m *BeginResponse) String() string { return proto.CompactTextString(m) } +func (*BeginResponse) ProtoMessage() {} +func (*BeginResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{20} +} +func (m *BeginResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BeginResponse.Unmarshal(m, b) +} +func (m *BeginResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BeginResponse.Marshal(b, m, deterministic) +} +func (dst *BeginResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_BeginResponse.Merge(dst, src) +} +func (m *BeginResponse) XXX_Size() int { + return xxx_messageInfo_BeginResponse.Size(m) +} +func (m *BeginResponse) XXX_DiscardUnknown() { + xxx_messageInfo_BeginResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_BeginResponse proto.InternalMessageInfo func (m *BeginResponse) GetTransactionId() int64 { if m != nil { @@ -1447,16 +1874,38 @@ func (m *BeginResponse) GetTransactionId() int64 { // CommitRequest is the payload to Commit type CommitRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - TransactionId int64 `protobuf:"varint,4,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + TransactionId int64 `protobuf:"varint,4,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *CommitRequest) Reset() { *m = CommitRequest{} } -func (m *CommitRequest) String() string { return proto.CompactTextString(m) } -func (*CommitRequest) ProtoMessage() {} -func (*CommitRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} } +func (m *CommitRequest) Reset() { *m = CommitRequest{} } +func (m *CommitRequest) String() string { return proto.CompactTextString(m) } +func (*CommitRequest) ProtoMessage() {} +func (*CommitRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{21} +} +func (m *CommitRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CommitRequest.Unmarshal(m, b) +} +func (m *CommitRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CommitRequest.Marshal(b, m, deterministic) +} +func (dst *CommitRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CommitRequest.Merge(dst, src) +} +func (m *CommitRequest) XXX_Size() int { + return xxx_messageInfo_CommitRequest.Size(m) +} +func (m *CommitRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CommitRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_CommitRequest proto.InternalMessageInfo func (m *CommitRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -1488,25 +1937,69 @@ func (m *CommitRequest) GetTransactionId() int64 { // CommitResponse is the returned value from Commit type CommitResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *CommitResponse) Reset() { *m = CommitResponse{} } -func (m *CommitResponse) String() string { return proto.CompactTextString(m) } -func (*CommitResponse) ProtoMessage() {} -func (*CommitResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} } +func (m *CommitResponse) Reset() { *m = CommitResponse{} } +func (m *CommitResponse) String() string { return proto.CompactTextString(m) } +func (*CommitResponse) ProtoMessage() {} +func (*CommitResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{22} +} +func (m *CommitResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CommitResponse.Unmarshal(m, b) +} +func (m *CommitResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CommitResponse.Marshal(b, m, deterministic) +} +func (dst *CommitResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_CommitResponse.Merge(dst, src) +} +func (m *CommitResponse) XXX_Size() int { + return xxx_messageInfo_CommitResponse.Size(m) +} +func (m *CommitResponse) XXX_DiscardUnknown() { + xxx_messageInfo_CommitResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_CommitResponse proto.InternalMessageInfo // RollbackRequest is the payload to Rollback type RollbackRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - TransactionId int64 `protobuf:"varint,4,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + TransactionId int64 `protobuf:"varint,4,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *RollbackRequest) Reset() { *m = RollbackRequest{} } -func (m *RollbackRequest) String() string { return proto.CompactTextString(m) } -func (*RollbackRequest) ProtoMessage() {} -func (*RollbackRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{23} } +func (m *RollbackRequest) Reset() { *m = RollbackRequest{} } +func (m *RollbackRequest) String() string { return proto.CompactTextString(m) } +func (*RollbackRequest) ProtoMessage() {} +func (*RollbackRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{23} +} +func (m *RollbackRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RollbackRequest.Unmarshal(m, b) +} +func (m *RollbackRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RollbackRequest.Marshal(b, m, deterministic) +} +func (dst *RollbackRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_RollbackRequest.Merge(dst, src) +} +func (m *RollbackRequest) XXX_Size() int { + return xxx_messageInfo_RollbackRequest.Size(m) +} +func (m *RollbackRequest) XXX_DiscardUnknown() { + xxx_messageInfo_RollbackRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_RollbackRequest proto.InternalMessageInfo func (m *RollbackRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -1538,26 +2031,70 @@ func (m *RollbackRequest) GetTransactionId() int64 { // RollbackResponse is the returned value from Rollback type RollbackResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *RollbackResponse) Reset() { *m = RollbackResponse{} } -func (m *RollbackResponse) String() string { return proto.CompactTextString(m) } -func (*RollbackResponse) ProtoMessage() {} -func (*RollbackResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24} } +func (m *RollbackResponse) Reset() { *m = RollbackResponse{} } +func (m *RollbackResponse) String() string { return proto.CompactTextString(m) } +func (*RollbackResponse) ProtoMessage() {} +func (*RollbackResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{24} +} +func (m *RollbackResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RollbackResponse.Unmarshal(m, b) +} +func (m *RollbackResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RollbackResponse.Marshal(b, m, deterministic) +} +func (dst *RollbackResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_RollbackResponse.Merge(dst, src) +} +func (m *RollbackResponse) XXX_Size() int { + return xxx_messageInfo_RollbackResponse.Size(m) +} +func (m *RollbackResponse) XXX_DiscardUnknown() { + xxx_messageInfo_RollbackResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_RollbackResponse proto.InternalMessageInfo // PrepareRequest is the payload to Prepare type PrepareRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - TransactionId int64 `protobuf:"varint,4,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` - Dtid string `protobuf:"bytes,5,opt,name=dtid" json:"dtid,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + TransactionId int64 `protobuf:"varint,4,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + Dtid string `protobuf:"bytes,5,opt,name=dtid" json:"dtid,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *PrepareRequest) Reset() { *m = PrepareRequest{} } -func (m *PrepareRequest) String() string { return proto.CompactTextString(m) } -func (*PrepareRequest) ProtoMessage() {} -func (*PrepareRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} } +func (m *PrepareRequest) Reset() { *m = PrepareRequest{} } +func (m *PrepareRequest) String() string { return proto.CompactTextString(m) } +func (*PrepareRequest) ProtoMessage() {} +func (*PrepareRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{25} +} +func (m *PrepareRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PrepareRequest.Unmarshal(m, b) +} +func (m *PrepareRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PrepareRequest.Marshal(b, m, deterministic) +} +func (dst *PrepareRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_PrepareRequest.Merge(dst, src) +} +func (m *PrepareRequest) XXX_Size() int { + return xxx_messageInfo_PrepareRequest.Size(m) +} +func (m *PrepareRequest) XXX_DiscardUnknown() { + xxx_messageInfo_PrepareRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_PrepareRequest proto.InternalMessageInfo func (m *PrepareRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -1596,25 +2133,69 @@ func (m *PrepareRequest) GetDtid() string { // PrepareResponse is the returned value from Prepare type PrepareResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *PrepareResponse) Reset() { *m = PrepareResponse{} } -func (m *PrepareResponse) String() string { return proto.CompactTextString(m) } -func (*PrepareResponse) ProtoMessage() {} -func (*PrepareResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{26} } +func (m *PrepareResponse) Reset() { *m = PrepareResponse{} } +func (m *PrepareResponse) String() string { return proto.CompactTextString(m) } +func (*PrepareResponse) ProtoMessage() {} +func (*PrepareResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{26} +} +func (m *PrepareResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PrepareResponse.Unmarshal(m, b) +} +func (m *PrepareResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PrepareResponse.Marshal(b, m, deterministic) +} +func (dst *PrepareResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_PrepareResponse.Merge(dst, src) +} +func (m *PrepareResponse) XXX_Size() int { + return xxx_messageInfo_PrepareResponse.Size(m) +} +func (m *PrepareResponse) XXX_DiscardUnknown() { + xxx_messageInfo_PrepareResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_PrepareResponse proto.InternalMessageInfo // CommitPreparedRequest is the payload to CommitPrepared type CommitPreparedRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - Dtid string `protobuf:"bytes,4,opt,name=dtid" json:"dtid,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + Dtid string `protobuf:"bytes,4,opt,name=dtid" json:"dtid,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CommitPreparedRequest) Reset() { *m = CommitPreparedRequest{} } +func (m *CommitPreparedRequest) String() string { return proto.CompactTextString(m) } +func (*CommitPreparedRequest) ProtoMessage() {} +func (*CommitPreparedRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{27} +} +func (m *CommitPreparedRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CommitPreparedRequest.Unmarshal(m, b) +} +func (m *CommitPreparedRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CommitPreparedRequest.Marshal(b, m, deterministic) +} +func (dst *CommitPreparedRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CommitPreparedRequest.Merge(dst, src) +} +func (m *CommitPreparedRequest) XXX_Size() int { + return xxx_messageInfo_CommitPreparedRequest.Size(m) +} +func (m *CommitPreparedRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CommitPreparedRequest.DiscardUnknown(m) } -func (m *CommitPreparedRequest) Reset() { *m = CommitPreparedRequest{} } -func (m *CommitPreparedRequest) String() string { return proto.CompactTextString(m) } -func (*CommitPreparedRequest) ProtoMessage() {} -func (*CommitPreparedRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{27} } +var xxx_messageInfo_CommitPreparedRequest proto.InternalMessageInfo func (m *CommitPreparedRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -1646,26 +2227,70 @@ func (m *CommitPreparedRequest) GetDtid() string { // CommitPreparedResponse is the returned value from CommitPrepared type CommitPreparedResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CommitPreparedResponse) Reset() { *m = CommitPreparedResponse{} } +func (m *CommitPreparedResponse) String() string { return proto.CompactTextString(m) } +func (*CommitPreparedResponse) ProtoMessage() {} +func (*CommitPreparedResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{28} +} +func (m *CommitPreparedResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CommitPreparedResponse.Unmarshal(m, b) +} +func (m *CommitPreparedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CommitPreparedResponse.Marshal(b, m, deterministic) +} +func (dst *CommitPreparedResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_CommitPreparedResponse.Merge(dst, src) +} +func (m *CommitPreparedResponse) XXX_Size() int { + return xxx_messageInfo_CommitPreparedResponse.Size(m) +} +func (m *CommitPreparedResponse) XXX_DiscardUnknown() { + xxx_messageInfo_CommitPreparedResponse.DiscardUnknown(m) } -func (m *CommitPreparedResponse) Reset() { *m = CommitPreparedResponse{} } -func (m *CommitPreparedResponse) String() string { return proto.CompactTextString(m) } -func (*CommitPreparedResponse) ProtoMessage() {} -func (*CommitPreparedResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{28} } +var xxx_messageInfo_CommitPreparedResponse proto.InternalMessageInfo // RollbackPreparedRequest is the payload to RollbackPrepared type RollbackPreparedRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - TransactionId int64 `protobuf:"varint,4,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` - Dtid string `protobuf:"bytes,5,opt,name=dtid" json:"dtid,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + TransactionId int64 `protobuf:"varint,4,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + Dtid string `protobuf:"bytes,5,opt,name=dtid" json:"dtid,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *RollbackPreparedRequest) Reset() { *m = RollbackPreparedRequest{} } -func (m *RollbackPreparedRequest) String() string { return proto.CompactTextString(m) } -func (*RollbackPreparedRequest) ProtoMessage() {} -func (*RollbackPreparedRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} } +func (m *RollbackPreparedRequest) Reset() { *m = RollbackPreparedRequest{} } +func (m *RollbackPreparedRequest) String() string { return proto.CompactTextString(m) } +func (*RollbackPreparedRequest) ProtoMessage() {} +func (*RollbackPreparedRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{29} +} +func (m *RollbackPreparedRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RollbackPreparedRequest.Unmarshal(m, b) +} +func (m *RollbackPreparedRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RollbackPreparedRequest.Marshal(b, m, deterministic) +} +func (dst *RollbackPreparedRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_RollbackPreparedRequest.Merge(dst, src) +} +func (m *RollbackPreparedRequest) XXX_Size() int { + return xxx_messageInfo_RollbackPreparedRequest.Size(m) +} +func (m *RollbackPreparedRequest) XXX_DiscardUnknown() { + xxx_messageInfo_RollbackPreparedRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_RollbackPreparedRequest proto.InternalMessageInfo func (m *RollbackPreparedRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -1704,26 +2329,70 @@ func (m *RollbackPreparedRequest) GetDtid() string { // RollbackPreparedResponse is the returned value from RollbackPrepared type RollbackPreparedResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RollbackPreparedResponse) Reset() { *m = RollbackPreparedResponse{} } +func (m *RollbackPreparedResponse) String() string { return proto.CompactTextString(m) } +func (*RollbackPreparedResponse) ProtoMessage() {} +func (*RollbackPreparedResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{30} +} +func (m *RollbackPreparedResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RollbackPreparedResponse.Unmarshal(m, b) +} +func (m *RollbackPreparedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RollbackPreparedResponse.Marshal(b, m, deterministic) +} +func (dst *RollbackPreparedResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_RollbackPreparedResponse.Merge(dst, src) +} +func (m *RollbackPreparedResponse) XXX_Size() int { + return xxx_messageInfo_RollbackPreparedResponse.Size(m) +} +func (m *RollbackPreparedResponse) XXX_DiscardUnknown() { + xxx_messageInfo_RollbackPreparedResponse.DiscardUnknown(m) } -func (m *RollbackPreparedResponse) Reset() { *m = RollbackPreparedResponse{} } -func (m *RollbackPreparedResponse) String() string { return proto.CompactTextString(m) } -func (*RollbackPreparedResponse) ProtoMessage() {} -func (*RollbackPreparedResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{30} } +var xxx_messageInfo_RollbackPreparedResponse proto.InternalMessageInfo // CreateTransactionRequest is the payload to CreateTransaction type CreateTransactionRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - Dtid string `protobuf:"bytes,4,opt,name=dtid" json:"dtid,omitempty"` - Participants []*Target `protobuf:"bytes,5,rep,name=participants" json:"participants,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + Dtid string `protobuf:"bytes,4,opt,name=dtid" json:"dtid,omitempty"` + Participants []*Target `protobuf:"bytes,5,rep,name=participants" json:"participants,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CreateTransactionRequest) Reset() { *m = CreateTransactionRequest{} } +func (m *CreateTransactionRequest) String() string { return proto.CompactTextString(m) } +func (*CreateTransactionRequest) ProtoMessage() {} +func (*CreateTransactionRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{31} +} +func (m *CreateTransactionRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CreateTransactionRequest.Unmarshal(m, b) +} +func (m *CreateTransactionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CreateTransactionRequest.Marshal(b, m, deterministic) +} +func (dst *CreateTransactionRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CreateTransactionRequest.Merge(dst, src) +} +func (m *CreateTransactionRequest) XXX_Size() int { + return xxx_messageInfo_CreateTransactionRequest.Size(m) +} +func (m *CreateTransactionRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CreateTransactionRequest.DiscardUnknown(m) } -func (m *CreateTransactionRequest) Reset() { *m = CreateTransactionRequest{} } -func (m *CreateTransactionRequest) String() string { return proto.CompactTextString(m) } -func (*CreateTransactionRequest) ProtoMessage() {} -func (*CreateTransactionRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{31} } +var xxx_messageInfo_CreateTransactionRequest proto.InternalMessageInfo func (m *CreateTransactionRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -1762,26 +2431,70 @@ func (m *CreateTransactionRequest) GetParticipants() []*Target { // CreateTransactionResponse is the returned value from CreateTransaction type CreateTransactionResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CreateTransactionResponse) Reset() { *m = CreateTransactionResponse{} } +func (m *CreateTransactionResponse) String() string { return proto.CompactTextString(m) } +func (*CreateTransactionResponse) ProtoMessage() {} +func (*CreateTransactionResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{32} +} +func (m *CreateTransactionResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CreateTransactionResponse.Unmarshal(m, b) +} +func (m *CreateTransactionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CreateTransactionResponse.Marshal(b, m, deterministic) +} +func (dst *CreateTransactionResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_CreateTransactionResponse.Merge(dst, src) +} +func (m *CreateTransactionResponse) XXX_Size() int { + return xxx_messageInfo_CreateTransactionResponse.Size(m) +} +func (m *CreateTransactionResponse) XXX_DiscardUnknown() { + xxx_messageInfo_CreateTransactionResponse.DiscardUnknown(m) } -func (m *CreateTransactionResponse) Reset() { *m = CreateTransactionResponse{} } -func (m *CreateTransactionResponse) String() string { return proto.CompactTextString(m) } -func (*CreateTransactionResponse) ProtoMessage() {} -func (*CreateTransactionResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{32} } +var xxx_messageInfo_CreateTransactionResponse proto.InternalMessageInfo // StartCommitRequest is the payload to StartCommit type StartCommitRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - TransactionId int64 `protobuf:"varint,4,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` - Dtid string `protobuf:"bytes,5,opt,name=dtid" json:"dtid,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + TransactionId int64 `protobuf:"varint,4,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + Dtid string `protobuf:"bytes,5,opt,name=dtid" json:"dtid,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StartCommitRequest) Reset() { *m = StartCommitRequest{} } +func (m *StartCommitRequest) String() string { return proto.CompactTextString(m) } +func (*StartCommitRequest) ProtoMessage() {} +func (*StartCommitRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{33} +} +func (m *StartCommitRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StartCommitRequest.Unmarshal(m, b) +} +func (m *StartCommitRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StartCommitRequest.Marshal(b, m, deterministic) +} +func (dst *StartCommitRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StartCommitRequest.Merge(dst, src) +} +func (m *StartCommitRequest) XXX_Size() int { + return xxx_messageInfo_StartCommitRequest.Size(m) +} +func (m *StartCommitRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StartCommitRequest.DiscardUnknown(m) } -func (m *StartCommitRequest) Reset() { *m = StartCommitRequest{} } -func (m *StartCommitRequest) String() string { return proto.CompactTextString(m) } -func (*StartCommitRequest) ProtoMessage() {} -func (*StartCommitRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{33} } +var xxx_messageInfo_StartCommitRequest proto.InternalMessageInfo func (m *StartCommitRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -1820,26 +2533,70 @@ func (m *StartCommitRequest) GetDtid() string { // StartCommitResponse is the returned value from StartCommit type StartCommitResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *StartCommitResponse) Reset() { *m = StartCommitResponse{} } -func (m *StartCommitResponse) String() string { return proto.CompactTextString(m) } -func (*StartCommitResponse) ProtoMessage() {} -func (*StartCommitResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{34} } +func (m *StartCommitResponse) Reset() { *m = StartCommitResponse{} } +func (m *StartCommitResponse) String() string { return proto.CompactTextString(m) } +func (*StartCommitResponse) ProtoMessage() {} +func (*StartCommitResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{34} +} +func (m *StartCommitResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StartCommitResponse.Unmarshal(m, b) +} +func (m *StartCommitResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StartCommitResponse.Marshal(b, m, deterministic) +} +func (dst *StartCommitResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StartCommitResponse.Merge(dst, src) +} +func (m *StartCommitResponse) XXX_Size() int { + return xxx_messageInfo_StartCommitResponse.Size(m) +} +func (m *StartCommitResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StartCommitResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_StartCommitResponse proto.InternalMessageInfo // SetRollbackRequest is the payload to SetRollback type SetRollbackRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - TransactionId int64 `protobuf:"varint,4,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` - Dtid string `protobuf:"bytes,5,opt,name=dtid" json:"dtid,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + TransactionId int64 `protobuf:"varint,4,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + Dtid string `protobuf:"bytes,5,opt,name=dtid" json:"dtid,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SetRollbackRequest) Reset() { *m = SetRollbackRequest{} } +func (m *SetRollbackRequest) String() string { return proto.CompactTextString(m) } +func (*SetRollbackRequest) ProtoMessage() {} +func (*SetRollbackRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{35} +} +func (m *SetRollbackRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SetRollbackRequest.Unmarshal(m, b) +} +func (m *SetRollbackRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SetRollbackRequest.Marshal(b, m, deterministic) +} +func (dst *SetRollbackRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SetRollbackRequest.Merge(dst, src) +} +func (m *SetRollbackRequest) XXX_Size() int { + return xxx_messageInfo_SetRollbackRequest.Size(m) +} +func (m *SetRollbackRequest) XXX_DiscardUnknown() { + xxx_messageInfo_SetRollbackRequest.DiscardUnknown(m) } -func (m *SetRollbackRequest) Reset() { *m = SetRollbackRequest{} } -func (m *SetRollbackRequest) String() string { return proto.CompactTextString(m) } -func (*SetRollbackRequest) ProtoMessage() {} -func (*SetRollbackRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{35} } +var xxx_messageInfo_SetRollbackRequest proto.InternalMessageInfo func (m *SetRollbackRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -1878,25 +2635,69 @@ func (m *SetRollbackRequest) GetDtid() string { // SetRollbackResponse is the returned value from SetRollback type SetRollbackResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *SetRollbackResponse) Reset() { *m = SetRollbackResponse{} } -func (m *SetRollbackResponse) String() string { return proto.CompactTextString(m) } -func (*SetRollbackResponse) ProtoMessage() {} -func (*SetRollbackResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{36} } +func (m *SetRollbackResponse) Reset() { *m = SetRollbackResponse{} } +func (m *SetRollbackResponse) String() string { return proto.CompactTextString(m) } +func (*SetRollbackResponse) ProtoMessage() {} +func (*SetRollbackResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{36} +} +func (m *SetRollbackResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SetRollbackResponse.Unmarshal(m, b) +} +func (m *SetRollbackResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SetRollbackResponse.Marshal(b, m, deterministic) +} +func (dst *SetRollbackResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SetRollbackResponse.Merge(dst, src) +} +func (m *SetRollbackResponse) XXX_Size() int { + return xxx_messageInfo_SetRollbackResponse.Size(m) +} +func (m *SetRollbackResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SetRollbackResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_SetRollbackResponse proto.InternalMessageInfo // ConcludeTransactionRequest is the payload to ConcludeTransaction type ConcludeTransactionRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - Dtid string `protobuf:"bytes,4,opt,name=dtid" json:"dtid,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + Dtid string `protobuf:"bytes,4,opt,name=dtid" json:"dtid,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ConcludeTransactionRequest) Reset() { *m = ConcludeTransactionRequest{} } -func (m *ConcludeTransactionRequest) String() string { return proto.CompactTextString(m) } -func (*ConcludeTransactionRequest) ProtoMessage() {} -func (*ConcludeTransactionRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{37} } +func (m *ConcludeTransactionRequest) Reset() { *m = ConcludeTransactionRequest{} } +func (m *ConcludeTransactionRequest) String() string { return proto.CompactTextString(m) } +func (*ConcludeTransactionRequest) ProtoMessage() {} +func (*ConcludeTransactionRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{37} +} +func (m *ConcludeTransactionRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ConcludeTransactionRequest.Unmarshal(m, b) +} +func (m *ConcludeTransactionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ConcludeTransactionRequest.Marshal(b, m, deterministic) +} +func (dst *ConcludeTransactionRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ConcludeTransactionRequest.Merge(dst, src) +} +func (m *ConcludeTransactionRequest) XXX_Size() int { + return xxx_messageInfo_ConcludeTransactionRequest.Size(m) +} +func (m *ConcludeTransactionRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ConcludeTransactionRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ConcludeTransactionRequest proto.InternalMessageInfo func (m *ConcludeTransactionRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -1928,25 +2729,69 @@ func (m *ConcludeTransactionRequest) GetDtid() string { // ConcludeTransactionResponse is the returned value from ConcludeTransaction type ConcludeTransactionResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ConcludeTransactionResponse) Reset() { *m = ConcludeTransactionResponse{} } -func (m *ConcludeTransactionResponse) String() string { return proto.CompactTextString(m) } -func (*ConcludeTransactionResponse) ProtoMessage() {} -func (*ConcludeTransactionResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{38} } +func (m *ConcludeTransactionResponse) Reset() { *m = ConcludeTransactionResponse{} } +func (m *ConcludeTransactionResponse) String() string { return proto.CompactTextString(m) } +func (*ConcludeTransactionResponse) ProtoMessage() {} +func (*ConcludeTransactionResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{38} +} +func (m *ConcludeTransactionResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ConcludeTransactionResponse.Unmarshal(m, b) +} +func (m *ConcludeTransactionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ConcludeTransactionResponse.Marshal(b, m, deterministic) +} +func (dst *ConcludeTransactionResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ConcludeTransactionResponse.Merge(dst, src) +} +func (m *ConcludeTransactionResponse) XXX_Size() int { + return xxx_messageInfo_ConcludeTransactionResponse.Size(m) +} +func (m *ConcludeTransactionResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ConcludeTransactionResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ConcludeTransactionResponse proto.InternalMessageInfo // ReadTransactionRequest is the payload to ReadTransaction type ReadTransactionRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - Dtid string `protobuf:"bytes,4,opt,name=dtid" json:"dtid,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + Dtid string `protobuf:"bytes,4,opt,name=dtid" json:"dtid,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ReadTransactionRequest) Reset() { *m = ReadTransactionRequest{} } -func (m *ReadTransactionRequest) String() string { return proto.CompactTextString(m) } -func (*ReadTransactionRequest) ProtoMessage() {} -func (*ReadTransactionRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{39} } +func (m *ReadTransactionRequest) Reset() { *m = ReadTransactionRequest{} } +func (m *ReadTransactionRequest) String() string { return proto.CompactTextString(m) } +func (*ReadTransactionRequest) ProtoMessage() {} +func (*ReadTransactionRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{39} +} +func (m *ReadTransactionRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ReadTransactionRequest.Unmarshal(m, b) +} +func (m *ReadTransactionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ReadTransactionRequest.Marshal(b, m, deterministic) +} +func (dst *ReadTransactionRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReadTransactionRequest.Merge(dst, src) +} +func (m *ReadTransactionRequest) XXX_Size() int { + return xxx_messageInfo_ReadTransactionRequest.Size(m) +} +func (m *ReadTransactionRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ReadTransactionRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ReadTransactionRequest proto.InternalMessageInfo func (m *ReadTransactionRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -1978,13 +2823,35 @@ func (m *ReadTransactionRequest) GetDtid() string { // ReadTransactionResponse is the returned value from ReadTransaction type ReadTransactionResponse struct { - Metadata *TransactionMetadata `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"` + Metadata *TransactionMetadata `protobuf:"bytes,1,opt,name=metadata" json:"metadata,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ReadTransactionResponse) Reset() { *m = ReadTransactionResponse{} } +func (m *ReadTransactionResponse) String() string { return proto.CompactTextString(m) } +func (*ReadTransactionResponse) ProtoMessage() {} +func (*ReadTransactionResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{40} +} +func (m *ReadTransactionResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ReadTransactionResponse.Unmarshal(m, b) +} +func (m *ReadTransactionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ReadTransactionResponse.Marshal(b, m, deterministic) +} +func (dst *ReadTransactionResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReadTransactionResponse.Merge(dst, src) +} +func (m *ReadTransactionResponse) XXX_Size() int { + return xxx_messageInfo_ReadTransactionResponse.Size(m) +} +func (m *ReadTransactionResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ReadTransactionResponse.DiscardUnknown(m) } -func (m *ReadTransactionResponse) Reset() { *m = ReadTransactionResponse{} } -func (m *ReadTransactionResponse) String() string { return proto.CompactTextString(m) } -func (*ReadTransactionResponse) ProtoMessage() {} -func (*ReadTransactionResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{40} } +var xxx_messageInfo_ReadTransactionResponse proto.InternalMessageInfo func (m *ReadTransactionResponse) GetMetadata() *TransactionMetadata { if m != nil { @@ -1995,17 +2862,39 @@ func (m *ReadTransactionResponse) GetMetadata() *TransactionMetadata { // BeginExecuteRequest is the payload to BeginExecute type BeginExecuteRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - Query *BoundQuery `protobuf:"bytes,4,opt,name=query" json:"query,omitempty"` - Options *ExecuteOptions `protobuf:"bytes,5,opt,name=options" json:"options,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + Query *BoundQuery `protobuf:"bytes,4,opt,name=query" json:"query,omitempty"` + Options *ExecuteOptions `protobuf:"bytes,5,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *BeginExecuteRequest) Reset() { *m = BeginExecuteRequest{} } -func (m *BeginExecuteRequest) String() string { return proto.CompactTextString(m) } -func (*BeginExecuteRequest) ProtoMessage() {} -func (*BeginExecuteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{41} } +func (m *BeginExecuteRequest) Reset() { *m = BeginExecuteRequest{} } +func (m *BeginExecuteRequest) String() string { return proto.CompactTextString(m) } +func (*BeginExecuteRequest) ProtoMessage() {} +func (*BeginExecuteRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{41} +} +func (m *BeginExecuteRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BeginExecuteRequest.Unmarshal(m, b) +} +func (m *BeginExecuteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BeginExecuteRequest.Marshal(b, m, deterministic) +} +func (dst *BeginExecuteRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_BeginExecuteRequest.Merge(dst, src) +} +func (m *BeginExecuteRequest) XXX_Size() int { + return xxx_messageInfo_BeginExecuteRequest.Size(m) +} +func (m *BeginExecuteRequest) XXX_DiscardUnknown() { + xxx_messageInfo_BeginExecuteRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_BeginExecuteRequest proto.InternalMessageInfo func (m *BeginExecuteRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -2050,13 +2939,35 @@ type BeginExecuteResponse struct { Error *vtrpc.RPCError `protobuf:"bytes,1,opt,name=error" json:"error,omitempty"` Result *QueryResult `protobuf:"bytes,2,opt,name=result" json:"result,omitempty"` // transaction_id might be non-zero even if an error is present. - TransactionId int64 `protobuf:"varint,3,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + TransactionId int64 `protobuf:"varint,3,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *BeginExecuteResponse) Reset() { *m = BeginExecuteResponse{} } -func (m *BeginExecuteResponse) String() string { return proto.CompactTextString(m) } -func (*BeginExecuteResponse) ProtoMessage() {} -func (*BeginExecuteResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{42} } +func (m *BeginExecuteResponse) Reset() { *m = BeginExecuteResponse{} } +func (m *BeginExecuteResponse) String() string { return proto.CompactTextString(m) } +func (*BeginExecuteResponse) ProtoMessage() {} +func (*BeginExecuteResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{42} +} +func (m *BeginExecuteResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BeginExecuteResponse.Unmarshal(m, b) +} +func (m *BeginExecuteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BeginExecuteResponse.Marshal(b, m, deterministic) +} +func (dst *BeginExecuteResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_BeginExecuteResponse.Merge(dst, src) +} +func (m *BeginExecuteResponse) XXX_Size() int { + return xxx_messageInfo_BeginExecuteResponse.Size(m) +} +func (m *BeginExecuteResponse) XXX_DiscardUnknown() { + xxx_messageInfo_BeginExecuteResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_BeginExecuteResponse proto.InternalMessageInfo func (m *BeginExecuteResponse) GetError() *vtrpc.RPCError { if m != nil { @@ -2081,18 +2992,40 @@ func (m *BeginExecuteResponse) GetTransactionId() int64 { // BeginExecuteBatchRequest is the payload to BeginExecuteBatch type BeginExecuteBatchRequest struct { - EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` - ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` - Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` - Queries []*BoundQuery `protobuf:"bytes,4,rep,name=queries" json:"queries,omitempty"` - AsTransaction bool `protobuf:"varint,5,opt,name=as_transaction,json=asTransaction" json:"as_transaction,omitempty"` - Options *ExecuteOptions `protobuf:"bytes,6,opt,name=options" json:"options,omitempty"` + EffectiveCallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=effective_caller_id,json=effectiveCallerId" json:"effective_caller_id,omitempty"` + ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` + Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` + Queries []*BoundQuery `protobuf:"bytes,4,rep,name=queries" json:"queries,omitempty"` + AsTransaction bool `protobuf:"varint,5,opt,name=as_transaction,json=asTransaction" json:"as_transaction,omitempty"` + Options *ExecuteOptions `protobuf:"bytes,6,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *BeginExecuteBatchRequest) Reset() { *m = BeginExecuteBatchRequest{} } -func (m *BeginExecuteBatchRequest) String() string { return proto.CompactTextString(m) } -func (*BeginExecuteBatchRequest) ProtoMessage() {} -func (*BeginExecuteBatchRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{43} } +func (m *BeginExecuteBatchRequest) Reset() { *m = BeginExecuteBatchRequest{} } +func (m *BeginExecuteBatchRequest) String() string { return proto.CompactTextString(m) } +func (*BeginExecuteBatchRequest) ProtoMessage() {} +func (*BeginExecuteBatchRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{43} +} +func (m *BeginExecuteBatchRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BeginExecuteBatchRequest.Unmarshal(m, b) +} +func (m *BeginExecuteBatchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BeginExecuteBatchRequest.Marshal(b, m, deterministic) +} +func (dst *BeginExecuteBatchRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_BeginExecuteBatchRequest.Merge(dst, src) +} +func (m *BeginExecuteBatchRequest) XXX_Size() int { + return xxx_messageInfo_BeginExecuteBatchRequest.Size(m) +} +func (m *BeginExecuteBatchRequest) XXX_DiscardUnknown() { + xxx_messageInfo_BeginExecuteBatchRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_BeginExecuteBatchRequest proto.InternalMessageInfo func (m *BeginExecuteBatchRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -2144,13 +3077,35 @@ type BeginExecuteBatchResponse struct { Error *vtrpc.RPCError `protobuf:"bytes,1,opt,name=error" json:"error,omitempty"` Results []*QueryResult `protobuf:"bytes,2,rep,name=results" json:"results,omitempty"` // transaction_id might be non-zero even if an error is present. - TransactionId int64 `protobuf:"varint,3,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + TransactionId int64 `protobuf:"varint,3,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *BeginExecuteBatchResponse) Reset() { *m = BeginExecuteBatchResponse{} } +func (m *BeginExecuteBatchResponse) String() string { return proto.CompactTextString(m) } +func (*BeginExecuteBatchResponse) ProtoMessage() {} +func (*BeginExecuteBatchResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{44} +} +func (m *BeginExecuteBatchResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BeginExecuteBatchResponse.Unmarshal(m, b) +} +func (m *BeginExecuteBatchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BeginExecuteBatchResponse.Marshal(b, m, deterministic) +} +func (dst *BeginExecuteBatchResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_BeginExecuteBatchResponse.Merge(dst, src) +} +func (m *BeginExecuteBatchResponse) XXX_Size() int { + return xxx_messageInfo_BeginExecuteBatchResponse.Size(m) +} +func (m *BeginExecuteBatchResponse) XXX_DiscardUnknown() { + xxx_messageInfo_BeginExecuteBatchResponse.DiscardUnknown(m) } -func (m *BeginExecuteBatchResponse) Reset() { *m = BeginExecuteBatchResponse{} } -func (m *BeginExecuteBatchResponse) String() string { return proto.CompactTextString(m) } -func (*BeginExecuteBatchResponse) ProtoMessage() {} -func (*BeginExecuteBatchResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{44} } +var xxx_messageInfo_BeginExecuteBatchResponse proto.InternalMessageInfo func (m *BeginExecuteBatchResponse) GetError() *vtrpc.RPCError { if m != nil { @@ -2179,13 +3134,35 @@ type MessageStreamRequest struct { ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` // name is the message table name. - Name string `protobuf:"bytes,4,opt,name=name" json:"name,omitempty"` + Name string `protobuf:"bytes,4,opt,name=name" json:"name,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *MessageStreamRequest) Reset() { *m = MessageStreamRequest{} } -func (m *MessageStreamRequest) String() string { return proto.CompactTextString(m) } -func (*MessageStreamRequest) ProtoMessage() {} -func (*MessageStreamRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{45} } +func (m *MessageStreamRequest) Reset() { *m = MessageStreamRequest{} } +func (m *MessageStreamRequest) String() string { return proto.CompactTextString(m) } +func (*MessageStreamRequest) ProtoMessage() {} +func (*MessageStreamRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{45} +} +func (m *MessageStreamRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_MessageStreamRequest.Unmarshal(m, b) +} +func (m *MessageStreamRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_MessageStreamRequest.Marshal(b, m, deterministic) +} +func (dst *MessageStreamRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_MessageStreamRequest.Merge(dst, src) +} +func (m *MessageStreamRequest) XXX_Size() int { + return xxx_messageInfo_MessageStreamRequest.Size(m) +} +func (m *MessageStreamRequest) XXX_DiscardUnknown() { + xxx_messageInfo_MessageStreamRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_MessageStreamRequest proto.InternalMessageInfo func (m *MessageStreamRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -2217,13 +3194,35 @@ func (m *MessageStreamRequest) GetName() string { // MessageStreamResponse is a response for MessageStream. type MessageStreamResponse struct { - Result *QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + Result *QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *MessageStreamResponse) Reset() { *m = MessageStreamResponse{} } +func (m *MessageStreamResponse) String() string { return proto.CompactTextString(m) } +func (*MessageStreamResponse) ProtoMessage() {} +func (*MessageStreamResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{46} +} +func (m *MessageStreamResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_MessageStreamResponse.Unmarshal(m, b) +} +func (m *MessageStreamResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_MessageStreamResponse.Marshal(b, m, deterministic) +} +func (dst *MessageStreamResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_MessageStreamResponse.Merge(dst, src) +} +func (m *MessageStreamResponse) XXX_Size() int { + return xxx_messageInfo_MessageStreamResponse.Size(m) +} +func (m *MessageStreamResponse) XXX_DiscardUnknown() { + xxx_messageInfo_MessageStreamResponse.DiscardUnknown(m) } -func (m *MessageStreamResponse) Reset() { *m = MessageStreamResponse{} } -func (m *MessageStreamResponse) String() string { return proto.CompactTextString(m) } -func (*MessageStreamResponse) ProtoMessage() {} -func (*MessageStreamResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{46} } +var xxx_messageInfo_MessageStreamResponse proto.InternalMessageInfo func (m *MessageStreamResponse) GetResult() *QueryResult { if m != nil { @@ -2238,14 +3237,36 @@ type MessageAckRequest struct { ImmediateCallerId *VTGateCallerID `protobuf:"bytes,2,opt,name=immediate_caller_id,json=immediateCallerId" json:"immediate_caller_id,omitempty"` Target *Target `protobuf:"bytes,3,opt,name=target" json:"target,omitempty"` // name is the message table name. - Name string `protobuf:"bytes,4,opt,name=name" json:"name,omitempty"` - Ids []*Value `protobuf:"bytes,5,rep,name=ids" json:"ids,omitempty"` + Name string `protobuf:"bytes,4,opt,name=name" json:"name,omitempty"` + Ids []*Value `protobuf:"bytes,5,rep,name=ids" json:"ids,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *MessageAckRequest) Reset() { *m = MessageAckRequest{} } -func (m *MessageAckRequest) String() string { return proto.CompactTextString(m) } -func (*MessageAckRequest) ProtoMessage() {} -func (*MessageAckRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{47} } +func (m *MessageAckRequest) Reset() { *m = MessageAckRequest{} } +func (m *MessageAckRequest) String() string { return proto.CompactTextString(m) } +func (*MessageAckRequest) ProtoMessage() {} +func (*MessageAckRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{47} +} +func (m *MessageAckRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_MessageAckRequest.Unmarshal(m, b) +} +func (m *MessageAckRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_MessageAckRequest.Marshal(b, m, deterministic) +} +func (dst *MessageAckRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_MessageAckRequest.Merge(dst, src) +} +func (m *MessageAckRequest) XXX_Size() int { + return xxx_messageInfo_MessageAckRequest.Size(m) +} +func (m *MessageAckRequest) XXX_DiscardUnknown() { + xxx_messageInfo_MessageAckRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_MessageAckRequest proto.InternalMessageInfo func (m *MessageAckRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -2287,13 +3308,35 @@ type MessageAckResponse struct { // result contains the result of the ack operation. // Since this acts like a DML, only // RowsAffected is returned in the result. - Result *QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + Result *QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *MessageAckResponse) Reset() { *m = MessageAckResponse{} } +func (m *MessageAckResponse) String() string { return proto.CompactTextString(m) } +func (*MessageAckResponse) ProtoMessage() {} +func (*MessageAckResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{48} +} +func (m *MessageAckResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_MessageAckResponse.Unmarshal(m, b) +} +func (m *MessageAckResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_MessageAckResponse.Marshal(b, m, deterministic) +} +func (dst *MessageAckResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_MessageAckResponse.Merge(dst, src) +} +func (m *MessageAckResponse) XXX_Size() int { + return xxx_messageInfo_MessageAckResponse.Size(m) +} +func (m *MessageAckResponse) XXX_DiscardUnknown() { + xxx_messageInfo_MessageAckResponse.DiscardUnknown(m) } -func (m *MessageAckResponse) Reset() { *m = MessageAckResponse{} } -func (m *MessageAckResponse) String() string { return proto.CompactTextString(m) } -func (*MessageAckResponse) ProtoMessage() {} -func (*MessageAckResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{48} } +var xxx_messageInfo_MessageAckResponse proto.InternalMessageInfo func (m *MessageAckResponse) GetResult() *QueryResult { if m != nil { @@ -2311,15 +3354,37 @@ type SplitQueryRequest struct { Query *BoundQuery `protobuf:"bytes,4,opt,name=query" json:"query,omitempty"` SplitColumn []string `protobuf:"bytes,5,rep,name=split_column,json=splitColumn" json:"split_column,omitempty"` // Exactly one of the following must be nonzero. - SplitCount int64 `protobuf:"varint,6,opt,name=split_count,json=splitCount" json:"split_count,omitempty"` - NumRowsPerQueryPart int64 `protobuf:"varint,8,opt,name=num_rows_per_query_part,json=numRowsPerQueryPart" json:"num_rows_per_query_part,omitempty"` - Algorithm SplitQueryRequest_Algorithm `protobuf:"varint,9,opt,name=algorithm,enum=query.SplitQueryRequest_Algorithm" json:"algorithm,omitempty"` + SplitCount int64 `protobuf:"varint,6,opt,name=split_count,json=splitCount" json:"split_count,omitempty"` + NumRowsPerQueryPart int64 `protobuf:"varint,8,opt,name=num_rows_per_query_part,json=numRowsPerQueryPart" json:"num_rows_per_query_part,omitempty"` + Algorithm SplitQueryRequest_Algorithm `protobuf:"varint,9,opt,name=algorithm,enum=query.SplitQueryRequest_Algorithm" json:"algorithm,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *SplitQueryRequest) Reset() { *m = SplitQueryRequest{} } -func (m *SplitQueryRequest) String() string { return proto.CompactTextString(m) } -func (*SplitQueryRequest) ProtoMessage() {} -func (*SplitQueryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{49} } +func (m *SplitQueryRequest) Reset() { *m = SplitQueryRequest{} } +func (m *SplitQueryRequest) String() string { return proto.CompactTextString(m) } +func (*SplitQueryRequest) ProtoMessage() {} +func (*SplitQueryRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{49} +} +func (m *SplitQueryRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SplitQueryRequest.Unmarshal(m, b) +} +func (m *SplitQueryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SplitQueryRequest.Marshal(b, m, deterministic) +} +func (dst *SplitQueryRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SplitQueryRequest.Merge(dst, src) +} +func (m *SplitQueryRequest) XXX_Size() int { + return xxx_messageInfo_SplitQueryRequest.Size(m) +} +func (m *SplitQueryRequest) XXX_DiscardUnknown() { + xxx_messageInfo_SplitQueryRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_SplitQueryRequest proto.InternalMessageInfo func (m *SplitQueryRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -2382,13 +3447,35 @@ type QuerySplit struct { // query is the query to execute Query *BoundQuery `protobuf:"bytes,1,opt,name=query" json:"query,omitempty"` // row_count is the approximate row count the query will return - RowCount int64 `protobuf:"varint,2,opt,name=row_count,json=rowCount" json:"row_count,omitempty"` + RowCount int64 `protobuf:"varint,2,opt,name=row_count,json=rowCount" json:"row_count,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *QuerySplit) Reset() { *m = QuerySplit{} } -func (m *QuerySplit) String() string { return proto.CompactTextString(m) } -func (*QuerySplit) ProtoMessage() {} -func (*QuerySplit) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{50} } +func (m *QuerySplit) Reset() { *m = QuerySplit{} } +func (m *QuerySplit) String() string { return proto.CompactTextString(m) } +func (*QuerySplit) ProtoMessage() {} +func (*QuerySplit) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{50} +} +func (m *QuerySplit) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_QuerySplit.Unmarshal(m, b) +} +func (m *QuerySplit) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_QuerySplit.Marshal(b, m, deterministic) +} +func (dst *QuerySplit) XXX_Merge(src proto.Message) { + xxx_messageInfo_QuerySplit.Merge(dst, src) +} +func (m *QuerySplit) XXX_Size() int { + return xxx_messageInfo_QuerySplit.Size(m) +} +func (m *QuerySplit) XXX_DiscardUnknown() { + xxx_messageInfo_QuerySplit.DiscardUnknown(m) +} + +var xxx_messageInfo_QuerySplit proto.InternalMessageInfo func (m *QuerySplit) GetQuery() *BoundQuery { if m != nil { @@ -2407,13 +3494,35 @@ func (m *QuerySplit) GetRowCount() int64 { // SplitQueryResponse is returned by SplitQuery and represents all the queries // to execute in order to get the entire data set. type SplitQueryResponse struct { - Queries []*QuerySplit `protobuf:"bytes,1,rep,name=queries" json:"queries,omitempty"` + Queries []*QuerySplit `protobuf:"bytes,1,rep,name=queries" json:"queries,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *SplitQueryResponse) Reset() { *m = SplitQueryResponse{} } -func (m *SplitQueryResponse) String() string { return proto.CompactTextString(m) } -func (*SplitQueryResponse) ProtoMessage() {} -func (*SplitQueryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{51} } +func (m *SplitQueryResponse) Reset() { *m = SplitQueryResponse{} } +func (m *SplitQueryResponse) String() string { return proto.CompactTextString(m) } +func (*SplitQueryResponse) ProtoMessage() {} +func (*SplitQueryResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{51} +} +func (m *SplitQueryResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SplitQueryResponse.Unmarshal(m, b) +} +func (m *SplitQueryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SplitQueryResponse.Marshal(b, m, deterministic) +} +func (dst *SplitQueryResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SplitQueryResponse.Merge(dst, src) +} +func (m *SplitQueryResponse) XXX_Size() int { + return xxx_messageInfo_SplitQueryResponse.Size(m) +} +func (m *SplitQueryResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SplitQueryResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_SplitQueryResponse proto.InternalMessageInfo func (m *SplitQueryResponse) GetQueries() []*QuerySplit { if m != nil { @@ -2424,12 +3533,34 @@ func (m *SplitQueryResponse) GetQueries() []*QuerySplit { // StreamHealthRequest is the payload for StreamHealth type StreamHealthRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StreamHealthRequest) Reset() { *m = StreamHealthRequest{} } +func (m *StreamHealthRequest) String() string { return proto.CompactTextString(m) } +func (*StreamHealthRequest) ProtoMessage() {} +func (*StreamHealthRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{52} +} +func (m *StreamHealthRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamHealthRequest.Unmarshal(m, b) +} +func (m *StreamHealthRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamHealthRequest.Marshal(b, m, deterministic) +} +func (dst *StreamHealthRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamHealthRequest.Merge(dst, src) +} +func (m *StreamHealthRequest) XXX_Size() int { + return xxx_messageInfo_StreamHealthRequest.Size(m) +} +func (m *StreamHealthRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StreamHealthRequest.DiscardUnknown(m) } -func (m *StreamHealthRequest) Reset() { *m = StreamHealthRequest{} } -func (m *StreamHealthRequest) String() string { return proto.CompactTextString(m) } -func (*StreamHealthRequest) ProtoMessage() {} -func (*StreamHealthRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{52} } +var xxx_messageInfo_StreamHealthRequest proto.InternalMessageInfo // RealtimeStats contains information about the tablet status. // It is only valid for a single tablet. @@ -2460,13 +3591,35 @@ type RealtimeStats struct { CpuUsage float64 `protobuf:"fixed64,5,opt,name=cpu_usage,json=cpuUsage" json:"cpu_usage,omitempty"` // qps is the average QPS (queries per second) rate in the last XX seconds // where XX is usually 60 (See query_service_stats.go). - Qps float64 `protobuf:"fixed64,6,opt,name=qps" json:"qps,omitempty"` + Qps float64 `protobuf:"fixed64,6,opt,name=qps" json:"qps,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *RealtimeStats) Reset() { *m = RealtimeStats{} } -func (m *RealtimeStats) String() string { return proto.CompactTextString(m) } -func (*RealtimeStats) ProtoMessage() {} -func (*RealtimeStats) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{53} } +func (m *RealtimeStats) Reset() { *m = RealtimeStats{} } +func (m *RealtimeStats) String() string { return proto.CompactTextString(m) } +func (*RealtimeStats) ProtoMessage() {} +func (*RealtimeStats) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{53} +} +func (m *RealtimeStats) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RealtimeStats.Unmarshal(m, b) +} +func (m *RealtimeStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RealtimeStats.Marshal(b, m, deterministic) +} +func (dst *RealtimeStats) XXX_Merge(src proto.Message) { + xxx_messageInfo_RealtimeStats.Merge(dst, src) +} +func (m *RealtimeStats) XXX_Size() int { + return xxx_messageInfo_RealtimeStats.Size(m) +} +func (m *RealtimeStats) XXX_DiscardUnknown() { + xxx_messageInfo_RealtimeStats.DiscardUnknown(m) +} + +var xxx_messageInfo_RealtimeStats proto.InternalMessageInfo func (m *RealtimeStats) GetHealthError() string { if m != nil { @@ -2526,13 +3679,35 @@ type AggregateStats struct { // seconds_behind_master_max is the maximum of the // seconds_behind_master values of the healthy tablets. It is unset // if the tablet type is master. - SecondsBehindMasterMax uint32 `protobuf:"varint,4,opt,name=seconds_behind_master_max,json=secondsBehindMasterMax" json:"seconds_behind_master_max,omitempty"` + SecondsBehindMasterMax uint32 `protobuf:"varint,4,opt,name=seconds_behind_master_max,json=secondsBehindMasterMax" json:"seconds_behind_master_max,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *AggregateStats) Reset() { *m = AggregateStats{} } -func (m *AggregateStats) String() string { return proto.CompactTextString(m) } -func (*AggregateStats) ProtoMessage() {} -func (*AggregateStats) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{54} } +func (m *AggregateStats) Reset() { *m = AggregateStats{} } +func (m *AggregateStats) String() string { return proto.CompactTextString(m) } +func (*AggregateStats) ProtoMessage() {} +func (*AggregateStats) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{54} +} +func (m *AggregateStats) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_AggregateStats.Unmarshal(m, b) +} +func (m *AggregateStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_AggregateStats.Marshal(b, m, deterministic) +} +func (dst *AggregateStats) XXX_Merge(src proto.Message) { + xxx_messageInfo_AggregateStats.Merge(dst, src) +} +func (m *AggregateStats) XXX_Size() int { + return xxx_messageInfo_AggregateStats.Size(m) +} +func (m *AggregateStats) XXX_DiscardUnknown() { + xxx_messageInfo_AggregateStats.DiscardUnknown(m) +} + +var xxx_messageInfo_AggregateStats proto.InternalMessageInfo func (m *AggregateStats) GetHealthyTabletCount() int32 { if m != nil { @@ -2616,13 +3791,35 @@ type StreamHealthResponse struct { // code uses it to verify that it's talking to the correct tablet and that it // hasn't changed in the meantime e.g. due to tablet restarts where ports or // ips have been reused but assigned differently. - TabletAlias *topodata.TabletAlias `protobuf:"bytes,5,opt,name=tablet_alias,json=tabletAlias" json:"tablet_alias,omitempty"` + TabletAlias *topodata.TabletAlias `protobuf:"bytes,5,opt,name=tablet_alias,json=tabletAlias" json:"tablet_alias,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StreamHealthResponse) Reset() { *m = StreamHealthResponse{} } +func (m *StreamHealthResponse) String() string { return proto.CompactTextString(m) } +func (*StreamHealthResponse) ProtoMessage() {} +func (*StreamHealthResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{55} +} +func (m *StreamHealthResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamHealthResponse.Unmarshal(m, b) +} +func (m *StreamHealthResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamHealthResponse.Marshal(b, m, deterministic) +} +func (dst *StreamHealthResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamHealthResponse.Merge(dst, src) +} +func (m *StreamHealthResponse) XXX_Size() int { + return xxx_messageInfo_StreamHealthResponse.Size(m) +} +func (m *StreamHealthResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StreamHealthResponse.DiscardUnknown(m) } -func (m *StreamHealthResponse) Reset() { *m = StreamHealthResponse{} } -func (m *StreamHealthResponse) String() string { return proto.CompactTextString(m) } -func (*StreamHealthResponse) ProtoMessage() {} -func (*StreamHealthResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{55} } +var xxx_messageInfo_StreamHealthResponse proto.InternalMessageInfo func (m *StreamHealthResponse) GetTarget() *Target { if m != nil { @@ -2678,13 +3875,35 @@ type UpdateStreamRequest struct { Position string `protobuf:"bytes,4,opt,name=position" json:"position,omitempty"` // If timestamp is set, we will start the streaming from the first // event in the binlogs that have that timestamp. Incompatible with position. - Timestamp int64 `protobuf:"varint,5,opt,name=timestamp" json:"timestamp,omitempty"` + Timestamp int64 `protobuf:"varint,5,opt,name=timestamp" json:"timestamp,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *UpdateStreamRequest) Reset() { *m = UpdateStreamRequest{} } +func (m *UpdateStreamRequest) String() string { return proto.CompactTextString(m) } +func (*UpdateStreamRequest) ProtoMessage() {} +func (*UpdateStreamRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{56} +} +func (m *UpdateStreamRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_UpdateStreamRequest.Unmarshal(m, b) +} +func (m *UpdateStreamRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_UpdateStreamRequest.Marshal(b, m, deterministic) +} +func (dst *UpdateStreamRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_UpdateStreamRequest.Merge(dst, src) +} +func (m *UpdateStreamRequest) XXX_Size() int { + return xxx_messageInfo_UpdateStreamRequest.Size(m) +} +func (m *UpdateStreamRequest) XXX_DiscardUnknown() { + xxx_messageInfo_UpdateStreamRequest.DiscardUnknown(m) } -func (m *UpdateStreamRequest) Reset() { *m = UpdateStreamRequest{} } -func (m *UpdateStreamRequest) String() string { return proto.CompactTextString(m) } -func (*UpdateStreamRequest) ProtoMessage() {} -func (*UpdateStreamRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{56} } +var xxx_messageInfo_UpdateStreamRequest proto.InternalMessageInfo func (m *UpdateStreamRequest) GetEffectiveCallerId() *vtrpc.CallerID { if m != nil { @@ -2723,13 +3942,35 @@ func (m *UpdateStreamRequest) GetTimestamp() int64 { // UpdateStreamResponse is returned by UpdateStream type UpdateStreamResponse struct { - Event *StreamEvent `protobuf:"bytes,1,opt,name=event" json:"event,omitempty"` + Event *StreamEvent `protobuf:"bytes,1,opt,name=event" json:"event,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *UpdateStreamResponse) Reset() { *m = UpdateStreamResponse{} } -func (m *UpdateStreamResponse) String() string { return proto.CompactTextString(m) } -func (*UpdateStreamResponse) ProtoMessage() {} -func (*UpdateStreamResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{57} } +func (m *UpdateStreamResponse) Reset() { *m = UpdateStreamResponse{} } +func (m *UpdateStreamResponse) String() string { return proto.CompactTextString(m) } +func (*UpdateStreamResponse) ProtoMessage() {} +func (*UpdateStreamResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{57} +} +func (m *UpdateStreamResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_UpdateStreamResponse.Unmarshal(m, b) +} +func (m *UpdateStreamResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_UpdateStreamResponse.Marshal(b, m, deterministic) +} +func (dst *UpdateStreamResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_UpdateStreamResponse.Merge(dst, src) +} +func (m *UpdateStreamResponse) XXX_Size() int { + return xxx_messageInfo_UpdateStreamResponse.Size(m) +} +func (m *UpdateStreamResponse) XXX_DiscardUnknown() { + xxx_messageInfo_UpdateStreamResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_UpdateStreamResponse proto.InternalMessageInfo func (m *UpdateStreamResponse) GetEvent() *StreamEvent { if m != nil { @@ -2740,16 +3981,38 @@ func (m *UpdateStreamResponse) GetEvent() *StreamEvent { // TransactionMetadata contains the metadata for a distributed transaction. type TransactionMetadata struct { - Dtid string `protobuf:"bytes,1,opt,name=dtid" json:"dtid,omitempty"` - State TransactionState `protobuf:"varint,2,opt,name=state,enum=query.TransactionState" json:"state,omitempty"` - TimeCreated int64 `protobuf:"varint,3,opt,name=time_created,json=timeCreated" json:"time_created,omitempty"` - Participants []*Target `protobuf:"bytes,4,rep,name=participants" json:"participants,omitempty"` + Dtid string `protobuf:"bytes,1,opt,name=dtid" json:"dtid,omitempty"` + State TransactionState `protobuf:"varint,2,opt,name=state,enum=query.TransactionState" json:"state,omitempty"` + TimeCreated int64 `protobuf:"varint,3,opt,name=time_created,json=timeCreated" json:"time_created,omitempty"` + Participants []*Target `protobuf:"bytes,4,rep,name=participants" json:"participants,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *TransactionMetadata) Reset() { *m = TransactionMetadata{} } +func (m *TransactionMetadata) String() string { return proto.CompactTextString(m) } +func (*TransactionMetadata) ProtoMessage() {} +func (*TransactionMetadata) Descriptor() ([]byte, []int) { + return fileDescriptor_query_05c95bca0e3aaf7a, []int{58} +} +func (m *TransactionMetadata) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_TransactionMetadata.Unmarshal(m, b) +} +func (m *TransactionMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_TransactionMetadata.Marshal(b, m, deterministic) +} +func (dst *TransactionMetadata) XXX_Merge(src proto.Message) { + xxx_messageInfo_TransactionMetadata.Merge(dst, src) +} +func (m *TransactionMetadata) XXX_Size() int { + return xxx_messageInfo_TransactionMetadata.Size(m) +} +func (m *TransactionMetadata) XXX_DiscardUnknown() { + xxx_messageInfo_TransactionMetadata.DiscardUnknown(m) } -func (m *TransactionMetadata) Reset() { *m = TransactionMetadata{} } -func (m *TransactionMetadata) String() string { return proto.CompactTextString(m) } -func (*TransactionMetadata) ProtoMessage() {} -func (*TransactionMetadata) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{58} } +var xxx_messageInfo_TransactionMetadata proto.InternalMessageInfo func (m *TransactionMetadata) GetDtid() string { if m != nil { @@ -2786,6 +4049,7 @@ func init() { proto.RegisterType((*Value)(nil), "query.Value") proto.RegisterType((*BindVariable)(nil), "query.BindVariable") proto.RegisterType((*BoundQuery)(nil), "query.BoundQuery") + proto.RegisterMapType((map[string]*BindVariable)(nil), "query.BoundQuery.BindVariablesEntry") proto.RegisterType((*ExecuteOptions)(nil), "query.ExecuteOptions") proto.RegisterType((*Field)(nil), "query.Field") proto.RegisterType((*Row)(nil), "query.Row") @@ -2851,207 +4115,209 @@ func init() { proto.RegisterEnum("query.SplitQueryRequest_Algorithm", SplitQueryRequest_Algorithm_name, SplitQueryRequest_Algorithm_value) } -func init() { proto.RegisterFile("query.proto", fileDescriptor0) } +func init() { proto.RegisterFile("query.proto", fileDescriptor_query_05c95bca0e3aaf7a) } -var fileDescriptor0 = []byte{ - // 3183 bytes of a gzipped FileDescriptorProto +var fileDescriptor_query_05c95bca0e3aaf7a = []byte{ + // 3202 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x5a, 0xcb, 0x73, 0x1b, 0xc7, 0x99, 0xd7, 0xe0, 0x41, 0x02, 0x1f, 0x08, 0xb0, 0xd9, 0x20, 0x25, 0x88, 0xf2, 0x83, 0x3b, 0xb6, - 0x6c, 0x2e, 0xed, 0xe5, 0xca, 0x94, 0x56, 0xab, 0xb5, 0x77, 0xbd, 0x1a, 0x82, 0x43, 0x19, 0x16, - 0x5e, 0x6a, 0x0c, 0x24, 0xcb, 0xe5, 0xaa, 0xa9, 0x21, 0xd0, 0x02, 0xa7, 0x38, 0xc0, 0x40, 0x33, - 0x03, 0x51, 0xbc, 0x69, 0xd7, 0x71, 0xde, 0x0f, 0xe7, 0xe9, 0x38, 0xa9, 0x38, 0xa9, 0xca, 0x3d, - 0x7f, 0x43, 0x2a, 0x7f, 0x40, 0x6e, 0x39, 0x24, 0x39, 0xe4, 0x90, 0x4a, 0xe5, 0x90, 0x2a, 0x57, - 0x4e, 0x39, 0xe4, 0x90, 0x4a, 0xf5, 0x63, 0x06, 0x03, 0x12, 0x7a, 0x58, 0xc9, 0x85, 0xb2, 0x4f, - 0xe8, 0xfe, 0xbe, 0xaf, 0x1f, 0xbf, 0xdf, 0xf7, 0xcd, 0xd7, 0x8d, 0xee, 0x86, 0xdc, 0xed, 0x11, - 0xf5, 0x0e, 0xd6, 0x87, 0x9e, 0x1b, 0xb8, 0x38, 0xcd, 0x2b, 0xcb, 0x85, 0xc0, 0x1d, 0xba, 0x5d, - 0x2b, 0xb0, 0x84, 0x78, 0x39, 0x77, 0x27, 0xf0, 0x86, 0x1d, 0x51, 0x51, 0xdf, 0x53, 0x60, 0xc6, - 0xb0, 0xbc, 0x1e, 0x0d, 0xf0, 0x32, 0x64, 0xf6, 0xe8, 0x81, 0x3f, 0xb4, 0x3a, 0xb4, 0xa4, 0xac, - 0x28, 0xab, 0x59, 0x12, 0xd5, 0xf1, 0x22, 0xa4, 0xfd, 0x5d, 0xcb, 0xeb, 0x96, 0x12, 0x5c, 0x21, - 0x2a, 0xf8, 0x3f, 0x20, 0x17, 0x58, 0x3b, 0x0e, 0x0d, 0xcc, 0xe0, 0x60, 0x48, 0x4b, 0xc9, 0x15, - 0x65, 0xb5, 0xb0, 0xb1, 0xb8, 0x1e, 0x8d, 0x67, 0x70, 0xa5, 0x71, 0x30, 0xa4, 0x04, 0x82, 0xa8, - 0x8c, 0x31, 0xa4, 0x3a, 0xd4, 0x71, 0x4a, 0x29, 0xde, 0x17, 0x2f, 0xab, 0x5b, 0x50, 0xb8, 0x6e, - 0x5c, 0xb1, 0x02, 0x5a, 0xb6, 0x1c, 0x87, 0x7a, 0x95, 0x2d, 0x36, 0x9d, 0x91, 0x4f, 0xbd, 0x81, - 0xd5, 0x8f, 0xa6, 0x13, 0xd6, 0xf1, 0x49, 0x98, 0xe9, 0x79, 0xee, 0x68, 0xe8, 0x97, 0x12, 0x2b, - 0xc9, 0xd5, 0x2c, 0x91, 0x35, 0xf5, 0x1d, 0x00, 0xfd, 0x0e, 0x1d, 0x04, 0x86, 0xbb, 0x47, 0x07, - 0xf8, 0x29, 0xc8, 0x06, 0x76, 0x9f, 0xfa, 0x81, 0xd5, 0x1f, 0xf2, 0x2e, 0x92, 0x64, 0x2c, 0xb8, - 0x0f, 0xa4, 0x65, 0xc8, 0x0c, 0x5d, 0xdf, 0x0e, 0x6c, 0x77, 0xc0, 0xf1, 0x64, 0x49, 0x54, 0x57, - 0x5f, 0x87, 0xf4, 0x75, 0xcb, 0x19, 0x51, 0xfc, 0x2c, 0xa4, 0x38, 0x60, 0x85, 0x03, 0xce, 0xad, - 0x0b, 0xd2, 0x39, 0x4e, 0xae, 0x60, 0x7d, 0xdf, 0x61, 0x96, 0xbc, 0xef, 0x39, 0x22, 0x2a, 0xea, - 0x1e, 0xcc, 0x6d, 0xda, 0x83, 0xee, 0x75, 0xcb, 0xb3, 0x19, 0x19, 0x8f, 0xd9, 0x0d, 0x7e, 0x1e, - 0x66, 0x78, 0xc1, 0x2f, 0x25, 0x57, 0x92, 0xab, 0xb9, 0x8d, 0x39, 0xd9, 0x90, 0xcf, 0x8d, 0x48, - 0x9d, 0xfa, 0x0b, 0x05, 0x60, 0xd3, 0x1d, 0x0d, 0xba, 0xd7, 0x98, 0x12, 0x23, 0x48, 0xfa, 0xb7, - 0x1d, 0x49, 0x24, 0x2b, 0xe2, 0xab, 0x50, 0xd8, 0xb1, 0x07, 0x5d, 0xf3, 0x8e, 0x9c, 0x8e, 0xe0, - 0x32, 0xb7, 0xf1, 0xbc, 0xec, 0x6e, 0xdc, 0x78, 0x3d, 0x3e, 0x6b, 0x5f, 0x1f, 0x04, 0xde, 0x01, - 0xc9, 0xef, 0xc4, 0x65, 0xcb, 0x6d, 0xc0, 0x47, 0x8d, 0xd8, 0xa0, 0x7b, 0xf4, 0x20, 0x1c, 0x74, - 0x8f, 0x1e, 0xe0, 0x7f, 0x8d, 0x23, 0xca, 0x6d, 0x14, 0xc3, 0xb1, 0x62, 0x6d, 0x25, 0xcc, 0x57, - 0x13, 0x97, 0x14, 0xf5, 0x4f, 0x69, 0x28, 0xe8, 0x77, 0x69, 0x67, 0x14, 0xd0, 0xc6, 0x90, 0xf9, - 0xc0, 0xc7, 0xeb, 0x50, 0xb4, 0x07, 0x1d, 0x67, 0xd4, 0xa5, 0x26, 0x65, 0xae, 0x36, 0x03, 0xe6, - 0x6b, 0xde, 0x5f, 0x86, 0x2c, 0x48, 0x55, 0x2c, 0x08, 0x34, 0x28, 0x76, 0xdc, 0xfe, 0xd0, 0xf2, - 0x26, 0xed, 0x93, 0x7c, 0xfc, 0x05, 0x39, 0xfe, 0xd8, 0x9e, 0x2c, 0x48, 0xeb, 0x58, 0x17, 0x35, - 0x98, 0x97, 0xfd, 0x76, 0xcd, 0x5b, 0x36, 0x75, 0xba, 0x3e, 0x0f, 0xdd, 0x42, 0x44, 0xd5, 0xe4, - 0x14, 0xd7, 0x2b, 0xd2, 0x78, 0x9b, 0xdb, 0x92, 0x82, 0x3d, 0x51, 0xc7, 0x6b, 0xb0, 0xd0, 0x71, - 0x6c, 0x36, 0x95, 0x5b, 0x8c, 0x62, 0xd3, 0x73, 0xf7, 0xfd, 0x52, 0x9a, 0xcf, 0x7f, 0x5e, 0x28, - 0xb6, 0x99, 0x9c, 0xb8, 0xfb, 0x3e, 0x7e, 0x15, 0x32, 0xfb, 0xae, 0xb7, 0xe7, 0xb8, 0x56, 0xb7, - 0x34, 0xc3, 0xc7, 0x7c, 0x66, 0xfa, 0x98, 0x37, 0xa4, 0x15, 0x89, 0xec, 0xf1, 0x2a, 0x20, 0xff, - 0xb6, 0x63, 0xfa, 0xd4, 0xa1, 0x9d, 0xc0, 0x74, 0xec, 0xbe, 0x1d, 0x94, 0x32, 0xfc, 0x2b, 0x28, - 0xf8, 0xb7, 0x9d, 0x16, 0x17, 0x57, 0x99, 0x14, 0x9b, 0xb0, 0x14, 0x78, 0xd6, 0xc0, 0xb7, 0x3a, - 0xac, 0x33, 0xd3, 0xf6, 0x5d, 0xc7, 0xe2, 0x5f, 0x40, 0x96, 0x0f, 0xb9, 0x36, 0x7d, 0x48, 0x63, - 0xdc, 0xa4, 0x12, 0xb6, 0x20, 0x8b, 0xc1, 0x14, 0x29, 0x7e, 0x05, 0x96, 0xfc, 0x3d, 0x7b, 0x68, - 0xf2, 0x7e, 0xcc, 0xa1, 0x63, 0x0d, 0xcc, 0x8e, 0xd5, 0xd9, 0xa5, 0x25, 0xe0, 0xb0, 0x31, 0x53, - 0xf2, 0x50, 0x6b, 0x3a, 0xd6, 0xa0, 0xcc, 0x34, 0xea, 0x6b, 0x50, 0x98, 0xe4, 0x11, 0x2f, 0x40, - 0xde, 0xb8, 0xd9, 0xd4, 0x4d, 0xad, 0xbe, 0x65, 0xd6, 0xb5, 0x9a, 0x8e, 0x4e, 0xe0, 0x3c, 0x64, - 0xb9, 0xa8, 0x51, 0xaf, 0xde, 0x44, 0x0a, 0x9e, 0x85, 0xa4, 0x56, 0xad, 0xa2, 0x84, 0x7a, 0x09, - 0x32, 0x21, 0x21, 0x78, 0x1e, 0x72, 0xed, 0x7a, 0xab, 0xa9, 0x97, 0x2b, 0xdb, 0x15, 0x7d, 0x0b, - 0x9d, 0xc0, 0x19, 0x48, 0x35, 0xaa, 0x46, 0x13, 0x29, 0xa2, 0xa4, 0x35, 0x51, 0x82, 0xb5, 0xdc, - 0xda, 0xd4, 0x50, 0x52, 0x0d, 0x60, 0x71, 0x1a, 0x2e, 0x9c, 0x83, 0xd9, 0x2d, 0x7d, 0x5b, 0x6b, - 0x57, 0x0d, 0x74, 0x02, 0x17, 0x61, 0x9e, 0xe8, 0x4d, 0x5d, 0x33, 0xb4, 0xcd, 0xaa, 0x6e, 0x12, - 0x5d, 0xdb, 0x42, 0x0a, 0xc6, 0x50, 0x60, 0x25, 0xb3, 0xdc, 0xa8, 0xd5, 0x2a, 0x86, 0xa1, 0x6f, - 0xa1, 0x04, 0x5e, 0x04, 0xc4, 0x65, 0xed, 0xfa, 0x58, 0x9a, 0xc4, 0x08, 0xe6, 0x5a, 0x3a, 0xa9, - 0x68, 0xd5, 0xca, 0xdb, 0xac, 0x03, 0x94, 0x7a, 0x33, 0x95, 0x51, 0x50, 0x42, 0xfd, 0x20, 0x01, - 0x69, 0x8e, 0x95, 0x65, 0xc8, 0x58, 0xde, 0xe3, 0xe5, 0x28, 0x5b, 0x24, 0x1e, 0x90, 0x2d, 0x78, - 0x92, 0x95, 0x79, 0x4b, 0x54, 0xf0, 0x19, 0xc8, 0xba, 0x5e, 0xcf, 0x14, 0x1a, 0x91, 0x71, 0x33, - 0xae, 0xd7, 0xe3, 0xa9, 0x99, 0x65, 0x3b, 0x96, 0xa8, 0x77, 0x2c, 0x9f, 0xf2, 0x08, 0xcc, 0x92, - 0xa8, 0x8e, 0x4f, 0x03, 0xb3, 0x33, 0xf9, 0x3c, 0x66, 0xb8, 0x6e, 0xd6, 0xf5, 0x7a, 0x75, 0x36, - 0x95, 0xe7, 0x20, 0xdf, 0x71, 0x9d, 0x51, 0x7f, 0x60, 0x3a, 0x74, 0xd0, 0x0b, 0x76, 0x4b, 0xb3, - 0x2b, 0xca, 0x6a, 0x9e, 0xcc, 0x09, 0x61, 0x95, 0xcb, 0x70, 0x09, 0x66, 0x3b, 0xbb, 0x96, 0xe7, - 0x53, 0x11, 0x75, 0x79, 0x12, 0x56, 0xf9, 0xa8, 0xb4, 0x63, 0xf7, 0x2d, 0xc7, 0xe7, 0x11, 0x96, - 0x27, 0x51, 0x9d, 0x81, 0xb8, 0xe5, 0x58, 0x3d, 0x9f, 0x47, 0x46, 0x9e, 0x88, 0x8a, 0xfa, 0x9f, - 0x90, 0x24, 0xee, 0x3e, 0xeb, 0x52, 0x0c, 0xe8, 0x97, 0x94, 0x95, 0xe4, 0x2a, 0x26, 0x61, 0x95, - 0x2d, 0x08, 0x32, 0x27, 0x8a, 0x54, 0x19, 0x66, 0xc1, 0x77, 0x60, 0x8e, 0x50, 0x7f, 0xe4, 0x04, - 0xfa, 0xdd, 0xc0, 0xb3, 0x7c, 0xbc, 0x01, 0xb9, 0x78, 0x16, 0x50, 0xee, 0x97, 0x05, 0x80, 0x8e, - 0x3f, 0xff, 0x12, 0xcc, 0xde, 0xf2, 0xa8, 0xbf, 0x4b, 0x3d, 0x99, 0x65, 0xc2, 0x2a, 0xcb, 0xb1, - 0x39, 0x1e, 0xb6, 0x62, 0x0c, 0x96, 0x99, 0x65, 0x7e, 0x50, 0x26, 0x32, 0x33, 0x77, 0x2a, 0x91, - 0x3a, 0xc6, 0x1e, 0xfb, 0xe4, 0x4d, 0xeb, 0xd6, 0x2d, 0xda, 0x09, 0xa8, 0x58, 0x80, 0x52, 0x64, - 0x8e, 0x09, 0x35, 0x29, 0x63, 0x6e, 0xb3, 0x07, 0x3e, 0xf5, 0x02, 0xd3, 0xee, 0x72, 0x87, 0xa6, - 0x48, 0x46, 0x08, 0x2a, 0x5d, 0xfc, 0x0c, 0xa4, 0x78, 0xd2, 0x48, 0xf1, 0x51, 0x40, 0x8e, 0x42, - 0xdc, 0x7d, 0xc2, 0xe5, 0xf8, 0x25, 0x98, 0xa1, 0x1c, 0x2f, 0x77, 0xea, 0x38, 0xcd, 0xc6, 0xa9, - 0x20, 0xd2, 0x44, 0xfd, 0x49, 0x12, 0x72, 0xad, 0xc0, 0xa3, 0x56, 0x9f, 0xe3, 0xc7, 0xff, 0x0d, - 0xe0, 0x07, 0x56, 0x40, 0xfb, 0x74, 0x10, 0x84, 0x40, 0x9e, 0x92, 0x1d, 0xc4, 0xec, 0xd6, 0x5b, - 0xa1, 0x11, 0x89, 0xd9, 0x1f, 0x26, 0x38, 0xf1, 0x08, 0x04, 0x2f, 0x7f, 0x94, 0x80, 0x6c, 0xd4, - 0x1b, 0xd6, 0x20, 0xd3, 0xb1, 0x02, 0xda, 0x73, 0xbd, 0x03, 0xb9, 0x32, 0x9e, 0x7d, 0xd0, 0xe8, - 0xeb, 0x65, 0x69, 0x4c, 0xa2, 0x66, 0xf8, 0x69, 0x10, 0xdb, 0x0d, 0x11, 0xbc, 0x62, 0x7d, 0xcf, - 0x72, 0x09, 0x0f, 0xdf, 0x57, 0x01, 0x0f, 0x3d, 0xbb, 0x6f, 0x79, 0x07, 0xe6, 0x1e, 0x3d, 0x08, - 0x53, 0x7a, 0x72, 0x8a, 0xcb, 0x90, 0xb4, 0xbb, 0x4a, 0x0f, 0x64, 0x12, 0xba, 0x34, 0xd9, 0x56, - 0x06, 0xdd, 0x51, 0x47, 0xc4, 0x5a, 0xf2, 0x75, 0xd9, 0x0f, 0x57, 0xe0, 0x34, 0x8f, 0x4f, 0x56, - 0x54, 0x5f, 0x84, 0x4c, 0x38, 0x79, 0x9c, 0x85, 0xb4, 0xee, 0x79, 0xae, 0x87, 0x4e, 0xf0, 0x5c, - 0x54, 0xab, 0x8a, 0x74, 0xb6, 0xb5, 0xc5, 0xd2, 0xd9, 0xcf, 0x13, 0xd1, 0x32, 0x48, 0xe8, 0xed, - 0x11, 0xf5, 0x03, 0xfc, 0xbf, 0x50, 0xa4, 0x3c, 0x56, 0xec, 0x3b, 0xd4, 0xec, 0xf0, 0x3d, 0x13, - 0x8b, 0x14, 0x11, 0xd0, 0xf3, 0xeb, 0x62, 0x8b, 0x17, 0xee, 0xa5, 0xc8, 0x42, 0x64, 0x2b, 0x45, - 0x5d, 0xac, 0x43, 0xd1, 0xee, 0xf7, 0x69, 0xd7, 0xb6, 0x82, 0x78, 0x07, 0xc2, 0x61, 0x4b, 0xe1, - 0x96, 0x62, 0x62, 0x4b, 0x46, 0x16, 0xa2, 0x16, 0x51, 0x37, 0x67, 0x61, 0x26, 0xe0, 0xdb, 0x47, - 0xb9, 0xa2, 0xe6, 0xc3, 0xbc, 0xc4, 0x85, 0x44, 0x2a, 0xf1, 0x8b, 0x20, 0x36, 0xa3, 0x3c, 0x03, - 0x8d, 0x03, 0x62, 0xbc, 0xc7, 0x20, 0x42, 0x8f, 0xcf, 0x42, 0x61, 0x62, 0x29, 0xea, 0x72, 0xc2, - 0x92, 0x24, 0x1f, 0x5f, 0x57, 0xba, 0xf8, 0xdf, 0x61, 0xd6, 0x15, 0xcb, 0x10, 0xcf, 0x4d, 0xe3, - 0x19, 0x4f, 0xae, 0x51, 0x24, 0xb4, 0x52, 0xff, 0x07, 0xe6, 0x23, 0x06, 0xfd, 0xa1, 0x3b, 0xf0, - 0x29, 0x5e, 0x83, 0x19, 0x8f, 0x7f, 0x10, 0x92, 0x35, 0x2c, 0xbb, 0x88, 0x7d, 0xd1, 0x44, 0x5a, - 0xa8, 0x5d, 0x98, 0x17, 0x92, 0x1b, 0x76, 0xb0, 0xcb, 0x1d, 0x85, 0xcf, 0x42, 0x9a, 0xb2, 0xc2, - 0x21, 0xce, 0x49, 0xb3, 0xcc, 0xf5, 0x44, 0x68, 0x63, 0xa3, 0x24, 0x1e, 0x3a, 0xca, 0x9f, 0x13, - 0x50, 0x94, 0xb3, 0xdc, 0xb4, 0x82, 0xce, 0xee, 0x31, 0x75, 0xf6, 0x4b, 0x30, 0xcb, 0xe4, 0x76, - 0xf4, 0x61, 0x4c, 0x71, 0x77, 0x68, 0xc1, 0x1c, 0x6e, 0xf9, 0x66, 0xcc, 0xbb, 0x72, 0x2b, 0x94, - 0xb7, 0xfc, 0xd8, 0x42, 0x3c, 0x25, 0x2e, 0x66, 0x1e, 0x12, 0x17, 0xb3, 0x8f, 0x14, 0x17, 0x5b, - 0xb0, 0x38, 0xc9, 0xb8, 0x0c, 0x8e, 0x97, 0x61, 0x56, 0x38, 0x25, 0x4c, 0x81, 0xd3, 0xfc, 0x16, - 0x9a, 0xa8, 0x3f, 0x4e, 0xc0, 0xa2, 0xcc, 0x4e, 0x9f, 0x8e, 0xcf, 0x34, 0xc6, 0x73, 0xfa, 0x91, - 0x78, 0x2e, 0xc3, 0xd2, 0x21, 0x82, 0x1e, 0xe3, 0x2b, 0xfc, 0x58, 0x81, 0xb9, 0x4d, 0xda, 0xb3, - 0x07, 0xc7, 0x94, 0xde, 0x18, 0x6b, 0xa9, 0x47, 0x62, 0xed, 0x22, 0xe4, 0x25, 0x5e, 0xc9, 0xd6, - 0xd1, 0xcf, 0x40, 0x99, 0xf2, 0x19, 0xa8, 0x7f, 0x50, 0x20, 0x5f, 0x76, 0xfb, 0x7d, 0x3b, 0x38, - 0xa6, 0x4c, 0x1d, 0xc5, 0x99, 0x9a, 0x86, 0x13, 0x41, 0x21, 0x84, 0x29, 0x08, 0x52, 0xff, 0xa8, - 0xc0, 0x3c, 0x71, 0x1d, 0x67, 0xc7, 0xea, 0xec, 0x3d, 0xd9, 0xd8, 0x31, 0xa0, 0x31, 0x50, 0x89, - 0xfe, 0xaf, 0x0a, 0x14, 0x9a, 0x1e, 0x65, 0xff, 0x5f, 0x9f, 0x68, 0xf0, 0xec, 0x0f, 0x52, 0x37, - 0x90, 0x9b, 0x83, 0x2c, 0xe1, 0x65, 0x75, 0x01, 0xe6, 0x23, 0xec, 0x92, 0x8f, 0xdf, 0x28, 0xb0, - 0x24, 0x02, 0x44, 0x6a, 0xba, 0xc7, 0x94, 0x96, 0x10, 0x6f, 0x2a, 0x86, 0xb7, 0x04, 0x27, 0x0f, - 0x63, 0x93, 0xb0, 0xdf, 0x4d, 0xc0, 0xa9, 0x30, 0x36, 0x8e, 0x39, 0xf0, 0x7f, 0x20, 0x1e, 0x96, - 0xa1, 0x74, 0x94, 0x04, 0xc9, 0xd0, 0xfb, 0x09, 0x28, 0x95, 0x3d, 0x6a, 0x05, 0x34, 0xb6, 0xc9, - 0x78, 0x72, 0x62, 0x03, 0xbf, 0x02, 0x73, 0x43, 0xcb, 0x0b, 0xec, 0x8e, 0x3d, 0xb4, 0xd8, 0xdf, - 0xb8, 0x34, 0xdf, 0xc3, 0x1c, 0xea, 0x60, 0xc2, 0x44, 0x3d, 0x03, 0xa7, 0xa7, 0x30, 0x22, 0xf9, - 0xfa, 0x9b, 0x02, 0xb8, 0x15, 0x58, 0x5e, 0xf0, 0x29, 0x58, 0x55, 0xa6, 0x06, 0xd3, 0x12, 0x14, - 0x27, 0xf0, 0xc7, 0x79, 0xa1, 0xc1, 0xa7, 0x62, 0xc5, 0xb9, 0x2f, 0x2f, 0x71, 0xfc, 0x92, 0x97, - 0xdf, 0x29, 0xb0, 0x5c, 0x76, 0xc5, 0xf9, 0xdd, 0x13, 0xf9, 0x85, 0xa9, 0x4f, 0xc3, 0x99, 0xa9, - 0x00, 0x25, 0x01, 0xbf, 0x55, 0xe0, 0x24, 0xa1, 0x56, 0xf7, 0xc9, 0x04, 0x7f, 0x0d, 0x4e, 0x1d, - 0x01, 0x27, 0x77, 0xa8, 0x17, 0x21, 0xd3, 0xa7, 0x81, 0xd5, 0xb5, 0x02, 0x4b, 0x42, 0x5a, 0x0e, - 0xfb, 0x1d, 0x5b, 0xd7, 0xa4, 0x05, 0x89, 0x6c, 0xd5, 0x8f, 0x12, 0x50, 0xe4, 0x7b, 0xdd, 0xcf, - 0xfe, 0x41, 0x4d, 0xff, 0x2f, 0xf0, 0xbe, 0x02, 0x8b, 0x93, 0x04, 0x45, 0xff, 0x09, 0xfe, 0xd9, - 0x07, 0x11, 0x53, 0x12, 0x42, 0x72, 0xda, 0x16, 0xf4, 0x97, 0x09, 0x28, 0xc5, 0xa7, 0xf4, 0xd9, - 0xa1, 0xc5, 0xe4, 0xa1, 0xc5, 0x27, 0x3e, 0xa5, 0xfa, 0x40, 0x81, 0xd3, 0x53, 0x08, 0xfd, 0x64, - 0x8e, 0x8e, 0x1d, 0x5d, 0x24, 0x1e, 0x7a, 0x74, 0xf1, 0xa8, 0xae, 0xfe, 0xb5, 0x02, 0x8b, 0x35, - 0xea, 0xfb, 0x56, 0x8f, 0x8a, 0xff, 0xf1, 0xc7, 0x37, 0x9b, 0xf1, 0x43, 0xe1, 0xd4, 0xf8, 0x66, - 0x45, 0x2d, 0xc3, 0xd2, 0x21, 0x68, 0x8f, 0x71, 0x36, 0xf1, 0x17, 0x05, 0x16, 0x64, 0x2f, 0xda, - 0xb1, 0xdd, 0x08, 0x4c, 0x61, 0x07, 0x3f, 0x03, 0x49, 0xbb, 0x1b, 0xee, 0x20, 0x27, 0xef, 0x9a, - 0x99, 0x42, 0xbd, 0x0c, 0x38, 0x8e, 0xfb, 0x31, 0xa8, 0xfb, 0x55, 0x12, 0x16, 0x5a, 0x43, 0xc7, - 0x0e, 0xa4, 0xf2, 0xc9, 0x4e, 0xfc, 0xff, 0x02, 0x73, 0x3e, 0x03, 0x6b, 0x8a, 0xdb, 0x32, 0x4e, - 0x6c, 0x96, 0xe4, 0xb8, 0xac, 0xcc, 0x45, 0xf8, 0x59, 0xc8, 0x85, 0x26, 0xa3, 0x41, 0x20, 0x4f, - 0x3a, 0x41, 0x5a, 0x8c, 0x06, 0x01, 0xbe, 0x00, 0xa7, 0x06, 0xa3, 0x3e, 0xbf, 0x39, 0x36, 0x87, - 0xd4, 0x0b, 0xef, 0x55, 0x2d, 0x2f, 0xbc, 0xe1, 0x2d, 0x0e, 0x46, 0x7d, 0xe2, 0xee, 0xfb, 0x4d, - 0xea, 0x89, 0x7b, 0x55, 0xcb, 0x0b, 0xf0, 0x65, 0xc8, 0x5a, 0x4e, 0xcf, 0xf5, 0xec, 0x60, 0xb7, - 0x2f, 0xaf, 0x76, 0xd5, 0xf0, 0x6a, 0xe5, 0x30, 0xfd, 0xeb, 0x5a, 0x68, 0x49, 0xc6, 0x8d, 0xd4, - 0x97, 0x21, 0x1b, 0xc9, 0x31, 0x82, 0x39, 0xfd, 0x5a, 0x5b, 0xab, 0x9a, 0xad, 0x66, 0xb5, 0x62, - 0xb4, 0xc4, 0x75, 0xec, 0x76, 0xbb, 0x5a, 0x35, 0x5b, 0x65, 0xad, 0x8e, 0x14, 0x95, 0x00, 0xf0, - 0x2e, 0x79, 0xe7, 0x63, 0x82, 0x94, 0x87, 0x10, 0x74, 0x06, 0xb2, 0x9e, 0xbb, 0x2f, 0xb1, 0x27, - 0x38, 0x9c, 0x8c, 0xe7, 0xee, 0x73, 0xe4, 0xaa, 0x06, 0x38, 0x3e, 0x57, 0x19, 0x6d, 0xb1, 0xe4, - 0xad, 0x4c, 0x24, 0xef, 0xf1, 0xf8, 0x51, 0xf2, 0x16, 0x5b, 0x79, 0xf6, 0x9d, 0xbf, 0x41, 0x2d, - 0x27, 0x08, 0xd7, 0x2b, 0xf5, 0xa7, 0x09, 0xc8, 0x13, 0x26, 0xb1, 0xfb, 0xb4, 0x15, 0x58, 0x81, - 0xcf, 0x3c, 0xb5, 0xcb, 0x4d, 0xcc, 0x71, 0xda, 0xcd, 0x92, 0x9c, 0x90, 0x89, 0x4b, 0x80, 0x0d, - 0x58, 0xf2, 0x69, 0xc7, 0x1d, 0x74, 0x7d, 0x73, 0x87, 0xee, 0xda, 0x83, 0xae, 0xd9, 0xb7, 0xfc, - 0x40, 0xde, 0x14, 0xe6, 0x49, 0x51, 0x2a, 0x37, 0xb9, 0xae, 0xc6, 0x55, 0xf8, 0x1c, 0x2c, 0xee, - 0xd8, 0x03, 0xc7, 0xed, 0x99, 0x43, 0xc7, 0x3a, 0xa0, 0x9e, 0x2f, 0xa1, 0xb2, 0xf0, 0x4a, 0x13, - 0x2c, 0x74, 0x4d, 0xa1, 0x12, 0xee, 0x7e, 0x1b, 0xd6, 0xa6, 0x8e, 0x62, 0xde, 0xb2, 0x9d, 0x80, - 0x7a, 0xb4, 0x6b, 0x7a, 0x74, 0xe8, 0xd8, 0x1d, 0x71, 0x69, 0x2f, 0xf6, 0xee, 0x2f, 0x4c, 0x19, - 0x7a, 0x5b, 0x9a, 0x93, 0xb1, 0x35, 0x63, 0xbb, 0x33, 0x1c, 0x99, 0x23, 0xf6, 0x01, 0xf3, 0x55, - 0x4c, 0x21, 0x99, 0xce, 0x70, 0xd4, 0x66, 0x75, 0x8c, 0x20, 0x79, 0x7b, 0x28, 0x16, 0x2f, 0x85, - 0xb0, 0xa2, 0xfa, 0xb1, 0x02, 0x05, 0xad, 0xd7, 0xf3, 0x68, 0xcf, 0x0a, 0x24, 0x4d, 0xe7, 0x60, - 0x51, 0x50, 0x72, 0x60, 0xca, 0xd7, 0x40, 0x02, 0x8f, 0x22, 0xf0, 0x48, 0x9d, 0x78, 0x0b, 0x14, - 0x86, 0xef, 0xc9, 0xd1, 0x60, 0x6a, 0x9b, 0x04, 0x6f, 0xb3, 0x18, 0x69, 0xe3, 0xad, 0xfe, 0x0b, - 0x4e, 0x4f, 0x67, 0xa1, 0x6f, 0x8b, 0xf7, 0x1c, 0x79, 0x72, 0x72, 0x0a, 0xe8, 0x9a, 0x3d, 0x78, - 0x40, 0x53, 0xeb, 0x2e, 0xe7, 0xeb, 0x3e, 0x4d, 0xad, 0xbb, 0xea, 0xef, 0xa3, 0xa3, 0xfd, 0x30, - 0x5c, 0xa2, 0xd5, 0x38, 0xcc, 0x0b, 0xca, 0x83, 0xf2, 0x42, 0x09, 0x66, 0x7d, 0xea, 0xdd, 0xb1, - 0x07, 0xbd, 0xf0, 0xf6, 0x58, 0x56, 0x71, 0x0b, 0x5e, 0x90, 0xd8, 0xe9, 0xdd, 0x80, 0x7a, 0x03, - 0xcb, 0x71, 0x0e, 0x4c, 0x71, 0x50, 0x31, 0x08, 0x68, 0xd7, 0x1c, 0xbf, 0x5d, 0x12, 0x2b, 0xf2, - 0x73, 0xc2, 0x5a, 0x8f, 0x8c, 0x49, 0x64, 0x6b, 0x44, 0xaf, 0x9a, 0x5e, 0x83, 0x82, 0x27, 0x83, - 0xd8, 0xf4, 0x99, 0x7b, 0x64, 0x3e, 0x5a, 0x8c, 0xae, 0x80, 0x63, 0x11, 0x4e, 0xf2, 0xde, 0x44, - 0xc0, 0xbf, 0x0e, 0xf3, 0x56, 0xe8, 0x5b, 0xd9, 0x7a, 0x72, 0xdf, 0x32, 0xe9, 0x79, 0x52, 0xb0, - 0x26, 0x23, 0xe1, 0x12, 0xcc, 0x49, 0x44, 0x96, 0x63, 0x5b, 0xe3, 0x8d, 0xed, 0xa1, 0x07, 0x61, - 0x1a, 0x53, 0x12, 0xf9, 0x74, 0x8c, 0x57, 0xd8, 0xff, 0xe8, 0x62, 0x7b, 0xd8, 0xe5, 0x3d, 0x1d, - 0xe3, 0xdd, 0x45, 0xfc, 0xf5, 0x58, 0x6a, 0xf2, 0xf5, 0xd8, 0xe4, 0x6b, 0xb4, 0xf4, 0xa1, 0xd7, - 0x68, 0xea, 0x65, 0x58, 0x9c, 0xc4, 0x2f, 0xa3, 0x6c, 0x15, 0xd2, 0xfc, 0xa6, 0xfc, 0xd0, 0x32, - 0x1a, 0xbb, 0x0a, 0x27, 0xc2, 0x40, 0xfd, 0x99, 0x02, 0xc5, 0x29, 0x7f, 0xb1, 0xa2, 0xff, 0x6f, - 0x4a, 0xec, 0x78, 0xe8, 0xdf, 0x20, 0xcd, 0xef, 0xec, 0xe5, 0x63, 0x92, 0x53, 0x47, 0xff, 0xa1, - 0xf1, 0xfb, 0x75, 0x22, 0xac, 0x58, 0x22, 0xe4, 0x01, 0xd5, 0xe1, 0xe7, 0x43, 0xe1, 0x0e, 0x31, - 0xc7, 0x64, 0xe2, 0xc8, 0xe8, 0xe8, 0x81, 0x53, 0xea, 0xa1, 0x07, 0x4e, 0x6b, 0xdf, 0x4a, 0x42, - 0xb6, 0x76, 0xd0, 0xba, 0xed, 0x6c, 0x3b, 0x56, 0x8f, 0x5f, 0x80, 0xd7, 0x9a, 0xc6, 0x4d, 0x74, - 0x02, 0x2f, 0x40, 0xbe, 0xde, 0x30, 0xcc, 0x3a, 0x5b, 0x4a, 0xb6, 0xab, 0xda, 0x15, 0xa4, 0xb0, - 0xb5, 0xa6, 0x49, 0x2a, 0xe6, 0x55, 0xfd, 0xa6, 0x90, 0x24, 0x70, 0x11, 0xe6, 0xdb, 0xf5, 0xca, - 0xb5, 0xb6, 0x3e, 0x16, 0xa6, 0xf0, 0x12, 0x2c, 0xd4, 0xda, 0x55, 0xa3, 0xd2, 0xac, 0xc6, 0xc4, - 0x19, 0xb6, 0x2e, 0x6d, 0x56, 0x1b, 0x9b, 0xa2, 0x8a, 0x58, 0xff, 0xed, 0x7a, 0xab, 0x72, 0xa5, - 0xae, 0x6f, 0x09, 0xd1, 0x0a, 0x13, 0xbd, 0xad, 0x93, 0xc6, 0x76, 0x25, 0x1c, 0xf2, 0x32, 0x46, - 0x90, 0xdb, 0xac, 0xd4, 0x35, 0x22, 0x7b, 0xb9, 0xa7, 0xe0, 0x02, 0x64, 0xf5, 0x7a, 0xbb, 0x26, - 0xeb, 0x09, 0x5c, 0x82, 0xa2, 0xd6, 0x36, 0x1a, 0x66, 0xa5, 0x5e, 0x26, 0x7a, 0x4d, 0xaf, 0x1b, - 0x52, 0x93, 0xc2, 0x45, 0x28, 0x18, 0x95, 0x9a, 0xde, 0x32, 0xb4, 0x5a, 0x53, 0x0a, 0xd9, 0x2c, - 0x32, 0x2d, 0x3d, 0xb4, 0x41, 0x78, 0x19, 0x96, 0xea, 0x0d, 0x53, 0x3e, 0x2a, 0x32, 0xaf, 0x6b, - 0xd5, 0xb6, 0x2e, 0x75, 0x2b, 0xf8, 0x14, 0xe0, 0x46, 0xdd, 0x6c, 0x37, 0xb7, 0x34, 0x43, 0x37, - 0xeb, 0x8d, 0x1b, 0x52, 0x71, 0x19, 0x17, 0x20, 0x33, 0x9e, 0xc1, 0x3d, 0xc6, 0x42, 0xbe, 0xa9, - 0x11, 0x63, 0x0c, 0xf6, 0xde, 0x3d, 0x46, 0x16, 0x5c, 0x21, 0x8d, 0x76, 0x73, 0x6c, 0xb6, 0x00, - 0x39, 0x49, 0x96, 0x14, 0xa5, 0x98, 0x68, 0xb3, 0x52, 0x2f, 0x47, 0xf3, 0xbb, 0x97, 0x59, 0x4e, - 0x20, 0x65, 0x6d, 0x0f, 0x52, 0xdc, 0x1d, 0x19, 0x48, 0xd5, 0x1b, 0x75, 0x1d, 0x9d, 0xc0, 0xf3, - 0x00, 0x95, 0x56, 0xa5, 0x6e, 0xe8, 0x57, 0x88, 0x56, 0x65, 0xb0, 0xb9, 0x20, 0x24, 0x90, 0xa1, - 0x9d, 0x83, 0xd9, 0x4a, 0x6b, 0xbb, 0xda, 0xd0, 0x0c, 0x09, 0xb3, 0xd2, 0xba, 0xd6, 0x6e, 0x18, - 0x4c, 0x89, 0x70, 0x0e, 0x66, 0x2a, 0x2d, 0x43, 0x7f, 0xcb, 0x60, 0xb8, 0xb8, 0x4e, 0xb0, 0x8a, - 0xee, 0x5d, 0x5e, 0xfb, 0x30, 0x09, 0x29, 0xfe, 0x22, 0x34, 0x0f, 0x59, 0xee, 0x6d, 0xe3, 0x66, - 0x93, 0x0d, 0x99, 0x85, 0x54, 0xa5, 0x6e, 0x5c, 0x42, 0xff, 0x97, 0xc0, 0x00, 0xe9, 0x36, 0x2f, - 0xff, 0xff, 0x0c, 0x2b, 0x57, 0xea, 0xc6, 0x2b, 0x17, 0xd1, 0xbb, 0x09, 0xd6, 0x6d, 0x5b, 0x54, - 0x3e, 0x17, 0x2a, 0x36, 0x2e, 0xa0, 0xf7, 0x22, 0xc5, 0xc6, 0x05, 0xf4, 0xf9, 0x50, 0x71, 0x7e, - 0x03, 0x7d, 0x21, 0x52, 0x9c, 0xdf, 0x40, 0x5f, 0x0c, 0x15, 0x17, 0x2f, 0xa0, 0x2f, 0x45, 0x8a, - 0x8b, 0x17, 0xd0, 0x97, 0x67, 0x18, 0x16, 0x8e, 0xe4, 0xfc, 0x06, 0xfa, 0x4a, 0x26, 0xaa, 0x5d, - 0xbc, 0x80, 0xbe, 0x9a, 0x61, 0xfe, 0x8f, 0xbc, 0x8a, 0xbe, 0x86, 0xd8, 0x34, 0x99, 0x83, 0xd0, - 0xd7, 0x79, 0x91, 0xa9, 0xd0, 0x37, 0x10, 0xc3, 0xc8, 0xa4, 0xbc, 0xfa, 0x3e, 0xd7, 0xdc, 0xd4, - 0x35, 0x82, 0xbe, 0x39, 0x23, 0xde, 0x90, 0x95, 0x2b, 0x35, 0xad, 0x8a, 0x30, 0x6f, 0xc1, 0x58, - 0xf9, 0xf6, 0x39, 0x56, 0x64, 0xe1, 0x89, 0xbe, 0xd3, 0x64, 0x03, 0x5e, 0xd7, 0x48, 0xf9, 0x0d, - 0x8d, 0xa0, 0xef, 0x9e, 0x63, 0x03, 0x5e, 0xd7, 0x88, 0xe4, 0xeb, 0x7b, 0x4d, 0x66, 0xc8, 0x55, - 0x1f, 0x9c, 0x63, 0x93, 0x96, 0xf2, 0xef, 0x37, 0x71, 0x06, 0x92, 0x9b, 0x15, 0x03, 0x7d, 0xc8, - 0x47, 0x63, 0x21, 0x8a, 0x7e, 0x80, 0x98, 0xb0, 0xa5, 0x1b, 0xe8, 0x87, 0x4c, 0x98, 0x36, 0xda, - 0xcd, 0xaa, 0x8e, 0x9e, 0x62, 0x93, 0xbb, 0xa2, 0x37, 0x6a, 0xba, 0x41, 0x6e, 0xa2, 0x1f, 0x71, - 0xf3, 0x37, 0x5b, 0x8d, 0x3a, 0xfa, 0x08, 0xe1, 0x02, 0x80, 0xfe, 0x56, 0x93, 0xe8, 0xad, 0x56, - 0xa5, 0x51, 0x47, 0xcf, 0xae, 0x6d, 0x03, 0x3a, 0x9c, 0x0e, 0x18, 0x80, 0x76, 0xfd, 0x6a, 0xbd, - 0x71, 0xa3, 0x8e, 0x4e, 0xb0, 0x4a, 0x93, 0xe8, 0x4d, 0x8d, 0xe8, 0x48, 0xc1, 0x00, 0x33, 0xe2, - 0x85, 0x1b, 0x4a, 0xe0, 0x39, 0xc8, 0x90, 0x46, 0xb5, 0xba, 0xa9, 0x95, 0xaf, 0xa2, 0xe4, 0xe6, - 0x02, 0xcc, 0xdb, 0xee, 0xfa, 0x1d, 0x3b, 0xa0, 0xbe, 0x2f, 0xde, 0x1c, 0xef, 0xcc, 0xf0, 0x9f, - 0xf3, 0x7f, 0x0f, 0x00, 0x00, 0xff, 0xff, 0xde, 0xe3, 0xd2, 0x1e, 0xad, 0x2c, 0x00, 0x00, + 0x6c, 0x2e, 0xed, 0xa5, 0x64, 0x4a, 0xd6, 0x6a, 0xed, 0x5d, 0xaf, 0x86, 0xe0, 0x50, 0x86, 0x85, + 0x97, 0x1a, 0x03, 0xc9, 0x52, 0xb9, 0x6a, 0x6a, 0x08, 0xb4, 0xc0, 0x29, 0x0e, 0x30, 0xd0, 0xcc, + 0x80, 0x14, 0x6f, 0xda, 0xf5, 0x7a, 0xdf, 0x0f, 0xef, 0xd3, 0xeb, 0xdd, 0x5a, 0x6f, 0xaa, 0x72, + 0xcf, 0xdf, 0x90, 0xca, 0x1f, 0x90, 0x5b, 0x0e, 0x49, 0x0e, 0x39, 0xa4, 0x52, 0x39, 0xa4, 0xca, + 0x95, 0x53, 0x0e, 0x39, 0xa4, 0x52, 0xfd, 0x98, 0xc1, 0x80, 0x84, 0x1e, 0x56, 0x72, 0xa1, 0xec, + 0x5b, 0xf7, 0xf7, 0x7d, 0xfd, 0xf8, 0xfd, 0xbe, 0x6f, 0xbe, 0xee, 0xe9, 0x6e, 0xc8, 0xdd, 0x1f, + 0x51, 0xef, 0x70, 0x7d, 0xe8, 0xb9, 0x81, 0x8b, 0xd3, 0xbc, 0xb2, 0x5c, 0x08, 0xdc, 0xa1, 0xdb, + 0xb5, 0x02, 0x4b, 0x88, 0x97, 0x73, 0xfb, 0x81, 0x37, 0xec, 0x88, 0x8a, 0xfa, 0x89, 0x02, 0x33, + 0x86, 0xe5, 0xf5, 0x68, 0x80, 0x97, 0x21, 0xb3, 0x47, 0x0f, 0xfd, 0xa1, 0xd5, 0xa1, 0x25, 0x65, + 0x45, 0x59, 0xcd, 0x92, 0xa8, 0x8e, 0x17, 0x21, 0xed, 0xef, 0x5a, 0x5e, 0xb7, 0x94, 0xe0, 0x0a, + 0x51, 0xc1, 0x6f, 0x43, 0x2e, 0xb0, 0x76, 0x1c, 0x1a, 0x98, 0xc1, 0xe1, 0x90, 0x96, 0x92, 0x2b, + 0xca, 0x6a, 0x61, 0x63, 0x71, 0x3d, 0x1a, 0xcf, 0xe0, 0x4a, 0xe3, 0x70, 0x48, 0x09, 0x04, 0x51, + 0x19, 0x63, 0x48, 0x75, 0xa8, 0xe3, 0x94, 0x52, 0xbc, 0x2f, 0x5e, 0x56, 0xb7, 0xa0, 0x70, 0xcb, + 0xb8, 0x6e, 0x05, 0xb4, 0x6c, 0x39, 0x0e, 0xf5, 0x2a, 0x5b, 0x6c, 0x3a, 0x23, 0x9f, 0x7a, 0x03, + 0xab, 0x1f, 0x4d, 0x27, 0xac, 0xe3, 0xd3, 0x30, 0xd3, 0xf3, 0xdc, 0xd1, 0xd0, 0x2f, 0x25, 0x56, + 0x92, 0xab, 0x59, 0x22, 0x6b, 0xea, 0x47, 0x00, 0xfa, 0x3e, 0x1d, 0x04, 0x86, 0xbb, 0x47, 0x07, + 0xf8, 0x05, 0xc8, 0x06, 0x76, 0x9f, 0xfa, 0x81, 0xd5, 0x1f, 0xf2, 0x2e, 0x92, 0x64, 0x2c, 0x78, + 0x04, 0xa4, 0x65, 0xc8, 0x0c, 0x5d, 0xdf, 0x0e, 0x6c, 0x77, 0xc0, 0xf1, 0x64, 0x49, 0x54, 0x57, + 0xdf, 0x83, 0xf4, 0x2d, 0xcb, 0x19, 0x51, 0xfc, 0x32, 0xa4, 0x38, 0x60, 0x85, 0x03, 0xce, 0xad, + 0x0b, 0xd2, 0x39, 0x4e, 0xae, 0x60, 0x7d, 0xef, 0x33, 0x4b, 0xde, 0xf7, 0x1c, 0x11, 0x15, 0x75, + 0x0f, 0xe6, 0x36, 0xed, 0x41, 0xf7, 0x96, 0xe5, 0xd9, 0x8c, 0x8c, 0x67, 0xec, 0x06, 0xbf, 0x0a, + 0x33, 0xbc, 0xe0, 0x97, 0x92, 0x2b, 0xc9, 0xd5, 0xdc, 0xc6, 0x9c, 0x6c, 0xc8, 0xe7, 0x46, 0xa4, + 0x4e, 0xfd, 0x9e, 0x02, 0xb0, 0xe9, 0x8e, 0x06, 0xdd, 0x9b, 0x4c, 0x89, 0x11, 0x24, 0xfd, 0xfb, + 0x8e, 0x24, 0x92, 0x15, 0xf1, 0x0d, 0x28, 0xec, 0xd8, 0x83, 0xae, 0xb9, 0x2f, 0xa7, 0x23, 0xb8, + 0xcc, 0x6d, 0xbc, 0x2a, 0xbb, 0x1b, 0x37, 0x5e, 0x8f, 0xcf, 0xda, 0xd7, 0x07, 0x81, 0x77, 0x48, + 0xf2, 0x3b, 0x71, 0xd9, 0x72, 0x1b, 0xf0, 0x71, 0x23, 0x36, 0xe8, 0x1e, 0x3d, 0x0c, 0x07, 0xdd, + 0xa3, 0x87, 0xf8, 0x0f, 0xe3, 0x88, 0x72, 0x1b, 0xc5, 0x70, 0xac, 0x58, 0x5b, 0x09, 0xf3, 0x9d, + 0xc4, 0x55, 0x45, 0xfd, 0x45, 0x1a, 0x0a, 0xfa, 0x03, 0xda, 0x19, 0x05, 0xb4, 0x31, 0x64, 0x3e, + 0xf0, 0xf1, 0x3a, 0x14, 0xed, 0x41, 0xc7, 0x19, 0x75, 0xa9, 0x49, 0x99, 0xab, 0xcd, 0x80, 0xf9, + 0x9a, 0xf7, 0x97, 0x21, 0x0b, 0x52, 0x15, 0x0b, 0x02, 0x0d, 0x8a, 0x1d, 0xb7, 0x3f, 0xb4, 0xbc, + 0x49, 0xfb, 0x24, 0x1f, 0x7f, 0x41, 0x8e, 0x3f, 0xb6, 0x27, 0x0b, 0xd2, 0x3a, 0xd6, 0x45, 0x0d, + 0xe6, 0x65, 0xbf, 0x5d, 0xf3, 0x9e, 0x4d, 0x9d, 0xae, 0xcf, 0x43, 0xb7, 0x10, 0x51, 0x35, 0x39, + 0xc5, 0xf5, 0x8a, 0x34, 0xde, 0xe6, 0xb6, 0xa4, 0x60, 0x4f, 0xd4, 0xf1, 0x1a, 0x2c, 0x74, 0x1c, + 0x9b, 0x4d, 0xe5, 0x1e, 0xa3, 0xd8, 0xf4, 0xdc, 0x03, 0xbf, 0x94, 0xe6, 0xf3, 0x9f, 0x17, 0x8a, + 0x6d, 0x26, 0x27, 0xee, 0x81, 0x8f, 0xdf, 0x81, 0xcc, 0x81, 0xeb, 0xed, 0x39, 0xae, 0xd5, 0x2d, + 0xcd, 0xf0, 0x31, 0x5f, 0x9a, 0x3e, 0xe6, 0x6d, 0x69, 0x45, 0x22, 0x7b, 0xbc, 0x0a, 0xc8, 0xbf, + 0xef, 0x98, 0x3e, 0x75, 0x68, 0x27, 0x30, 0x1d, 0xbb, 0x6f, 0x07, 0xa5, 0x0c, 0xff, 0x0a, 0x0a, + 0xfe, 0x7d, 0xa7, 0xc5, 0xc5, 0x55, 0x26, 0xc5, 0x26, 0x2c, 0x05, 0x9e, 0x35, 0xf0, 0xad, 0x0e, + 0xeb, 0xcc, 0xb4, 0x7d, 0xd7, 0xb1, 0xf8, 0x17, 0x90, 0xe5, 0x43, 0xae, 0x4d, 0x1f, 0xd2, 0x18, + 0x37, 0xa9, 0x84, 0x2d, 0xc8, 0x62, 0x30, 0x45, 0x8a, 0xdf, 0x82, 0x25, 0x7f, 0xcf, 0x1e, 0x9a, + 0xbc, 0x1f, 0x73, 0xe8, 0x58, 0x03, 0xb3, 0x63, 0x75, 0x76, 0x69, 0x09, 0x38, 0x6c, 0xcc, 0x94, + 0x3c, 0xd4, 0x9a, 0x8e, 0x35, 0x28, 0x33, 0x8d, 0xfa, 0x2e, 0x14, 0x26, 0x79, 0xc4, 0x0b, 0x90, + 0x37, 0xee, 0x34, 0x75, 0x53, 0xab, 0x6f, 0x99, 0x75, 0xad, 0xa6, 0xa3, 0x53, 0x38, 0x0f, 0x59, + 0x2e, 0x6a, 0xd4, 0xab, 0x77, 0x90, 0x82, 0x67, 0x21, 0xa9, 0x55, 0xab, 0x28, 0xa1, 0x5e, 0x85, + 0x4c, 0x48, 0x08, 0x9e, 0x87, 0x5c, 0xbb, 0xde, 0x6a, 0xea, 0xe5, 0xca, 0x76, 0x45, 0xdf, 0x42, + 0xa7, 0x70, 0x06, 0x52, 0x8d, 0xaa, 0xd1, 0x44, 0x8a, 0x28, 0x69, 0x4d, 0x94, 0x60, 0x2d, 0xb7, + 0x36, 0x35, 0x94, 0x54, 0x03, 0x58, 0x9c, 0x86, 0x0b, 0xe7, 0x60, 0x76, 0x4b, 0xdf, 0xd6, 0xda, + 0x55, 0x03, 0x9d, 0xc2, 0x45, 0x98, 0x27, 0x7a, 0x53, 0xd7, 0x0c, 0x6d, 0xb3, 0xaa, 0x9b, 0x44, + 0xd7, 0xb6, 0x90, 0x82, 0x31, 0x14, 0x58, 0xc9, 0x2c, 0x37, 0x6a, 0xb5, 0x8a, 0x61, 0xe8, 0x5b, + 0x28, 0x81, 0x17, 0x01, 0x71, 0x59, 0xbb, 0x3e, 0x96, 0x26, 0x31, 0x82, 0xb9, 0x96, 0x4e, 0x2a, + 0x5a, 0xb5, 0x72, 0x97, 0x75, 0x80, 0x52, 0x1f, 0xa4, 0x32, 0x0a, 0x4a, 0xa8, 0x9f, 0x25, 0x20, + 0xcd, 0xb1, 0xb2, 0x0c, 0x19, 0xcb, 0x7b, 0xbc, 0x1c, 0x65, 0x8b, 0xc4, 0x63, 0xb2, 0x05, 0x4f, + 0xb2, 0x32, 0x6f, 0x89, 0x0a, 0x3e, 0x07, 0x59, 0xd7, 0xeb, 0x99, 0x42, 0x23, 0x32, 0x6e, 0xc6, + 0xf5, 0x7a, 0x3c, 0x35, 0xb3, 0x6c, 0xc7, 0x12, 0xf5, 0x8e, 0xe5, 0x53, 0x1e, 0x81, 0x59, 0x12, + 0xd5, 0xf1, 0x59, 0x60, 0x76, 0x26, 0x9f, 0xc7, 0x0c, 0xd7, 0xcd, 0xba, 0x5e, 0xaf, 0xce, 0xa6, + 0xf2, 0x0a, 0xe4, 0x3b, 0xae, 0x33, 0xea, 0x0f, 0x4c, 0x87, 0x0e, 0x7a, 0xc1, 0x6e, 0x69, 0x76, + 0x45, 0x59, 0xcd, 0x93, 0x39, 0x21, 0xac, 0x72, 0x19, 0x2e, 0xc1, 0x6c, 0x67, 0xd7, 0xf2, 0x7c, + 0x2a, 0xa2, 0x2e, 0x4f, 0xc2, 0x2a, 0x1f, 0x95, 0x76, 0xec, 0xbe, 0xe5, 0xf8, 0x3c, 0xc2, 0xf2, + 0x24, 0xaa, 0x33, 0x10, 0xf7, 0x1c, 0xab, 0xe7, 0xf3, 0xc8, 0xc8, 0x13, 0x51, 0x51, 0xff, 0x18, + 0x92, 0xc4, 0x3d, 0x60, 0x5d, 0x8a, 0x01, 0xfd, 0x92, 0xb2, 0x92, 0x5c, 0xc5, 0x24, 0xac, 0xb2, + 0x05, 0x41, 0xe6, 0x44, 0x91, 0x2a, 0xc3, 0x2c, 0xf8, 0x11, 0xcc, 0x11, 0xea, 0x8f, 0x9c, 0x40, + 0x7f, 0x10, 0x78, 0x96, 0x8f, 0x37, 0x20, 0x17, 0xcf, 0x02, 0xca, 0xa3, 0xb2, 0x00, 0xd0, 0xf1, + 0xe7, 0x5f, 0x82, 0xd9, 0x7b, 0x1e, 0xf5, 0x77, 0xa9, 0x27, 0xb3, 0x4c, 0x58, 0x65, 0x39, 0x36, + 0xc7, 0xc3, 0x56, 0x8c, 0xc1, 0x32, 0xb3, 0xcc, 0x0f, 0xca, 0x44, 0x66, 0xe6, 0x4e, 0x25, 0x52, + 0xc7, 0xd8, 0x63, 0x9f, 0xbc, 0x69, 0xdd, 0xbb, 0x47, 0x3b, 0x01, 0x15, 0x0b, 0x50, 0x8a, 0xcc, + 0x31, 0xa1, 0x26, 0x65, 0xcc, 0x6d, 0xf6, 0xc0, 0xa7, 0x5e, 0x60, 0xda, 0x5d, 0xee, 0xd0, 0x14, + 0xc9, 0x08, 0x41, 0xa5, 0x8b, 0x5f, 0x82, 0x14, 0x4f, 0x1a, 0x29, 0x3e, 0x0a, 0xc8, 0x51, 0x88, + 0x7b, 0x40, 0xb8, 0x1c, 0xbf, 0x01, 0x33, 0x94, 0xe3, 0xe5, 0x4e, 0x1d, 0xa7, 0xd9, 0x38, 0x15, + 0x44, 0x9a, 0xa8, 0xdf, 0x4a, 0x42, 0xae, 0x15, 0x78, 0xd4, 0xea, 0x73, 0xfc, 0xf8, 0x4f, 0x01, + 0xfc, 0xc0, 0x0a, 0x68, 0x9f, 0x0e, 0x82, 0x10, 0xc8, 0x0b, 0xb2, 0x83, 0x98, 0xdd, 0x7a, 0x2b, + 0x34, 0x22, 0x31, 0xfb, 0xa3, 0x04, 0x27, 0x9e, 0x82, 0xe0, 0xe5, 0x2f, 0x12, 0x90, 0x8d, 0x7a, + 0xc3, 0x1a, 0x64, 0x3a, 0x56, 0x40, 0x7b, 0xae, 0x77, 0x28, 0x57, 0xc6, 0xf3, 0x8f, 0x1b, 0x7d, + 0xbd, 0x2c, 0x8d, 0x49, 0xd4, 0x0c, 0xbf, 0x08, 0x62, 0xbb, 0x21, 0x82, 0x57, 0xac, 0xef, 0x59, + 0x2e, 0xe1, 0xe1, 0xfb, 0x0e, 0xe0, 0xa1, 0x67, 0xf7, 0x2d, 0xef, 0xd0, 0xdc, 0xa3, 0x87, 0x61, + 0x4a, 0x4f, 0x4e, 0x71, 0x19, 0x92, 0x76, 0x37, 0xe8, 0xa1, 0x4c, 0x42, 0x57, 0x27, 0xdb, 0xca, + 0xa0, 0x3b, 0xee, 0x88, 0x58, 0x4b, 0xbe, 0x2e, 0xfb, 0xe1, 0x0a, 0x9c, 0xe6, 0xf1, 0xc9, 0x8a, + 0xea, 0xeb, 0x90, 0x09, 0x27, 0x8f, 0xb3, 0x90, 0xd6, 0x3d, 0xcf, 0xf5, 0xd0, 0x29, 0x9e, 0x8b, + 0x6a, 0x55, 0x91, 0xce, 0xb6, 0xb6, 0x58, 0x3a, 0xfb, 0x6e, 0x22, 0x5a, 0x06, 0x09, 0xbd, 0x3f, + 0xa2, 0x7e, 0x80, 0xff, 0x1c, 0x8a, 0x94, 0xc7, 0x8a, 0xbd, 0x4f, 0xcd, 0x0e, 0xdf, 0x33, 0xb1, + 0x48, 0x11, 0x01, 0x3d, 0xbf, 0x2e, 0xb6, 0x78, 0xe1, 0x5e, 0x8a, 0x2c, 0x44, 0xb6, 0x52, 0xd4, + 0xc5, 0x3a, 0x14, 0xed, 0x7e, 0x9f, 0x76, 0x6d, 0x2b, 0x88, 0x77, 0x20, 0x1c, 0xb6, 0x14, 0x6e, + 0x29, 0x26, 0xb6, 0x64, 0x64, 0x21, 0x6a, 0x11, 0x75, 0x73, 0x1e, 0x66, 0x02, 0xbe, 0x7d, 0x94, + 0x2b, 0x6a, 0x3e, 0xcc, 0x4b, 0x5c, 0x48, 0xa4, 0x12, 0xbf, 0x0e, 0x62, 0x33, 0xca, 0x33, 0xd0, + 0x38, 0x20, 0xc6, 0x7b, 0x0c, 0x22, 0xf4, 0xf8, 0x3c, 0x14, 0x26, 0x96, 0xa2, 0x2e, 0x27, 0x2c, + 0x49, 0xf2, 0xf1, 0x75, 0xa5, 0x8b, 0x2f, 0xc0, 0xac, 0x2b, 0x96, 0x21, 0x9e, 0x9b, 0xc6, 0x33, + 0x9e, 0x5c, 0xa3, 0x48, 0x68, 0xa5, 0xfe, 0x19, 0xcc, 0x47, 0x0c, 0xfa, 0x43, 0x77, 0xe0, 0x53, + 0xbc, 0x06, 0x33, 0x1e, 0xff, 0x20, 0x24, 0x6b, 0x58, 0x76, 0x11, 0xfb, 0xa2, 0x89, 0xb4, 0x50, + 0xbb, 0x30, 0x2f, 0x24, 0xb7, 0xed, 0x60, 0x97, 0x3b, 0x0a, 0x9f, 0x87, 0x34, 0x65, 0x85, 0x23, + 0x9c, 0x93, 0x66, 0x99, 0xeb, 0x89, 0xd0, 0xc6, 0x46, 0x49, 0x3c, 0x71, 0x94, 0x5f, 0x26, 0xa0, + 0x28, 0x67, 0xb9, 0x69, 0x05, 0x9d, 0xdd, 0x13, 0xea, 0xec, 0x37, 0x60, 0x96, 0xc9, 0xed, 0xe8, + 0xc3, 0x98, 0xe2, 0xee, 0xd0, 0x82, 0x39, 0xdc, 0xf2, 0xcd, 0x98, 0x77, 0xe5, 0x56, 0x28, 0x6f, + 0xf9, 0xb1, 0x85, 0x78, 0x4a, 0x5c, 0xcc, 0x3c, 0x21, 0x2e, 0x66, 0x9f, 0x2a, 0x2e, 0xb6, 0x60, + 0x71, 0x92, 0x71, 0x19, 0x1c, 0x6f, 0xc2, 0xac, 0x70, 0x4a, 0x98, 0x02, 0xa7, 0xf9, 0x2d, 0x34, + 0x51, 0xff, 0x3f, 0x01, 0x8b, 0x32, 0x3b, 0x7d, 0x3d, 0x3e, 0xd3, 0x18, 0xcf, 0xe9, 0xa7, 0xe2, + 0xb9, 0x0c, 0x4b, 0x47, 0x08, 0x7a, 0x86, 0xaf, 0xf0, 0x4b, 0x05, 0xe6, 0x36, 0x69, 0xcf, 0x1e, + 0x9c, 0x50, 0x7a, 0x63, 0xac, 0xa5, 0x9e, 0x8a, 0xb5, 0x2b, 0x90, 0x97, 0x78, 0x25, 0x5b, 0xc7, + 0x3f, 0x03, 0x65, 0xca, 0x67, 0xa0, 0xfe, 0x4c, 0x81, 0x7c, 0xd9, 0xed, 0xf7, 0xed, 0xe0, 0x84, + 0x32, 0x75, 0x1c, 0x67, 0x6a, 0x1a, 0x4e, 0x04, 0x85, 0x10, 0xa6, 0x20, 0x48, 0xfd, 0xb9, 0x02, + 0xf3, 0xc4, 0x75, 0x9c, 0x1d, 0xab, 0xb3, 0xf7, 0x7c, 0x63, 0xc7, 0x80, 0xc6, 0x40, 0x25, 0xfa, + 0x5f, 0x2b, 0x50, 0x68, 0x7a, 0x94, 0xfd, 0xbf, 0x3e, 0xd7, 0xe0, 0xd9, 0x0f, 0x52, 0x37, 0x90, + 0x9b, 0x83, 0x2c, 0xe1, 0x65, 0x75, 0x01, 0xe6, 0x23, 0xec, 0x92, 0x8f, 0x1f, 0x29, 0xb0, 0x24, + 0x02, 0x44, 0x6a, 0xba, 0x27, 0x94, 0x96, 0x10, 0x6f, 0x2a, 0x86, 0xb7, 0x04, 0xa7, 0x8f, 0x62, + 0x93, 0xb0, 0x3f, 0x4e, 0xc0, 0x99, 0x30, 0x36, 0x4e, 0x38, 0xf0, 0xdf, 0x21, 0x1e, 0x96, 0xa1, + 0x74, 0x9c, 0x04, 0xc9, 0xd0, 0xa7, 0x09, 0x28, 0x95, 0x3d, 0x6a, 0x05, 0x34, 0xb6, 0xc9, 0x78, + 0x7e, 0x62, 0x03, 0xbf, 0x05, 0x73, 0x43, 0xcb, 0x0b, 0xec, 0x8e, 0x3d, 0xb4, 0xd8, 0x6f, 0x5c, + 0x9a, 0xef, 0x61, 0x8e, 0x74, 0x30, 0x61, 0xa2, 0x9e, 0x83, 0xb3, 0x53, 0x18, 0x91, 0x7c, 0xfd, + 0x46, 0x01, 0xdc, 0x0a, 0x2c, 0x2f, 0xf8, 0x1a, 0xac, 0x2a, 0x53, 0x83, 0x69, 0x09, 0x8a, 0x13, + 0xf8, 0xe3, 0xbc, 0xd0, 0xe0, 0x6b, 0xb1, 0xe2, 0x3c, 0x92, 0x97, 0x38, 0x7e, 0xc9, 0xcb, 0x4f, + 0x14, 0x58, 0x2e, 0xbb, 0xe2, 0xfc, 0xee, 0xb9, 0xfc, 0xc2, 0xd4, 0x17, 0xe1, 0xdc, 0x54, 0x80, + 0x92, 0x80, 0x1f, 0x2b, 0x70, 0x9a, 0x50, 0xab, 0xfb, 0x7c, 0x82, 0xbf, 0x09, 0x67, 0x8e, 0x81, + 0x93, 0x3b, 0xd4, 0x2b, 0x90, 0xe9, 0xd3, 0xc0, 0xea, 0x5a, 0x81, 0x25, 0x21, 0x2d, 0x87, 0xfd, + 0x8e, 0xad, 0x6b, 0xd2, 0x82, 0x44, 0xb6, 0xea, 0x17, 0x09, 0x28, 0xf2, 0xbd, 0xee, 0x37, 0x7f, + 0x50, 0xd3, 0xff, 0x05, 0x3e, 0x55, 0x60, 0x71, 0x92, 0xa0, 0xe8, 0x9f, 0xe0, 0xf7, 0x7d, 0x10, + 0x31, 0x25, 0x21, 0x24, 0xa7, 0x6d, 0x41, 0xbf, 0x9f, 0x80, 0x52, 0x7c, 0x4a, 0xdf, 0x1c, 0x5a, + 0x4c, 0x1e, 0x5a, 0x7c, 0xe5, 0x53, 0xaa, 0xcf, 0x14, 0x38, 0x3b, 0x85, 0xd0, 0xaf, 0xe6, 0xe8, + 0xd8, 0xd1, 0x45, 0xe2, 0x89, 0x47, 0x17, 0x4f, 0xeb, 0xea, 0x1f, 0x2a, 0xb0, 0x58, 0xa3, 0xbe, + 0x6f, 0xf5, 0xa8, 0xf8, 0x8f, 0x3f, 0xb9, 0xd9, 0x8c, 0x1f, 0x0a, 0xa7, 0xc6, 0x37, 0x2b, 0x6a, + 0x19, 0x96, 0x8e, 0x40, 0x7b, 0x86, 0xb3, 0x89, 0x5f, 0x29, 0xb0, 0x20, 0x7b, 0xd1, 0x4e, 0xec, + 0x46, 0x60, 0x0a, 0x3b, 0xf8, 0x25, 0x48, 0xda, 0xdd, 0x70, 0x07, 0x39, 0x79, 0xd7, 0xcc, 0x14, + 0xea, 0x35, 0xc0, 0x71, 0xdc, 0xcf, 0x40, 0xdd, 0x0f, 0x92, 0xb0, 0xd0, 0x1a, 0x3a, 0x76, 0x20, + 0x95, 0xcf, 0x77, 0xe2, 0xff, 0x03, 0x98, 0xf3, 0x19, 0x58, 0x53, 0xdc, 0x96, 0x71, 0x62, 0xb3, + 0x24, 0xc7, 0x65, 0x65, 0x2e, 0xc2, 0x2f, 0x43, 0x2e, 0x34, 0x19, 0x0d, 0x02, 0x79, 0xd2, 0x09, + 0xd2, 0x62, 0x34, 0x08, 0xf0, 0x65, 0x38, 0x33, 0x18, 0xf5, 0xf9, 0xcd, 0xb1, 0x39, 0xa4, 0x5e, + 0x78, 0xaf, 0x6a, 0x79, 0xe1, 0x0d, 0x6f, 0x71, 0x30, 0xea, 0x13, 0xf7, 0xc0, 0x6f, 0x52, 0x4f, + 0xdc, 0xab, 0x5a, 0x5e, 0x80, 0xaf, 0x41, 0xd6, 0x72, 0x7a, 0xae, 0x67, 0x07, 0xbb, 0x7d, 0x79, + 0xb5, 0xab, 0x86, 0x57, 0x2b, 0x47, 0xe9, 0x5f, 0xd7, 0x42, 0x4b, 0x32, 0x6e, 0xa4, 0xbe, 0x09, + 0xd9, 0x48, 0x8e, 0x11, 0xcc, 0xe9, 0x37, 0xdb, 0x5a, 0xd5, 0x6c, 0x35, 0xab, 0x15, 0xa3, 0x25, + 0xae, 0x63, 0xb7, 0xdb, 0xd5, 0xaa, 0xd9, 0x2a, 0x6b, 0x75, 0xa4, 0xa8, 0x04, 0x80, 0x77, 0xc9, + 0x3b, 0x1f, 0x13, 0xa4, 0x3c, 0x81, 0xa0, 0x73, 0x90, 0xf5, 0xdc, 0x03, 0x89, 0x3d, 0xc1, 0xe1, + 0x64, 0x3c, 0xf7, 0x80, 0x23, 0x57, 0x35, 0xc0, 0xf1, 0xb9, 0xca, 0x68, 0x8b, 0x25, 0x6f, 0x65, + 0x22, 0x79, 0x8f, 0xc7, 0x8f, 0x92, 0xb7, 0xd8, 0xca, 0xb3, 0xef, 0xfc, 0x7d, 0x6a, 0x39, 0x41, + 0xb8, 0x5e, 0xa9, 0xdf, 0x4e, 0x40, 0x9e, 0x30, 0x89, 0xdd, 0xa7, 0xad, 0xc0, 0x0a, 0x7c, 0xe6, + 0xa9, 0x5d, 0x6e, 0x62, 0x8e, 0xd3, 0x6e, 0x96, 0xe4, 0x84, 0x4c, 0x5c, 0x02, 0x6c, 0xc0, 0x92, + 0x4f, 0x3b, 0xee, 0xa0, 0xeb, 0x9b, 0x3b, 0x74, 0xd7, 0x1e, 0x74, 0xcd, 0xbe, 0xe5, 0x07, 0xf2, + 0xa6, 0x30, 0x4f, 0x8a, 0x52, 0xb9, 0xc9, 0x75, 0x35, 0xae, 0xc2, 0x17, 0x61, 0x71, 0xc7, 0x1e, + 0x38, 0x6e, 0xcf, 0x1c, 0x3a, 0xd6, 0x21, 0xf5, 0x7c, 0x09, 0x95, 0x85, 0x57, 0x9a, 0x60, 0xa1, + 0x6b, 0x0a, 0x95, 0x70, 0xf7, 0x5d, 0x58, 0x9b, 0x3a, 0x8a, 0x79, 0xcf, 0x76, 0x02, 0xea, 0xd1, + 0xae, 0xe9, 0xd1, 0xa1, 0x63, 0x77, 0xc4, 0xa5, 0xbd, 0xd8, 0xbb, 0xbf, 0x36, 0x65, 0xe8, 0x6d, + 0x69, 0x4e, 0xc6, 0xd6, 0x8c, 0xed, 0xce, 0x70, 0x64, 0x8e, 0xd8, 0x07, 0xcc, 0x57, 0x31, 0x85, + 0x64, 0x3a, 0xc3, 0x51, 0x9b, 0xd5, 0x31, 0x82, 0xe4, 0xfd, 0xa1, 0x58, 0xbc, 0x14, 0xc2, 0x8a, + 0xea, 0x97, 0x0a, 0x14, 0xb4, 0x5e, 0xcf, 0xa3, 0x3d, 0x2b, 0x90, 0x34, 0x5d, 0x84, 0x45, 0x41, + 0xc9, 0xa1, 0x29, 0x5f, 0x03, 0x09, 0x3c, 0x8a, 0xc0, 0x23, 0x75, 0xe2, 0x2d, 0x50, 0x18, 0xbe, + 0xa7, 0x47, 0x83, 0xa9, 0x6d, 0x12, 0xbc, 0xcd, 0x62, 0xa4, 0x8d, 0xb7, 0xfa, 0x13, 0x38, 0x3b, + 0x9d, 0x85, 0xbe, 0x2d, 0xde, 0x73, 0xe4, 0xc9, 0xe9, 0x29, 0xa0, 0x6b, 0xf6, 0xe0, 0x31, 0x4d, + 0xad, 0x07, 0x9c, 0xaf, 0x47, 0x34, 0xb5, 0x1e, 0xa8, 0x3f, 0x8d, 0x8e, 0xf6, 0xc3, 0x70, 0x89, + 0x56, 0xe3, 0x30, 0x2f, 0x28, 0x8f, 0xcb, 0x0b, 0x25, 0x98, 0xf5, 0xa9, 0xb7, 0x6f, 0x0f, 0x7a, + 0xe1, 0xed, 0xb1, 0xac, 0xe2, 0x16, 0xbc, 0x26, 0xb1, 0xd3, 0x07, 0x01, 0xf5, 0x06, 0x96, 0xe3, + 0x1c, 0x9a, 0xe2, 0xa0, 0x62, 0x10, 0xd0, 0xae, 0x39, 0x7e, 0xbb, 0x24, 0x56, 0xe4, 0x57, 0x84, + 0xb5, 0x1e, 0x19, 0x93, 0xc8, 0xd6, 0x88, 0x5e, 0x35, 0xbd, 0x0b, 0x05, 0x4f, 0x06, 0xb1, 0xe9, + 0x33, 0xf7, 0xc8, 0x7c, 0xb4, 0x18, 0x5d, 0x01, 0xc7, 0x22, 0x9c, 0xe4, 0xbd, 0x89, 0x80, 0x7f, + 0x0f, 0xe6, 0xad, 0xd0, 0xb7, 0xb2, 0xf5, 0xe4, 0xbe, 0x65, 0xd2, 0xf3, 0xa4, 0x60, 0x4d, 0x46, + 0xc2, 0x55, 0x98, 0x93, 0x88, 0x2c, 0xc7, 0xb6, 0xc6, 0x1b, 0xdb, 0x23, 0x0f, 0xc2, 0x34, 0xa6, + 0x24, 0xf2, 0xe9, 0x18, 0xaf, 0xb0, 0xff, 0xe8, 0x62, 0x7b, 0xd8, 0xe5, 0x3d, 0x9d, 0xe0, 0xdd, + 0x45, 0xfc, 0xf5, 0x58, 0x6a, 0xf2, 0xf5, 0xd8, 0xe4, 0x6b, 0xb4, 0xf4, 0x91, 0xd7, 0x68, 0xea, + 0x35, 0x58, 0x9c, 0xc4, 0x2f, 0xa3, 0x6c, 0x15, 0xd2, 0xfc, 0xa6, 0xfc, 0xc8, 0x32, 0x1a, 0xbb, + 0x0a, 0x27, 0xc2, 0x40, 0xfd, 0x8e, 0x02, 0xc5, 0x29, 0xbf, 0x58, 0xd1, 0xff, 0x9b, 0x12, 0x3b, + 0x1e, 0xfa, 0x23, 0x48, 0xf3, 0x3b, 0x7b, 0xf9, 0x98, 0xe4, 0xcc, 0xf1, 0x3f, 0x34, 0x7e, 0xbf, + 0x4e, 0x84, 0x15, 0x4b, 0x84, 0x3c, 0xa0, 0x3a, 0xfc, 0x7c, 0x28, 0xdc, 0x21, 0xe6, 0x98, 0x4c, + 0x1c, 0x19, 0x1d, 0x3f, 0x70, 0x4a, 0x3d, 0xf1, 0xc0, 0x69, 0xed, 0xdf, 0x92, 0x90, 0xad, 0x1d, + 0xb6, 0xee, 0x3b, 0xdb, 0x8e, 0xd5, 0xe3, 0x17, 0xe0, 0xb5, 0xa6, 0x71, 0x07, 0x9d, 0xc2, 0x0b, + 0x90, 0xaf, 0x37, 0x0c, 0xb3, 0xce, 0x96, 0x92, 0xed, 0xaa, 0x76, 0x1d, 0x29, 0x6c, 0xad, 0x69, + 0x92, 0x8a, 0x79, 0x43, 0xbf, 0x23, 0x24, 0x09, 0x5c, 0x84, 0xf9, 0x76, 0xbd, 0x72, 0xb3, 0xad, + 0x8f, 0x85, 0x29, 0xbc, 0x04, 0x0b, 0xb5, 0x76, 0xd5, 0xa8, 0x34, 0xab, 0x31, 0x71, 0x86, 0xad, + 0x4b, 0x9b, 0xd5, 0xc6, 0xa6, 0xa8, 0x22, 0xd6, 0x7f, 0xbb, 0xde, 0xaa, 0x5c, 0xaf, 0xeb, 0x5b, + 0x42, 0xb4, 0xc2, 0x44, 0x77, 0x75, 0xd2, 0xd8, 0xae, 0x84, 0x43, 0x5e, 0xc3, 0x08, 0x72, 0x9b, + 0x95, 0xba, 0x46, 0x64, 0x2f, 0x0f, 0x15, 0x5c, 0x80, 0xac, 0x5e, 0x6f, 0xd7, 0x64, 0x3d, 0x81, + 0x4b, 0x50, 0xd4, 0xda, 0x46, 0xc3, 0xac, 0xd4, 0xcb, 0x44, 0xaf, 0xe9, 0x75, 0x43, 0x6a, 0x52, + 0xb8, 0x08, 0x05, 0xa3, 0x52, 0xd3, 0x5b, 0x86, 0x56, 0x6b, 0x4a, 0x21, 0x9b, 0x45, 0xa6, 0xa5, + 0x87, 0x36, 0x08, 0x2f, 0xc3, 0x52, 0xbd, 0x61, 0xca, 0x47, 0x45, 0xe6, 0x2d, 0xad, 0xda, 0xd6, + 0xa5, 0x6e, 0x05, 0x9f, 0x01, 0xdc, 0xa8, 0x9b, 0xed, 0xe6, 0x96, 0x66, 0xe8, 0x66, 0xbd, 0x71, + 0x5b, 0x2a, 0xae, 0xe1, 0x02, 0x64, 0xc6, 0x33, 0x78, 0xc8, 0x58, 0xc8, 0x37, 0x35, 0x62, 0x8c, + 0xc1, 0x3e, 0x7c, 0xc8, 0xc8, 0x82, 0xeb, 0xa4, 0xd1, 0x6e, 0x8e, 0xcd, 0x16, 0x20, 0x27, 0xc9, + 0x92, 0xa2, 0x14, 0x13, 0x6d, 0x56, 0xea, 0xe5, 0x68, 0x7e, 0x0f, 0x33, 0xcb, 0x09, 0xa4, 0xac, + 0xed, 0x41, 0x8a, 0xbb, 0x23, 0x03, 0xa9, 0x7a, 0xa3, 0xae, 0xa3, 0x53, 0x78, 0x1e, 0xa0, 0xd2, + 0xaa, 0xd4, 0x0d, 0xfd, 0x3a, 0xd1, 0xaa, 0x0c, 0x36, 0x17, 0x84, 0x04, 0x32, 0xb4, 0x73, 0x30, + 0x5b, 0x69, 0x6d, 0x57, 0x1b, 0x9a, 0x21, 0x61, 0x56, 0x5a, 0x37, 0xdb, 0x0d, 0x83, 0x29, 0x11, + 0xce, 0xc1, 0x4c, 0xa5, 0x65, 0xe8, 0x1f, 0x1a, 0x0c, 0x17, 0xd7, 0x09, 0x56, 0xd1, 0xc3, 0x6b, + 0x6b, 0x9f, 0x27, 0x21, 0xc5, 0x5f, 0x84, 0xe6, 0x21, 0xcb, 0xbd, 0x6d, 0xdc, 0x69, 0xb2, 0x21, + 0xb3, 0x90, 0xaa, 0xd4, 0x8d, 0xab, 0xe8, 0x2f, 0x12, 0x18, 0x20, 0xdd, 0xe6, 0xe5, 0xbf, 0x9c, + 0x61, 0xe5, 0x4a, 0xdd, 0x78, 0xeb, 0x0a, 0xfa, 0x38, 0xc1, 0xba, 0x6d, 0x8b, 0xca, 0x5f, 0x85, + 0x8a, 0x8d, 0xcb, 0xe8, 0x93, 0x48, 0xb1, 0x71, 0x19, 0xfd, 0x75, 0xa8, 0xb8, 0xb4, 0x81, 0xfe, + 0x26, 0x52, 0x5c, 0xda, 0x40, 0x7f, 0x1b, 0x2a, 0xae, 0x5c, 0x46, 0x7f, 0x17, 0x29, 0xae, 0x5c, + 0x46, 0x7f, 0x3f, 0xc3, 0xb0, 0x70, 0x24, 0x97, 0x36, 0xd0, 0x3f, 0x64, 0xa2, 0xda, 0x95, 0xcb, + 0xe8, 0x1f, 0x33, 0xcc, 0xff, 0x91, 0x57, 0xd1, 0x3f, 0x21, 0x36, 0x4d, 0xe6, 0x20, 0xf4, 0xcf, + 0xbc, 0xc8, 0x54, 0xe8, 0x5f, 0x10, 0xc3, 0xc8, 0xa4, 0xbc, 0xfa, 0x29, 0xd7, 0xdc, 0xd1, 0x35, + 0x82, 0xfe, 0x75, 0x46, 0xbc, 0x21, 0x2b, 0x57, 0x6a, 0x5a, 0x15, 0x61, 0xde, 0x82, 0xb1, 0xf2, + 0xef, 0x17, 0x59, 0x91, 0x85, 0x27, 0xfa, 0x8f, 0x26, 0x1b, 0xf0, 0x96, 0x46, 0xca, 0xef, 0x6b, + 0x04, 0xfd, 0xe7, 0x45, 0x36, 0xe0, 0x2d, 0x8d, 0x48, 0xbe, 0xfe, 0xab, 0xc9, 0x0c, 0xb9, 0xea, + 0xb3, 0x8b, 0x6c, 0xd2, 0x52, 0xfe, 0xdf, 0x4d, 0x9c, 0x81, 0xe4, 0x66, 0xc5, 0x40, 0x9f, 0xf3, + 0xd1, 0x58, 0x88, 0xa2, 0xff, 0x41, 0x4c, 0xd8, 0xd2, 0x0d, 0xf4, 0xbf, 0x4c, 0x98, 0x36, 0xda, + 0xcd, 0xaa, 0x8e, 0x5e, 0x60, 0x93, 0xbb, 0xae, 0x37, 0x6a, 0xba, 0x41, 0xee, 0xa0, 0xff, 0xe3, + 0xe6, 0x1f, 0xb4, 0x1a, 0x75, 0xf4, 0x05, 0xc2, 0x05, 0x00, 0xfd, 0xc3, 0x26, 0xd1, 0x5b, 0xad, + 0x4a, 0xa3, 0x8e, 0x5e, 0x5e, 0xdb, 0x06, 0x74, 0x34, 0x1d, 0x30, 0x00, 0xed, 0xfa, 0x8d, 0x7a, + 0xe3, 0x76, 0x1d, 0x9d, 0x62, 0x95, 0x26, 0xd1, 0x9b, 0x1a, 0xd1, 0x91, 0x82, 0x01, 0x66, 0xc4, + 0x0b, 0x37, 0x94, 0xc0, 0x73, 0x90, 0x21, 0x8d, 0x6a, 0x75, 0x53, 0x2b, 0xdf, 0x40, 0xc9, 0xcd, + 0xb7, 0x61, 0xde, 0x76, 0xd7, 0xf7, 0xed, 0x80, 0xfa, 0xbe, 0x78, 0x73, 0x7c, 0x57, 0x95, 0x35, + 0xdb, 0xbd, 0x20, 0x4a, 0x17, 0x7a, 0xee, 0x85, 0xfd, 0xe0, 0x02, 0xd7, 0x5e, 0xe0, 0x19, 0x63, + 0x67, 0x86, 0x57, 0x2e, 0xfd, 0x36, 0x00, 0x00, 0xff, 0xff, 0xce, 0x37, 0xe1, 0xd4, 0xd1, 0x2c, + 0x00, 0x00, } diff --git a/go/vt/proto/queryservice/queryservice.pb.go b/go/vt/proto/queryservice/queryservice.pb.go index 0b8f5a4f126..77c23018388 100644 --- a/go/vt/proto/queryservice/queryservice.pb.go +++ b/go/vt/proto/queryservice/queryservice.pb.go @@ -1,15 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: queryservice.proto -/* -Package queryservice is a generated protocol buffer package. - -It is generated from these files: - queryservice.proto - -It has these top-level messages: -*/ -package queryservice +package queryservice // import "vitess.io/vitess/go/vt/proto/queryservice" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -929,39 +921,41 @@ var _Query_serviceDesc = grpc.ServiceDesc{ Metadata: "queryservice.proto", } -func init() { proto.RegisterFile("queryservice.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 491 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x95, 0xdb, 0x6e, 0xd4, 0x40, - 0x0c, 0x86, 0xe1, 0xa2, 0x2d, 0x72, 0xc3, 0x69, 0x4a, 0x81, 0xa6, 0xa5, 0x2d, 0x7d, 0x80, 0x0a, - 0x01, 0x12, 0x52, 0x25, 0x2e, 0xda, 0x08, 0x04, 0xaa, 0x38, 0x65, 0x59, 0x89, 0x2b, 0xa4, 0xd9, - 0xc4, 0x5a, 0xa2, 0xcd, 0x26, 0xd9, 0xc9, 0x04, 0xc1, 0x13, 0xf1, 0x9a, 0x88, 0x4c, 0xec, 0xcc, - 0x4c, 0x12, 0x2e, 0xfd, 0xff, 0xf6, 0x27, 0x67, 0xbc, 0xf6, 0x82, 0xd8, 0x34, 0xa8, 0x7e, 0xd7, - 0xa8, 0x7e, 0x66, 0x09, 0x9e, 0x57, 0xaa, 0xd4, 0xa5, 0x08, 0x6c, 0x2d, 0xdc, 0x6d, 0x23, 0x63, - 0x3d, 0xff, 0x13, 0xc0, 0xd6, 0x97, 0x7f, 0xb1, 0xb8, 0x80, 0x9d, 0x37, 0xbf, 0x30, 0x69, 0x34, - 0x8a, 0xfd, 0x73, 0x93, 0xd2, 0xc5, 0x31, 0x6e, 0x1a, 0xac, 0x75, 0xf8, 0xd0, 0x97, 0xeb, 0xaa, - 0x2c, 0x6a, 0x3c, 0xbb, 0x21, 0xde, 0x43, 0xd0, 0x89, 0x57, 0x52, 0x27, 0x3f, 0x44, 0xe8, 0x66, - 0xb6, 0x22, 0x51, 0x0e, 0x47, 0x3d, 0x46, 0x7d, 0x84, 0xdb, 0x33, 0xad, 0x50, 0xae, 0xa9, 0x19, - 0xca, 0x77, 0x54, 0x82, 0x1d, 0x8d, 0x9b, 0x44, 0x7b, 0x76, 0x53, 0xbc, 0x84, 0xad, 0x2b, 0x5c, - 0x66, 0x85, 0xd8, 0xeb, 0x52, 0xdb, 0x88, 0xea, 0x1f, 0xb8, 0x22, 0x77, 0xf1, 0x0a, 0xb6, 0xa3, - 0x72, 0xbd, 0xce, 0xb4, 0xa0, 0x0c, 0x13, 0x52, 0xdd, 0xbe, 0xa7, 0x72, 0xe1, 0x6b, 0xb8, 0x15, - 0x97, 0x79, 0xbe, 0x90, 0xc9, 0x4a, 0xd0, 0x7b, 0x91, 0x40, 0xc5, 0x8f, 0x06, 0x3a, 0x97, 0x5f, - 0xc0, 0xce, 0x67, 0x85, 0x95, 0x54, 0xfd, 0x10, 0xba, 0xd8, 0x1f, 0x02, 0xcb, 0x5c, 0xfb, 0x09, - 0xee, 0x98, 0x76, 0x3a, 0x2b, 0x15, 0x47, 0x4e, 0x97, 0x24, 0x13, 0xe9, 0xc9, 0x84, 0xcb, 0xc0, - 0x39, 0xdc, 0xa3, 0x16, 0x19, 0x79, 0xec, 0xf5, 0xee, 0x43, 0x4f, 0x26, 0x7d, 0xc6, 0x7e, 0x83, - 0xfb, 0x91, 0x42, 0xa9, 0xf1, 0xab, 0x92, 0x45, 0x2d, 0x13, 0x9d, 0x95, 0x85, 0xa0, 0xba, 0x81, - 0x43, 0xe0, 0xd3, 0xe9, 0x04, 0x26, 0xbf, 0x85, 0xdd, 0x99, 0x96, 0x4a, 0x77, 0xa3, 0x3b, 0xe0, - 0x1f, 0x07, 0x6b, 0x44, 0x0b, 0xc7, 0x2c, 0x87, 0x83, 0x9a, 0xe7, 0xc8, 0x9c, 0x5e, 0x1b, 0x70, - 0x6c, 0x8b, 0x39, 0xdf, 0x61, 0x2f, 0x2a, 0x8b, 0x24, 0x6f, 0x52, 0xe7, 0x5b, 0x9f, 0xf2, 0xc3, - 0x0f, 0x3c, 0xe2, 0x9e, 0xfd, 0x2f, 0x85, 0xf9, 0x31, 0xdc, 0x8d, 0x51, 0xa6, 0x36, 0x9b, 0x86, - 0xea, 0xe9, 0xc4, 0x3d, 0x9e, 0xb2, 0xed, 0x55, 0x6e, 0x97, 0x81, 0xd6, 0x2f, 0xb4, 0x37, 0xc4, - 0xdb, 0xbe, 0xc3, 0x51, 0xcf, 0x1e, 0xb4, 0xed, 0x98, 0xd3, 0x70, 0x32, 0x52, 0xe3, 0xdc, 0x87, - 0xd3, 0xe9, 0x04, 0xfb, 0x48, 0x7c, 0xc0, 0xba, 0x96, 0x4b, 0x34, 0x8b, 0xcf, 0x47, 0xc2, 0x51, - 0xfd, 0x23, 0xe1, 0x99, 0xd6, 0x91, 0x88, 0x00, 0x3a, 0xf3, 0x32, 0x59, 0x89, 0xc7, 0x6e, 0xfe, - 0x65, 0x3f, 0xee, 0x83, 0x11, 0x87, 0x9b, 0x8a, 0x00, 0x66, 0x55, 0x9e, 0x69, 0x73, 0x4e, 0x09, - 0xd2, 0x4b, 0x3e, 0xc4, 0x76, 0x18, 0x72, 0x0d, 0x81, 0xe9, 0xef, 0x1d, 0xca, 0x5c, 0xf7, 0x97, - 0xd4, 0x16, 0xfd, 0xe7, 0x77, 0x3d, 0xeb, 0xb3, 0xae, 0x21, 0x98, 0x57, 0xa9, 0xd4, 0xf4, 0x4a, - 0x04, 0xb3, 0x45, 0x1f, 0xe6, 0x7a, 0x3d, 0x6c, 0xb1, 0xdd, 0xfe, 0x61, 0xbc, 0xf8, 0x1b, 0x00, - 0x00, 0xff, 0xff, 0xc5, 0x90, 0xa5, 0x56, 0x61, 0x06, 0x00, 0x00, +func init() { proto.RegisterFile("queryservice.proto", fileDescriptor_queryservice_81e549fbfb878a8d) } + +var fileDescriptor_queryservice_81e549fbfb878a8d = []byte{ + // 519 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x95, 0xdf, 0x6b, 0xd4, 0x40, + 0x10, 0xc7, 0xf5, 0xa1, 0xad, 0x4c, 0xe3, 0xaf, 0xad, 0x55, 0x9b, 0xd6, 0xb6, 0xf6, 0x4d, 0x84, + 0x46, 0x54, 0x10, 0x0a, 0x3e, 0xf4, 0x82, 0xa2, 0x14, 0x7f, 0xdd, 0x59, 0x10, 0x1f, 0x84, 0x6d, + 0x6e, 0x38, 0x43, 0x73, 0x49, 0xba, 0xbb, 0x77, 0xe8, 0x5f, 0xe4, 0xbf, 0x29, 0x66, 0x33, 0x93, + 0xdd, 0xbd, 0xc4, 0xb7, 0xce, 0xf7, 0x3b, 0xf3, 0x61, 0x6e, 0xa7, 0x33, 0x01, 0x71, 0xb5, 0x40, + 0xf5, 0x5b, 0xa3, 0x5a, 0xe6, 0x19, 0x1e, 0xd7, 0xaa, 0x32, 0x95, 0x88, 0x5c, 0x2d, 0xde, 0x6c, + 0x22, 0x6b, 0x3d, 0xff, 0x13, 0xc1, 0xda, 0x97, 0x7f, 0xb1, 0x38, 0x81, 0x8d, 0x37, 0xbf, 0x30, + 0x5b, 0x18, 0x14, 0xdb, 0xc7, 0x36, 0xa5, 0x8d, 0xc7, 0x78, 0xb5, 0x40, 0x6d, 0xe2, 0xfb, 0xa1, + 0xac, 0xeb, 0xaa, 0xd4, 0x78, 0x74, 0x4d, 0xbc, 0x87, 0xa8, 0x15, 0x47, 0xd2, 0x64, 0x3f, 0x45, + 0xec, 0x67, 0x36, 0x22, 0x51, 0x76, 0x7b, 0x3d, 0x46, 0x7d, 0x84, 0x9b, 0x13, 0xa3, 0x50, 0xce, + 0xa9, 0x19, 0xca, 0xf7, 0x54, 0x82, 0xed, 0xf5, 0x9b, 0x44, 0x7b, 0x76, 0x5d, 0xbc, 0x84, 0xb5, + 0x11, 0xce, 0xf2, 0x52, 0x6c, 0xb5, 0xa9, 0x4d, 0x44, 0xf5, 0xf7, 0x7c, 0x91, 0xbb, 0x78, 0x05, + 0xeb, 0x69, 0x35, 0x9f, 0xe7, 0x46, 0x50, 0x86, 0x0d, 0xa9, 0x6e, 0x3b, 0x50, 0xb9, 0xf0, 0x35, + 0xdc, 0x18, 0x57, 0x45, 0x71, 0x21, 0xb3, 0x4b, 0x41, 0xef, 0x45, 0x02, 0x15, 0x3f, 0x58, 0xd1, + 0xb9, 0xfc, 0x04, 0x36, 0x3e, 0x2b, 0xac, 0xa5, 0xea, 0x86, 0xd0, 0xc6, 0xe1, 0x10, 0x58, 0xe6, + 0xda, 0x4f, 0x70, 0xcb, 0xb6, 0xd3, 0x5a, 0x53, 0xb1, 0xe7, 0x75, 0x49, 0x32, 0x91, 0x1e, 0x0d, + 0xb8, 0x0c, 0x3c, 0x87, 0x3b, 0xd4, 0x22, 0x23, 0xf7, 0x83, 0xde, 0x43, 0xe8, 0xc1, 0xa0, 0xcf, + 0xd8, 0x6f, 0x70, 0x37, 0x55, 0x28, 0x0d, 0x7e, 0x55, 0xb2, 0xd4, 0x32, 0x33, 0x79, 0x55, 0x0a, + 0xaa, 0x5b, 0x71, 0x08, 0x7c, 0x38, 0x9c, 0xc0, 0xe4, 0xb7, 0xb0, 0x39, 0x31, 0x52, 0x99, 0x76, + 0x74, 0x3b, 0xfc, 0xcf, 0xc1, 0x1a, 0xd1, 0xe2, 0x3e, 0xcb, 0xe3, 0xa0, 0xe1, 0x39, 0x32, 0xa7, + 0xd3, 0x56, 0x38, 0xae, 0xc5, 0x9c, 0x1f, 0xb0, 0x95, 0x56, 0x65, 0x56, 0x2c, 0xa6, 0xde, 0x6f, + 0x7d, 0xcc, 0x0f, 0xbf, 0xe2, 0x11, 0xf7, 0xe8, 0x7f, 0x29, 0xcc, 0x1f, 0xc3, 0xed, 0x31, 0xca, + 0xa9, 0xcb, 0xa6, 0xa1, 0x06, 0x3a, 0x71, 0xf7, 0x87, 0x6c, 0x77, 0x95, 0x9b, 0x65, 0xa0, 0xf5, + 0x8b, 0xdd, 0x0d, 0x09, 0xb6, 0x6f, 0xb7, 0xd7, 0x73, 0x07, 0xed, 0x3a, 0xf6, 0x34, 0x1c, 0xf4, + 0xd4, 0x78, 0xf7, 0xe1, 0x70, 0x38, 0xc1, 0x3d, 0x12, 0x1f, 0x50, 0x6b, 0x39, 0x43, 0xbb, 0xf8, + 0x7c, 0x24, 0x3c, 0x35, 0x3c, 0x12, 0x81, 0xe9, 0x1c, 0x89, 0x14, 0xa0, 0x35, 0x4f, 0xb3, 0x4b, + 0xf1, 0xd0, 0xcf, 0x3f, 0xed, 0xc6, 0xbd, 0xd3, 0xe3, 0x70, 0x53, 0x29, 0xc0, 0xa4, 0x2e, 0x72, + 0x63, 0xcf, 0x29, 0x41, 0x3a, 0x29, 0x84, 0xb8, 0x0e, 0x43, 0xce, 0x20, 0xb2, 0xfd, 0xbd, 0x43, + 0x59, 0x98, 0xee, 0x92, 0xba, 0x62, 0xf8, 0xfc, 0xbe, 0xe7, 0xfc, 0xac, 0x33, 0x88, 0xce, 0xeb, + 0xa9, 0x34, 0xf4, 0x4a, 0x04, 0x73, 0xc5, 0x10, 0xe6, 0x7b, 0x1d, 0x6c, 0xf4, 0xf4, 0xfb, 0x93, + 0x65, 0x6e, 0x50, 0xeb, 0xe3, 0xbc, 0x4a, 0xec, 0x5f, 0xc9, 0xac, 0x4a, 0x96, 0x26, 0x69, 0xbe, + 0x24, 0x89, 0xfb, 0x8d, 0xb9, 0x58, 0x6f, 0xb4, 0x17, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x51, + 0x5a, 0xbc, 0xc0, 0x8e, 0x06, 0x00, 0x00, } diff --git a/go/vt/proto/replicationdata/replicationdata.pb.go b/go/vt/proto/replicationdata/replicationdata.pb.go index 86dd8c35207..1242842898e 100644 --- a/go/vt/proto/replicationdata/replicationdata.pb.go +++ b/go/vt/proto/replicationdata/replicationdata.pb.go @@ -1,16 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: replicationdata.proto -/* -Package replicationdata is a generated protocol buffer package. - -It is generated from these files: - replicationdata.proto - -It has these top-level messages: - Status -*/ -package replicationdata +package replicationdata // import "vitess.io/vitess/go/vt/proto/replicationdata" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -30,19 +21,41 @@ const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package // Status is the replication status for MySQL (returned by 'show slave status' // and parsed into a Position and fields). type Status struct { - Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` - SlaveIoRunning bool `protobuf:"varint,2,opt,name=slave_io_running,json=slaveIoRunning" json:"slave_io_running,omitempty"` - SlaveSqlRunning bool `protobuf:"varint,3,opt,name=slave_sql_running,json=slaveSqlRunning" json:"slave_sql_running,omitempty"` - SecondsBehindMaster uint32 `protobuf:"varint,4,opt,name=seconds_behind_master,json=secondsBehindMaster" json:"seconds_behind_master,omitempty"` - MasterHost string `protobuf:"bytes,5,opt,name=master_host,json=masterHost" json:"master_host,omitempty"` - MasterPort int32 `protobuf:"varint,6,opt,name=master_port,json=masterPort" json:"master_port,omitempty"` - MasterConnectRetry int32 `protobuf:"varint,7,opt,name=master_connect_retry,json=masterConnectRetry" json:"master_connect_retry,omitempty"` + Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + SlaveIoRunning bool `protobuf:"varint,2,opt,name=slave_io_running,json=slaveIoRunning" json:"slave_io_running,omitempty"` + SlaveSqlRunning bool `protobuf:"varint,3,opt,name=slave_sql_running,json=slaveSqlRunning" json:"slave_sql_running,omitempty"` + SecondsBehindMaster uint32 `protobuf:"varint,4,opt,name=seconds_behind_master,json=secondsBehindMaster" json:"seconds_behind_master,omitempty"` + MasterHost string `protobuf:"bytes,5,opt,name=master_host,json=masterHost" json:"master_host,omitempty"` + MasterPort int32 `protobuf:"varint,6,opt,name=master_port,json=masterPort" json:"master_port,omitempty"` + MasterConnectRetry int32 `protobuf:"varint,7,opt,name=master_connect_retry,json=masterConnectRetry" json:"master_connect_retry,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Status) Reset() { *m = Status{} } +func (m *Status) String() string { return proto.CompactTextString(m) } +func (*Status) ProtoMessage() {} +func (*Status) Descriptor() ([]byte, []int) { + return fileDescriptor_replicationdata_535db925ee5677f7, []int{0} +} +func (m *Status) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Status.Unmarshal(m, b) +} +func (m *Status) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Status.Marshal(b, m, deterministic) +} +func (dst *Status) XXX_Merge(src proto.Message) { + xxx_messageInfo_Status.Merge(dst, src) +} +func (m *Status) XXX_Size() int { + return xxx_messageInfo_Status.Size(m) +} +func (m *Status) XXX_DiscardUnknown() { + xxx_messageInfo_Status.DiscardUnknown(m) } -func (m *Status) Reset() { *m = Status{} } -func (m *Status) String() string { return proto.CompactTextString(m) } -func (*Status) ProtoMessage() {} -func (*Status) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +var xxx_messageInfo_Status proto.InternalMessageInfo func (m *Status) GetPosition() string { if m != nil { @@ -97,24 +110,27 @@ func init() { proto.RegisterType((*Status)(nil), "replicationdata.Status") } -func init() { proto.RegisterFile("replicationdata.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 241 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0xd0, 0xc1, 0x4a, 0x03, 0x31, - 0x10, 0xc6, 0x71, 0x52, 0xed, 0x5a, 0x47, 0xb4, 0x1a, 0x2d, 0x04, 0x2f, 0x2e, 0x9e, 0x82, 0x07, - 0x11, 0x7d, 0x03, 0xbd, 0xe8, 0x41, 0x90, 0xf4, 0x01, 0x42, 0xba, 0x1b, 0x6c, 0x60, 0xcd, 0x6c, - 0x33, 0x53, 0xc1, 0xd7, 0xf1, 0x49, 0xa5, 0x49, 0xbb, 0x48, 0x8f, 0xf9, 0xfe, 0xbf, 0x43, 0x18, - 0x98, 0x25, 0xdf, 0x77, 0xa1, 0x71, 0x1c, 0x30, 0xb6, 0x8e, 0xdd, 0x7d, 0x9f, 0x90, 0x51, 0x4e, - 0xf7, 0xe6, 0xdb, 0xdf, 0x11, 0x54, 0x73, 0x76, 0xbc, 0x26, 0x79, 0x0d, 0x93, 0x1e, 0x29, 0x6c, - 0x92, 0x12, 0xb5, 0xd0, 0xc7, 0x66, 0x78, 0x4b, 0x0d, 0xe7, 0xd4, 0xb9, 0x6f, 0x6f, 0x03, 0xda, - 0xb4, 0x8e, 0x31, 0xc4, 0x4f, 0x35, 0xaa, 0x85, 0x9e, 0x98, 0xb3, 0xbc, 0xbf, 0xa1, 0x29, 0xab, - 0xbc, 0x83, 0x8b, 0x22, 0x69, 0xd5, 0x0d, 0xf4, 0x20, 0xd3, 0x69, 0x0e, 0xf3, 0x55, 0xb7, 0xb3, - 0x8f, 0x30, 0x23, 0xdf, 0x60, 0x6c, 0xc9, 0x2e, 0xfc, 0x32, 0xc4, 0xd6, 0x7e, 0x39, 0x62, 0x9f, - 0xd4, 0x61, 0x2d, 0xf4, 0xa9, 0xb9, 0xdc, 0xc6, 0xe7, 0xdc, 0xde, 0x73, 0x92, 0x37, 0x70, 0x52, - 0x90, 0x5d, 0x22, 0xb1, 0x1a, 0xe7, 0x8f, 0x42, 0x99, 0x5e, 0x91, 0xf8, 0x1f, 0xe8, 0x31, 0xb1, - 0xaa, 0x6a, 0xa1, 0xc7, 0x3b, 0xf0, 0x81, 0x89, 0xe5, 0x03, 0x5c, 0x6d, 0x41, 0x83, 0x31, 0xfa, - 0x86, 0x6d, 0xf2, 0x9c, 0x7e, 0xd4, 0x51, 0x96, 0xb2, 0xb4, 0x97, 0x92, 0xcc, 0xa6, 0x2c, 0xaa, - 0x7c, 0xbc, 0xa7, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x4f, 0x13, 0x7f, 0xc4, 0x55, 0x01, 0x00, - 0x00, +func init() { + proto.RegisterFile("replicationdata.proto", fileDescriptor_replicationdata_535db925ee5677f7) +} + +var fileDescriptor_replicationdata_535db925ee5677f7 = []byte{ + // 264 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x90, 0xc1, 0x4a, 0x03, 0x31, + 0x10, 0x86, 0xd9, 0x6a, 0xd7, 0x1a, 0xd1, 0x6a, 0xb4, 0x10, 0xbc, 0xb8, 0x78, 0x5a, 0x44, 0x36, + 0xa2, 0x6f, 0x50, 0x2f, 0x7a, 0x10, 0x24, 0xbd, 0x79, 0x09, 0xe9, 0x6e, 0x68, 0x03, 0x6b, 0x66, + 0x9b, 0x99, 0x2e, 0xf8, 0x3a, 0x3e, 0xa9, 0x34, 0x69, 0x8b, 0xf4, 0x96, 0x7c, 0xdf, 0x77, 0x18, + 0x7e, 0x36, 0x09, 0xb6, 0x6b, 0x5d, 0x6d, 0xc8, 0x81, 0x6f, 0x0c, 0x99, 0xaa, 0x0b, 0x40, 0xc0, + 0xc7, 0x07, 0xf8, 0xfe, 0x77, 0xc0, 0xf2, 0x19, 0x19, 0x5a, 0x23, 0xbf, 0x65, 0xa3, 0x0e, 0xd0, + 0x6d, 0x94, 0xc8, 0x8a, 0xac, 0x3c, 0x55, 0xfb, 0x3f, 0x2f, 0xd9, 0x25, 0xb6, 0xa6, 0xb7, 0xda, + 0x81, 0x0e, 0x6b, 0xef, 0x9d, 0x5f, 0x88, 0x41, 0x91, 0x95, 0x23, 0x75, 0x11, 0xf9, 0x3b, 0xa8, + 0x44, 0xf9, 0x03, 0xbb, 0x4a, 0x25, 0xae, 0xda, 0x7d, 0x7a, 0x14, 0xd3, 0x71, 0x14, 0xb3, 0x55, + 0xbb, 0x6b, 0x9f, 0xd9, 0x04, 0x6d, 0x0d, 0xbe, 0x41, 0x3d, 0xb7, 0x4b, 0xe7, 0x1b, 0xfd, 0x6d, + 0x90, 0x6c, 0x10, 0xc7, 0x45, 0x56, 0x9e, 0xab, 0xeb, 0xad, 0x9c, 0x46, 0xf7, 0x11, 0x15, 0xbf, + 0x63, 0x67, 0x29, 0xd2, 0x4b, 0x40, 0x12, 0xc3, 0x78, 0x28, 0x4b, 0xe8, 0x0d, 0x90, 0xfe, 0x05, + 0x1d, 0x04, 0x12, 0x79, 0x91, 0x95, 0xc3, 0x5d, 0xf0, 0x09, 0x81, 0xf8, 0x13, 0xbb, 0xd9, 0x06, + 0x35, 0x78, 0x6f, 0x6b, 0xd2, 0xc1, 0x52, 0xf8, 0x11, 0x27, 0xb1, 0xe4, 0xc9, 0xbd, 0x26, 0xa5, + 0x36, 0x66, 0x5a, 0x7d, 0x3d, 0xf6, 0x8e, 0x2c, 0x62, 0xe5, 0x40, 0xa6, 0x97, 0x5c, 0x80, 0xec, + 0x49, 0xc6, 0x55, 0xe5, 0xc1, 0xa8, 0xf3, 0x3c, 0xe2, 0x97, 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, + 0xd3, 0x3d, 0xca, 0x01, 0x85, 0x01, 0x00, 0x00, } diff --git a/go/vt/proto/tableacl/tableacl.pb.go b/go/vt/proto/tableacl/tableacl.pb.go index 85c9359d710..11c91525dcf 100644 --- a/go/vt/proto/tableacl/tableacl.pb.go +++ b/go/vt/proto/tableacl/tableacl.pb.go @@ -1,17 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: tableacl.proto -/* -Package tableacl is a generated protocol buffer package. - -It is generated from these files: - tableacl.proto - -It has these top-level messages: - TableGroupSpec - Config -*/ -package tableacl +package tableacl // import "vitess.io/vitess/go/vt/proto/tableacl" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -36,12 +26,34 @@ type TableGroupSpec struct { Readers []string `protobuf:"bytes,3,rep,name=readers" json:"readers,omitempty"` Writers []string `protobuf:"bytes,4,rep,name=writers" json:"writers,omitempty"` Admins []string `protobuf:"bytes,5,rep,name=admins" json:"admins,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *TableGroupSpec) Reset() { *m = TableGroupSpec{} } +func (m *TableGroupSpec) String() string { return proto.CompactTextString(m) } +func (*TableGroupSpec) ProtoMessage() {} +func (*TableGroupSpec) Descriptor() ([]byte, []int) { + return fileDescriptor_tableacl_38276fd243b9c307, []int{0} +} +func (m *TableGroupSpec) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_TableGroupSpec.Unmarshal(m, b) +} +func (m *TableGroupSpec) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_TableGroupSpec.Marshal(b, m, deterministic) +} +func (dst *TableGroupSpec) XXX_Merge(src proto.Message) { + xxx_messageInfo_TableGroupSpec.Merge(dst, src) +} +func (m *TableGroupSpec) XXX_Size() int { + return xxx_messageInfo_TableGroupSpec.Size(m) +} +func (m *TableGroupSpec) XXX_DiscardUnknown() { + xxx_messageInfo_TableGroupSpec.DiscardUnknown(m) } -func (m *TableGroupSpec) Reset() { *m = TableGroupSpec{} } -func (m *TableGroupSpec) String() string { return proto.CompactTextString(m) } -func (*TableGroupSpec) ProtoMessage() {} -func (*TableGroupSpec) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +var xxx_messageInfo_TableGroupSpec proto.InternalMessageInfo func (m *TableGroupSpec) GetName() string { if m != nil { @@ -79,13 +91,35 @@ func (m *TableGroupSpec) GetAdmins() []string { } type Config struct { - TableGroups []*TableGroupSpec `protobuf:"bytes,1,rep,name=table_groups,json=tableGroups" json:"table_groups,omitempty"` + TableGroups []*TableGroupSpec `protobuf:"bytes,1,rep,name=table_groups,json=tableGroups" json:"table_groups,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Config) Reset() { *m = Config{} } +func (m *Config) String() string { return proto.CompactTextString(m) } +func (*Config) ProtoMessage() {} +func (*Config) Descriptor() ([]byte, []int) { + return fileDescriptor_tableacl_38276fd243b9c307, []int{1} +} +func (m *Config) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Config.Unmarshal(m, b) +} +func (m *Config) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Config.Marshal(b, m, deterministic) +} +func (dst *Config) XXX_Merge(src proto.Message) { + xxx_messageInfo_Config.Merge(dst, src) +} +func (m *Config) XXX_Size() int { + return xxx_messageInfo_Config.Size(m) +} +func (m *Config) XXX_DiscardUnknown() { + xxx_messageInfo_Config.DiscardUnknown(m) } -func (m *Config) Reset() { *m = Config{} } -func (m *Config) String() string { return proto.CompactTextString(m) } -func (*Config) ProtoMessage() {} -func (*Config) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +var xxx_messageInfo_Config proto.InternalMessageInfo func (m *Config) GetTableGroups() []*TableGroupSpec { if m != nil { @@ -99,21 +133,23 @@ func init() { proto.RegisterType((*Config)(nil), "tableacl.Config") } -func init() { proto.RegisterFile("tableacl.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 207 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2b, 0x49, 0x4c, 0xca, - 0x49, 0x4d, 0x4c, 0xce, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x80, 0xf1, 0x95, 0x96, - 0x33, 0x72, 0xf1, 0x85, 0x80, 0x38, 0xee, 0x45, 0xf9, 0xa5, 0x05, 0xc1, 0x05, 0xa9, 0xc9, 0x42, - 0x42, 0x5c, 0x2c, 0x79, 0x89, 0xb9, 0xa9, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x9c, 0x41, 0x60, 0xb6, - 0x90, 0x29, 0x97, 0x38, 0x58, 0x4b, 0x3c, 0x88, 0x57, 0x1c, 0x9f, 0x5f, 0x14, 0x5f, 0x50, 0x94, - 0x9a, 0x96, 0x59, 0x91, 0x5a, 0x2c, 0xc1, 0xa4, 0xc0, 0xac, 0xc1, 0x19, 0x24, 0x02, 0x96, 0xf6, - 0x03, 0xc9, 0xfa, 0x17, 0x05, 0x40, 0xe5, 0x84, 0x24, 0xb8, 0xd8, 0x8b, 0x52, 0x13, 0x53, 0x52, - 0x8b, 0x8a, 0x25, 0x98, 0xc1, 0xca, 0x60, 0x5c, 0x90, 0x4c, 0x79, 0x51, 0x66, 0x09, 0x48, 0x86, - 0x05, 0x22, 0x03, 0xe5, 0x0a, 0x89, 0x71, 0xb1, 0x25, 0xa6, 0xe4, 0x66, 0xe6, 0x15, 0x4b, 0xb0, - 0x82, 0x25, 0xa0, 0x3c, 0x25, 0x57, 0x2e, 0x36, 0xe7, 0xfc, 0xbc, 0xb4, 0xcc, 0x74, 0x21, 0x6b, - 0x2e, 0x1e, 0x88, 0x63, 0xd2, 0x41, 0x6e, 0x2e, 0x96, 0x60, 0x54, 0x60, 0xd6, 0xe0, 0x36, 0x92, - 0xd0, 0x83, 0x7b, 0x12, 0xd5, 0x43, 0x41, 0xdc, 0x25, 0x70, 0x7e, 0x71, 0x12, 0x1b, 0x38, 0x04, - 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x64, 0x57, 0xee, 0xfe, 0x13, 0x01, 0x00, 0x00, +func init() { proto.RegisterFile("tableacl.proto", fileDescriptor_tableacl_38276fd243b9c307) } + +var fileDescriptor_tableacl_38276fd243b9c307 = []byte{ + // 232 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x90, 0xc1, 0x4b, 0xc3, 0x30, + 0x14, 0xc6, 0x89, 0x9d, 0xd5, 0xbd, 0xc9, 0x0e, 0x41, 0x34, 0xc7, 0x32, 0x10, 0x7b, 0x6a, 0x40, + 0xf1, 0xe4, 0x4d, 0x11, 0x6f, 0x2a, 0xd5, 0x93, 0x97, 0x92, 0x6d, 0x6f, 0x25, 0xb0, 0x35, 0xe1, + 0xbd, 0x38, 0xfd, 0x8f, 0xfc, 0x37, 0x25, 0x69, 0x3b, 0xf0, 0xf6, 0xfd, 0xf8, 0x25, 0xe1, 0xfb, + 0x02, 0xf3, 0x60, 0x96, 0x5b, 0x34, 0xab, 0x6d, 0xe5, 0xc9, 0x05, 0x27, 0x4f, 0x47, 0x5e, 0xfc, + 0x0a, 0x98, 0x7f, 0x44, 0x78, 0x26, 0xf7, 0xe5, 0xdf, 0x3d, 0xae, 0xa4, 0x84, 0x49, 0x67, 0x76, + 0xa8, 0x44, 0x21, 0xca, 0x69, 0x9d, 0xb2, 0xbc, 0x83, 0xcb, 0x74, 0xa5, 0x89, 0xc4, 0x8d, 0xa3, + 0xc6, 0x13, 0x6e, 0xec, 0x0f, 0xb2, 0x3a, 0x2a, 0xb2, 0x72, 0x5a, 0x9f, 0x27, 0xfd, 0x12, 0xed, + 0x2b, 0xbd, 0x0d, 0x4e, 0x2a, 0x38, 0x21, 0x34, 0x6b, 0x24, 0x56, 0x59, 0x3a, 0x36, 0x62, 0x34, + 0xdf, 0x64, 0x43, 0x34, 0x93, 0xde, 0x0c, 0x28, 0x2f, 0x20, 0x37, 0xeb, 0x9d, 0xed, 0x58, 0x1d, + 0x27, 0x31, 0xd0, 0xe2, 0x09, 0xf2, 0x47, 0xd7, 0x6d, 0x6c, 0x2b, 0xef, 0xe1, 0xac, 0x2f, 0xd3, + 0xc6, 0xce, 0xac, 0x44, 0x91, 0x95, 0xb3, 0x1b, 0x55, 0x1d, 0x46, 0xfe, 0x1f, 0x54, 0xcf, 0xc2, + 0x81, 0xf9, 0xe1, 0xfa, 0xf3, 0x6a, 0x6f, 0x03, 0x32, 0x57, 0xd6, 0xe9, 0x3e, 0xe9, 0xd6, 0xe9, + 0x7d, 0xd0, 0xe9, 0x6b, 0xf4, 0xf8, 0xc8, 0x32, 0x4f, 0x7c, 0xfb, 0x17, 0x00, 0x00, 0xff, 0xff, + 0x09, 0x82, 0xf5, 0x82, 0x3c, 0x01, 0x00, 0x00, } diff --git a/go/vt/proto/tabletmanagerdata/tabletmanagerdata.pb.go b/go/vt/proto/tabletmanagerdata/tabletmanagerdata.pb.go index 17dd688e277..9bce72c7cfa 100644 --- a/go/vt/proto/tabletmanagerdata/tabletmanagerdata.pb.go +++ b/go/vt/proto/tabletmanagerdata/tabletmanagerdata.pb.go @@ -1,114 +1,15 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: tabletmanagerdata.proto -/* -Package tabletmanagerdata is a generated protocol buffer package. - -It is generated from these files: - tabletmanagerdata.proto - -It has these top-level messages: - TableDefinition - SchemaDefinition - SchemaChangeResult - UserPermission - DbPermission - Permissions - BlpPosition - PingRequest - PingResponse - SleepRequest - SleepResponse - ExecuteHookRequest - ExecuteHookResponse - GetSchemaRequest - GetSchemaResponse - GetPermissionsRequest - GetPermissionsResponse - SetReadOnlyRequest - SetReadOnlyResponse - SetReadWriteRequest - SetReadWriteResponse - ChangeTypeRequest - ChangeTypeResponse - RefreshStateRequest - RefreshStateResponse - RunHealthCheckRequest - RunHealthCheckResponse - IgnoreHealthErrorRequest - IgnoreHealthErrorResponse - ReloadSchemaRequest - ReloadSchemaResponse - PreflightSchemaRequest - PreflightSchemaResponse - ApplySchemaRequest - ApplySchemaResponse - ExecuteFetchAsDbaRequest - ExecuteFetchAsDbaResponse - ExecuteFetchAsAllPrivsRequest - ExecuteFetchAsAllPrivsResponse - ExecuteFetchAsAppRequest - ExecuteFetchAsAppResponse - SlaveStatusRequest - SlaveStatusResponse - MasterPositionRequest - MasterPositionResponse - StopSlaveRequest - StopSlaveResponse - StopSlaveMinimumRequest - StopSlaveMinimumResponse - StartSlaveRequest - StartSlaveResponse - TabletExternallyReparentedRequest - TabletExternallyReparentedResponse - TabletExternallyElectedRequest - TabletExternallyElectedResponse - GetSlavesRequest - GetSlavesResponse - WaitBlpPositionRequest - WaitBlpPositionResponse - StopBlpRequest - StopBlpResponse - StartBlpRequest - StartBlpResponse - RunBlpUntilRequest - RunBlpUntilResponse - ResetReplicationRequest - ResetReplicationResponse - InitMasterRequest - InitMasterResponse - PopulateReparentJournalRequest - PopulateReparentJournalResponse - InitSlaveRequest - InitSlaveResponse - DemoteMasterRequest - DemoteMasterResponse - PromoteSlaveWhenCaughtUpRequest - PromoteSlaveWhenCaughtUpResponse - SlaveWasPromotedRequest - SlaveWasPromotedResponse - SetMasterRequest - SetMasterResponse - SlaveWasRestartedRequest - SlaveWasRestartedResponse - StopReplicationAndGetStatusRequest - StopReplicationAndGetStatusResponse - PromoteSlaveRequest - PromoteSlaveResponse - BackupRequest - BackupResponse - RestoreFromBackupRequest - RestoreFromBackupResponse -*/ -package tabletmanagerdata +package tabletmanagerdata // import "vitess.io/vitess/go/vt/proto/tabletmanagerdata" import proto "github.com/golang/protobuf/proto" import fmt "fmt" import math "math" +import logutil "vitess.io/vitess/go/vt/proto/logutil" import query "vitess.io/vitess/go/vt/proto/query" -import topodata "vitess.io/vitess/go/vt/proto/topodata" import replicationdata "vitess.io/vitess/go/vt/proto/replicationdata" -import logutil "vitess.io/vitess/go/vt/proto/logutil" +import topodata "vitess.io/vitess/go/vt/proto/topodata" // Reference imports to suppress errors if they are not otherwise used. var _ = proto.Marshal @@ -135,13 +36,35 @@ type TableDefinition struct { // how much space the data file takes. DataLength uint64 `protobuf:"varint,6,opt,name=data_length,json=dataLength" json:"data_length,omitempty"` // approximate number of rows - RowCount uint64 `protobuf:"varint,7,opt,name=row_count,json=rowCount" json:"row_count,omitempty"` + RowCount uint64 `protobuf:"varint,7,opt,name=row_count,json=rowCount" json:"row_count,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *TableDefinition) Reset() { *m = TableDefinition{} } +func (m *TableDefinition) String() string { return proto.CompactTextString(m) } +func (*TableDefinition) ProtoMessage() {} +func (*TableDefinition) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{0} +} +func (m *TableDefinition) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_TableDefinition.Unmarshal(m, b) +} +func (m *TableDefinition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_TableDefinition.Marshal(b, m, deterministic) +} +func (dst *TableDefinition) XXX_Merge(src proto.Message) { + xxx_messageInfo_TableDefinition.Merge(dst, src) +} +func (m *TableDefinition) XXX_Size() int { + return xxx_messageInfo_TableDefinition.Size(m) +} +func (m *TableDefinition) XXX_DiscardUnknown() { + xxx_messageInfo_TableDefinition.DiscardUnknown(m) } -func (m *TableDefinition) Reset() { *m = TableDefinition{} } -func (m *TableDefinition) String() string { return proto.CompactTextString(m) } -func (*TableDefinition) ProtoMessage() {} -func (*TableDefinition) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +var xxx_messageInfo_TableDefinition proto.InternalMessageInfo func (m *TableDefinition) GetName() string { if m != nil { @@ -193,15 +116,37 @@ func (m *TableDefinition) GetRowCount() uint64 { } type SchemaDefinition struct { - DatabaseSchema string `protobuf:"bytes,1,opt,name=database_schema,json=databaseSchema" json:"database_schema,omitempty"` - TableDefinitions []*TableDefinition `protobuf:"bytes,2,rep,name=table_definitions,json=tableDefinitions" json:"table_definitions,omitempty"` - Version string `protobuf:"bytes,3,opt,name=version" json:"version,omitempty"` + DatabaseSchema string `protobuf:"bytes,1,opt,name=database_schema,json=databaseSchema" json:"database_schema,omitempty"` + TableDefinitions []*TableDefinition `protobuf:"bytes,2,rep,name=table_definitions,json=tableDefinitions" json:"table_definitions,omitempty"` + Version string `protobuf:"bytes,3,opt,name=version" json:"version,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SchemaDefinition) Reset() { *m = SchemaDefinition{} } +func (m *SchemaDefinition) String() string { return proto.CompactTextString(m) } +func (*SchemaDefinition) ProtoMessage() {} +func (*SchemaDefinition) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{1} +} +func (m *SchemaDefinition) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SchemaDefinition.Unmarshal(m, b) +} +func (m *SchemaDefinition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SchemaDefinition.Marshal(b, m, deterministic) +} +func (dst *SchemaDefinition) XXX_Merge(src proto.Message) { + xxx_messageInfo_SchemaDefinition.Merge(dst, src) +} +func (m *SchemaDefinition) XXX_Size() int { + return xxx_messageInfo_SchemaDefinition.Size(m) +} +func (m *SchemaDefinition) XXX_DiscardUnknown() { + xxx_messageInfo_SchemaDefinition.DiscardUnknown(m) } -func (m *SchemaDefinition) Reset() { *m = SchemaDefinition{} } -func (m *SchemaDefinition) String() string { return proto.CompactTextString(m) } -func (*SchemaDefinition) ProtoMessage() {} -func (*SchemaDefinition) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +var xxx_messageInfo_SchemaDefinition proto.InternalMessageInfo func (m *SchemaDefinition) GetDatabaseSchema() string { if m != nil { @@ -228,13 +173,35 @@ type SchemaChangeResult struct { // before_schema holds the schema before each change. BeforeSchema *SchemaDefinition `protobuf:"bytes,1,opt,name=before_schema,json=beforeSchema" json:"before_schema,omitempty"` // after_schema holds the schema after each change. - AfterSchema *SchemaDefinition `protobuf:"bytes,2,opt,name=after_schema,json=afterSchema" json:"after_schema,omitempty"` + AfterSchema *SchemaDefinition `protobuf:"bytes,2,opt,name=after_schema,json=afterSchema" json:"after_schema,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SchemaChangeResult) Reset() { *m = SchemaChangeResult{} } +func (m *SchemaChangeResult) String() string { return proto.CompactTextString(m) } +func (*SchemaChangeResult) ProtoMessage() {} +func (*SchemaChangeResult) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{2} +} +func (m *SchemaChangeResult) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SchemaChangeResult.Unmarshal(m, b) +} +func (m *SchemaChangeResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SchemaChangeResult.Marshal(b, m, deterministic) +} +func (dst *SchemaChangeResult) XXX_Merge(src proto.Message) { + xxx_messageInfo_SchemaChangeResult.Merge(dst, src) +} +func (m *SchemaChangeResult) XXX_Size() int { + return xxx_messageInfo_SchemaChangeResult.Size(m) +} +func (m *SchemaChangeResult) XXX_DiscardUnknown() { + xxx_messageInfo_SchemaChangeResult.DiscardUnknown(m) } -func (m *SchemaChangeResult) Reset() { *m = SchemaChangeResult{} } -func (m *SchemaChangeResult) String() string { return proto.CompactTextString(m) } -func (*SchemaChangeResult) ProtoMessage() {} -func (*SchemaChangeResult) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } +var xxx_messageInfo_SchemaChangeResult proto.InternalMessageInfo func (m *SchemaChangeResult) GetBeforeSchema() *SchemaDefinition { if m != nil { @@ -254,16 +221,38 @@ func (m *SchemaChangeResult) GetAfterSchema() *SchemaDefinition { // Primary key is Host+User // PasswordChecksum is the crc64 of the password, for security reasons type UserPermission struct { - Host string `protobuf:"bytes,1,opt,name=host" json:"host,omitempty"` - User string `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"` - PasswordChecksum uint64 `protobuf:"varint,3,opt,name=password_checksum,json=passwordChecksum" json:"password_checksum,omitempty"` - Privileges map[string]string `protobuf:"bytes,4,rep,name=privileges" json:"privileges,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + Host string `protobuf:"bytes,1,opt,name=host" json:"host,omitempty"` + User string `protobuf:"bytes,2,opt,name=user" json:"user,omitempty"` + PasswordChecksum uint64 `protobuf:"varint,3,opt,name=password_checksum,json=passwordChecksum" json:"password_checksum,omitempty"` + Privileges map[string]string `protobuf:"bytes,4,rep,name=privileges" json:"privileges,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *UserPermission) Reset() { *m = UserPermission{} } +func (m *UserPermission) String() string { return proto.CompactTextString(m) } +func (*UserPermission) ProtoMessage() {} +func (*UserPermission) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{3} +} +func (m *UserPermission) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_UserPermission.Unmarshal(m, b) +} +func (m *UserPermission) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_UserPermission.Marshal(b, m, deterministic) +} +func (dst *UserPermission) XXX_Merge(src proto.Message) { + xxx_messageInfo_UserPermission.Merge(dst, src) +} +func (m *UserPermission) XXX_Size() int { + return xxx_messageInfo_UserPermission.Size(m) +} +func (m *UserPermission) XXX_DiscardUnknown() { + xxx_messageInfo_UserPermission.DiscardUnknown(m) } -func (m *UserPermission) Reset() { *m = UserPermission{} } -func (m *UserPermission) String() string { return proto.CompactTextString(m) } -func (*UserPermission) ProtoMessage() {} -func (*UserPermission) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } +var xxx_messageInfo_UserPermission proto.InternalMessageInfo func (m *UserPermission) GetHost() string { if m != nil { @@ -296,16 +285,38 @@ func (m *UserPermission) GetPrivileges() map[string]string { // DbPermission describes a single row in the mysql.db table // Primary key is Host+Db+User type DbPermission struct { - Host string `protobuf:"bytes,1,opt,name=host" json:"host,omitempty"` - Db string `protobuf:"bytes,2,opt,name=db" json:"db,omitempty"` - User string `protobuf:"bytes,3,opt,name=user" json:"user,omitempty"` - Privileges map[string]string `protobuf:"bytes,4,rep,name=privileges" json:"privileges,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + Host string `protobuf:"bytes,1,opt,name=host" json:"host,omitempty"` + Db string `protobuf:"bytes,2,opt,name=db" json:"db,omitempty"` + User string `protobuf:"bytes,3,opt,name=user" json:"user,omitempty"` + Privileges map[string]string `protobuf:"bytes,4,rep,name=privileges" json:"privileges,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *DbPermission) Reset() { *m = DbPermission{} } -func (m *DbPermission) String() string { return proto.CompactTextString(m) } -func (*DbPermission) ProtoMessage() {} -func (*DbPermission) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} } +func (m *DbPermission) Reset() { *m = DbPermission{} } +func (m *DbPermission) String() string { return proto.CompactTextString(m) } +func (*DbPermission) ProtoMessage() {} +func (*DbPermission) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{4} +} +func (m *DbPermission) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_DbPermission.Unmarshal(m, b) +} +func (m *DbPermission) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_DbPermission.Marshal(b, m, deterministic) +} +func (dst *DbPermission) XXX_Merge(src proto.Message) { + xxx_messageInfo_DbPermission.Merge(dst, src) +} +func (m *DbPermission) XXX_Size() int { + return xxx_messageInfo_DbPermission.Size(m) +} +func (m *DbPermission) XXX_DiscardUnknown() { + xxx_messageInfo_DbPermission.DiscardUnknown(m) +} + +var xxx_messageInfo_DbPermission proto.InternalMessageInfo func (m *DbPermission) GetHost() string { if m != nil { @@ -338,14 +349,36 @@ func (m *DbPermission) GetPrivileges() map[string]string { // Permissions have all the rows in mysql.{user,db} tables, // (all rows are sorted by primary key) type Permissions struct { - UserPermissions []*UserPermission `protobuf:"bytes,1,rep,name=user_permissions,json=userPermissions" json:"user_permissions,omitempty"` - DbPermissions []*DbPermission `protobuf:"bytes,2,rep,name=db_permissions,json=dbPermissions" json:"db_permissions,omitempty"` + UserPermissions []*UserPermission `protobuf:"bytes,1,rep,name=user_permissions,json=userPermissions" json:"user_permissions,omitempty"` + DbPermissions []*DbPermission `protobuf:"bytes,2,rep,name=db_permissions,json=dbPermissions" json:"db_permissions,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Permissions) Reset() { *m = Permissions{} } +func (m *Permissions) String() string { return proto.CompactTextString(m) } +func (*Permissions) ProtoMessage() {} +func (*Permissions) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{5} +} +func (m *Permissions) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Permissions.Unmarshal(m, b) +} +func (m *Permissions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Permissions.Marshal(b, m, deterministic) +} +func (dst *Permissions) XXX_Merge(src proto.Message) { + xxx_messageInfo_Permissions.Merge(dst, src) +} +func (m *Permissions) XXX_Size() int { + return xxx_messageInfo_Permissions.Size(m) +} +func (m *Permissions) XXX_DiscardUnknown() { + xxx_messageInfo_Permissions.DiscardUnknown(m) } -func (m *Permissions) Reset() { *m = Permissions{} } -func (m *Permissions) String() string { return proto.CompactTextString(m) } -func (*Permissions) ProtoMessage() {} -func (*Permissions) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } +var xxx_messageInfo_Permissions proto.InternalMessageInfo func (m *Permissions) GetUserPermissions() []*UserPermission { if m != nil { @@ -363,14 +396,36 @@ func (m *Permissions) GetDbPermissions() []*DbPermission { // BlpPosition is a replication position for a given binlog player type BlpPosition struct { - Uid uint32 `protobuf:"varint,1,opt,name=uid" json:"uid,omitempty"` - Position string `protobuf:"bytes,2,opt,name=position" json:"position,omitempty"` + Uid uint32 `protobuf:"varint,1,opt,name=uid" json:"uid,omitempty"` + Position string `protobuf:"bytes,2,opt,name=position" json:"position,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *BlpPosition) Reset() { *m = BlpPosition{} } +func (m *BlpPosition) String() string { return proto.CompactTextString(m) } +func (*BlpPosition) ProtoMessage() {} +func (*BlpPosition) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{6} +} +func (m *BlpPosition) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BlpPosition.Unmarshal(m, b) +} +func (m *BlpPosition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BlpPosition.Marshal(b, m, deterministic) +} +func (dst *BlpPosition) XXX_Merge(src proto.Message) { + xxx_messageInfo_BlpPosition.Merge(dst, src) +} +func (m *BlpPosition) XXX_Size() int { + return xxx_messageInfo_BlpPosition.Size(m) +} +func (m *BlpPosition) XXX_DiscardUnknown() { + xxx_messageInfo_BlpPosition.DiscardUnknown(m) } -func (m *BlpPosition) Reset() { *m = BlpPosition{} } -func (m *BlpPosition) String() string { return proto.CompactTextString(m) } -func (*BlpPosition) ProtoMessage() {} -func (*BlpPosition) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} } +var xxx_messageInfo_BlpPosition proto.InternalMessageInfo func (m *BlpPosition) GetUid() uint32 { if m != nil { @@ -387,13 +442,35 @@ func (m *BlpPosition) GetPosition() string { } type PingRequest struct { - Payload string `protobuf:"bytes,1,opt,name=payload" json:"payload,omitempty"` + Payload string `protobuf:"bytes,1,opt,name=payload" json:"payload,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *PingRequest) Reset() { *m = PingRequest{} } +func (m *PingRequest) String() string { return proto.CompactTextString(m) } +func (*PingRequest) ProtoMessage() {} +func (*PingRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{7} +} +func (m *PingRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PingRequest.Unmarshal(m, b) +} +func (m *PingRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PingRequest.Marshal(b, m, deterministic) +} +func (dst *PingRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_PingRequest.Merge(dst, src) +} +func (m *PingRequest) XXX_Size() int { + return xxx_messageInfo_PingRequest.Size(m) +} +func (m *PingRequest) XXX_DiscardUnknown() { + xxx_messageInfo_PingRequest.DiscardUnknown(m) } -func (m *PingRequest) Reset() { *m = PingRequest{} } -func (m *PingRequest) String() string { return proto.CompactTextString(m) } -func (*PingRequest) ProtoMessage() {} -func (*PingRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} } +var xxx_messageInfo_PingRequest proto.InternalMessageInfo func (m *PingRequest) GetPayload() string { if m != nil { @@ -403,13 +480,35 @@ func (m *PingRequest) GetPayload() string { } type PingResponse struct { - Payload string `protobuf:"bytes,1,opt,name=payload" json:"payload,omitempty"` + Payload string `protobuf:"bytes,1,opt,name=payload" json:"payload,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *PingResponse) Reset() { *m = PingResponse{} } +func (m *PingResponse) String() string { return proto.CompactTextString(m) } +func (*PingResponse) ProtoMessage() {} +func (*PingResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{8} +} +func (m *PingResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PingResponse.Unmarshal(m, b) +} +func (m *PingResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PingResponse.Marshal(b, m, deterministic) +} +func (dst *PingResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_PingResponse.Merge(dst, src) +} +func (m *PingResponse) XXX_Size() int { + return xxx_messageInfo_PingResponse.Size(m) +} +func (m *PingResponse) XXX_DiscardUnknown() { + xxx_messageInfo_PingResponse.DiscardUnknown(m) } -func (m *PingResponse) Reset() { *m = PingResponse{} } -func (m *PingResponse) String() string { return proto.CompactTextString(m) } -func (*PingResponse) ProtoMessage() {} -func (*PingResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} } +var xxx_messageInfo_PingResponse proto.InternalMessageInfo func (m *PingResponse) GetPayload() string { if m != nil { @@ -420,13 +519,35 @@ func (m *PingResponse) GetPayload() string { type SleepRequest struct { // duration is in nanoseconds - Duration int64 `protobuf:"varint,1,opt,name=duration" json:"duration,omitempty"` + Duration int64 `protobuf:"varint,1,opt,name=duration" json:"duration,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SleepRequest) Reset() { *m = SleepRequest{} } +func (m *SleepRequest) String() string { return proto.CompactTextString(m) } +func (*SleepRequest) ProtoMessage() {} +func (*SleepRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{9} +} +func (m *SleepRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SleepRequest.Unmarshal(m, b) +} +func (m *SleepRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SleepRequest.Marshal(b, m, deterministic) +} +func (dst *SleepRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SleepRequest.Merge(dst, src) +} +func (m *SleepRequest) XXX_Size() int { + return xxx_messageInfo_SleepRequest.Size(m) +} +func (m *SleepRequest) XXX_DiscardUnknown() { + xxx_messageInfo_SleepRequest.DiscardUnknown(m) } -func (m *SleepRequest) Reset() { *m = SleepRequest{} } -func (m *SleepRequest) String() string { return proto.CompactTextString(m) } -func (*SleepRequest) ProtoMessage() {} -func (*SleepRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} } +var xxx_messageInfo_SleepRequest proto.InternalMessageInfo func (m *SleepRequest) GetDuration() int64 { if m != nil { @@ -436,23 +557,67 @@ func (m *SleepRequest) GetDuration() int64 { } type SleepResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SleepResponse) Reset() { *m = SleepResponse{} } +func (m *SleepResponse) String() string { return proto.CompactTextString(m) } +func (*SleepResponse) ProtoMessage() {} +func (*SleepResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{10} +} +func (m *SleepResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SleepResponse.Unmarshal(m, b) +} +func (m *SleepResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SleepResponse.Marshal(b, m, deterministic) +} +func (dst *SleepResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SleepResponse.Merge(dst, src) +} +func (m *SleepResponse) XXX_Size() int { + return xxx_messageInfo_SleepResponse.Size(m) +} +func (m *SleepResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SleepResponse.DiscardUnknown(m) } -func (m *SleepResponse) Reset() { *m = SleepResponse{} } -func (m *SleepResponse) String() string { return proto.CompactTextString(m) } -func (*SleepResponse) ProtoMessage() {} -func (*SleepResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} } +var xxx_messageInfo_SleepResponse proto.InternalMessageInfo type ExecuteHookRequest struct { - Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` - Parameters []string `protobuf:"bytes,2,rep,name=parameters" json:"parameters,omitempty"` - ExtraEnv map[string]string `protobuf:"bytes,3,rep,name=extra_env,json=extraEnv" json:"extra_env,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` + Parameters []string `protobuf:"bytes,2,rep,name=parameters" json:"parameters,omitempty"` + ExtraEnv map[string]string `protobuf:"bytes,3,rep,name=extra_env,json=extraEnv" json:"extra_env,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteHookRequest) Reset() { *m = ExecuteHookRequest{} } +func (m *ExecuteHookRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteHookRequest) ProtoMessage() {} +func (*ExecuteHookRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{11} +} +func (m *ExecuteHookRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteHookRequest.Unmarshal(m, b) +} +func (m *ExecuteHookRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteHookRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteHookRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteHookRequest.Merge(dst, src) +} +func (m *ExecuteHookRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteHookRequest.Size(m) +} +func (m *ExecuteHookRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteHookRequest.DiscardUnknown(m) } -func (m *ExecuteHookRequest) Reset() { *m = ExecuteHookRequest{} } -func (m *ExecuteHookRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteHookRequest) ProtoMessage() {} -func (*ExecuteHookRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} } +var xxx_messageInfo_ExecuteHookRequest proto.InternalMessageInfo func (m *ExecuteHookRequest) GetName() string { if m != nil { @@ -476,15 +641,37 @@ func (m *ExecuteHookRequest) GetExtraEnv() map[string]string { } type ExecuteHookResponse struct { - ExitStatus int64 `protobuf:"varint,1,opt,name=exit_status,json=exitStatus" json:"exit_status,omitempty"` - Stdout string `protobuf:"bytes,2,opt,name=stdout" json:"stdout,omitempty"` - Stderr string `protobuf:"bytes,3,opt,name=stderr" json:"stderr,omitempty"` + ExitStatus int64 `protobuf:"varint,1,opt,name=exit_status,json=exitStatus" json:"exit_status,omitempty"` + Stdout string `protobuf:"bytes,2,opt,name=stdout" json:"stdout,omitempty"` + Stderr string `protobuf:"bytes,3,opt,name=stderr" json:"stderr,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ExecuteHookResponse) Reset() { *m = ExecuteHookResponse{} } -func (m *ExecuteHookResponse) String() string { return proto.CompactTextString(m) } -func (*ExecuteHookResponse) ProtoMessage() {} -func (*ExecuteHookResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} } +func (m *ExecuteHookResponse) Reset() { *m = ExecuteHookResponse{} } +func (m *ExecuteHookResponse) String() string { return proto.CompactTextString(m) } +func (*ExecuteHookResponse) ProtoMessage() {} +func (*ExecuteHookResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{12} +} +func (m *ExecuteHookResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteHookResponse.Unmarshal(m, b) +} +func (m *ExecuteHookResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteHookResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteHookResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteHookResponse.Merge(dst, src) +} +func (m *ExecuteHookResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteHookResponse.Size(m) +} +func (m *ExecuteHookResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteHookResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecuteHookResponse proto.InternalMessageInfo func (m *ExecuteHookResponse) GetExitStatus() int64 { if m != nil { @@ -508,15 +695,37 @@ func (m *ExecuteHookResponse) GetStderr() string { } type GetSchemaRequest struct { - Tables []string `protobuf:"bytes,1,rep,name=tables" json:"tables,omitempty"` - IncludeViews bool `protobuf:"varint,2,opt,name=include_views,json=includeViews" json:"include_views,omitempty"` - ExcludeTables []string `protobuf:"bytes,3,rep,name=exclude_tables,json=excludeTables" json:"exclude_tables,omitempty"` + Tables []string `protobuf:"bytes,1,rep,name=tables" json:"tables,omitempty"` + IncludeViews bool `protobuf:"varint,2,opt,name=include_views,json=includeViews" json:"include_views,omitempty"` + ExcludeTables []string `protobuf:"bytes,3,rep,name=exclude_tables,json=excludeTables" json:"exclude_tables,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetSchemaRequest) Reset() { *m = GetSchemaRequest{} } +func (m *GetSchemaRequest) String() string { return proto.CompactTextString(m) } +func (*GetSchemaRequest) ProtoMessage() {} +func (*GetSchemaRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{13} +} +func (m *GetSchemaRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetSchemaRequest.Unmarshal(m, b) +} +func (m *GetSchemaRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetSchemaRequest.Marshal(b, m, deterministic) +} +func (dst *GetSchemaRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetSchemaRequest.Merge(dst, src) +} +func (m *GetSchemaRequest) XXX_Size() int { + return xxx_messageInfo_GetSchemaRequest.Size(m) +} +func (m *GetSchemaRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GetSchemaRequest.DiscardUnknown(m) } -func (m *GetSchemaRequest) Reset() { *m = GetSchemaRequest{} } -func (m *GetSchemaRequest) String() string { return proto.CompactTextString(m) } -func (*GetSchemaRequest) ProtoMessage() {} -func (*GetSchemaRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} } +var xxx_messageInfo_GetSchemaRequest proto.InternalMessageInfo func (m *GetSchemaRequest) GetTables() []string { if m != nil { @@ -540,13 +749,35 @@ func (m *GetSchemaRequest) GetExcludeTables() []string { } type GetSchemaResponse struct { - SchemaDefinition *SchemaDefinition `protobuf:"bytes,1,opt,name=schema_definition,json=schemaDefinition" json:"schema_definition,omitempty"` + SchemaDefinition *SchemaDefinition `protobuf:"bytes,1,opt,name=schema_definition,json=schemaDefinition" json:"schema_definition,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetSchemaResponse) Reset() { *m = GetSchemaResponse{} } +func (m *GetSchemaResponse) String() string { return proto.CompactTextString(m) } +func (*GetSchemaResponse) ProtoMessage() {} +func (*GetSchemaResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{14} +} +func (m *GetSchemaResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetSchemaResponse.Unmarshal(m, b) +} +func (m *GetSchemaResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetSchemaResponse.Marshal(b, m, deterministic) +} +func (dst *GetSchemaResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetSchemaResponse.Merge(dst, src) +} +func (m *GetSchemaResponse) XXX_Size() int { + return xxx_messageInfo_GetSchemaResponse.Size(m) +} +func (m *GetSchemaResponse) XXX_DiscardUnknown() { + xxx_messageInfo_GetSchemaResponse.DiscardUnknown(m) } -func (m *GetSchemaResponse) Reset() { *m = GetSchemaResponse{} } -func (m *GetSchemaResponse) String() string { return proto.CompactTextString(m) } -func (*GetSchemaResponse) ProtoMessage() {} -func (*GetSchemaResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} } +var xxx_messageInfo_GetSchemaResponse proto.InternalMessageInfo func (m *GetSchemaResponse) GetSchemaDefinition() *SchemaDefinition { if m != nil { @@ -556,21 +787,65 @@ func (m *GetSchemaResponse) GetSchemaDefinition() *SchemaDefinition { } type GetPermissionsRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetPermissionsRequest) Reset() { *m = GetPermissionsRequest{} } +func (m *GetPermissionsRequest) String() string { return proto.CompactTextString(m) } +func (*GetPermissionsRequest) ProtoMessage() {} +func (*GetPermissionsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{15} +} +func (m *GetPermissionsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetPermissionsRequest.Unmarshal(m, b) +} +func (m *GetPermissionsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetPermissionsRequest.Marshal(b, m, deterministic) +} +func (dst *GetPermissionsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetPermissionsRequest.Merge(dst, src) +} +func (m *GetPermissionsRequest) XXX_Size() int { + return xxx_messageInfo_GetPermissionsRequest.Size(m) +} +func (m *GetPermissionsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GetPermissionsRequest.DiscardUnknown(m) } -func (m *GetPermissionsRequest) Reset() { *m = GetPermissionsRequest{} } -func (m *GetPermissionsRequest) String() string { return proto.CompactTextString(m) } -func (*GetPermissionsRequest) ProtoMessage() {} -func (*GetPermissionsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} } +var xxx_messageInfo_GetPermissionsRequest proto.InternalMessageInfo type GetPermissionsResponse struct { - Permissions *Permissions `protobuf:"bytes,1,opt,name=permissions" json:"permissions,omitempty"` + Permissions *Permissions `protobuf:"bytes,1,opt,name=permissions" json:"permissions,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetPermissionsResponse) Reset() { *m = GetPermissionsResponse{} } +func (m *GetPermissionsResponse) String() string { return proto.CompactTextString(m) } +func (*GetPermissionsResponse) ProtoMessage() {} +func (*GetPermissionsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{16} +} +func (m *GetPermissionsResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetPermissionsResponse.Unmarshal(m, b) +} +func (m *GetPermissionsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetPermissionsResponse.Marshal(b, m, deterministic) +} +func (dst *GetPermissionsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetPermissionsResponse.Merge(dst, src) +} +func (m *GetPermissionsResponse) XXX_Size() int { + return xxx_messageInfo_GetPermissionsResponse.Size(m) +} +func (m *GetPermissionsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_GetPermissionsResponse.DiscardUnknown(m) } -func (m *GetPermissionsResponse) Reset() { *m = GetPermissionsResponse{} } -func (m *GetPermissionsResponse) String() string { return proto.CompactTextString(m) } -func (*GetPermissionsResponse) ProtoMessage() {} -func (*GetPermissionsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} } +var xxx_messageInfo_GetPermissionsResponse proto.InternalMessageInfo func (m *GetPermissionsResponse) GetPermissions() *Permissions { if m != nil { @@ -580,45 +855,155 @@ func (m *GetPermissionsResponse) GetPermissions() *Permissions { } type SetReadOnlyRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SetReadOnlyRequest) Reset() { *m = SetReadOnlyRequest{} } +func (m *SetReadOnlyRequest) String() string { return proto.CompactTextString(m) } +func (*SetReadOnlyRequest) ProtoMessage() {} +func (*SetReadOnlyRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{17} +} +func (m *SetReadOnlyRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SetReadOnlyRequest.Unmarshal(m, b) +} +func (m *SetReadOnlyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SetReadOnlyRequest.Marshal(b, m, deterministic) +} +func (dst *SetReadOnlyRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SetReadOnlyRequest.Merge(dst, src) +} +func (m *SetReadOnlyRequest) XXX_Size() int { + return xxx_messageInfo_SetReadOnlyRequest.Size(m) +} +func (m *SetReadOnlyRequest) XXX_DiscardUnknown() { + xxx_messageInfo_SetReadOnlyRequest.DiscardUnknown(m) } -func (m *SetReadOnlyRequest) Reset() { *m = SetReadOnlyRequest{} } -func (m *SetReadOnlyRequest) String() string { return proto.CompactTextString(m) } -func (*SetReadOnlyRequest) ProtoMessage() {} -func (*SetReadOnlyRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} } +var xxx_messageInfo_SetReadOnlyRequest proto.InternalMessageInfo type SetReadOnlyResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SetReadOnlyResponse) Reset() { *m = SetReadOnlyResponse{} } +func (m *SetReadOnlyResponse) String() string { return proto.CompactTextString(m) } +func (*SetReadOnlyResponse) ProtoMessage() {} +func (*SetReadOnlyResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{18} +} +func (m *SetReadOnlyResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SetReadOnlyResponse.Unmarshal(m, b) +} +func (m *SetReadOnlyResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SetReadOnlyResponse.Marshal(b, m, deterministic) +} +func (dst *SetReadOnlyResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SetReadOnlyResponse.Merge(dst, src) +} +func (m *SetReadOnlyResponse) XXX_Size() int { + return xxx_messageInfo_SetReadOnlyResponse.Size(m) +} +func (m *SetReadOnlyResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SetReadOnlyResponse.DiscardUnknown(m) } -func (m *SetReadOnlyResponse) Reset() { *m = SetReadOnlyResponse{} } -func (m *SetReadOnlyResponse) String() string { return proto.CompactTextString(m) } -func (*SetReadOnlyResponse) ProtoMessage() {} -func (*SetReadOnlyResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{18} } +var xxx_messageInfo_SetReadOnlyResponse proto.InternalMessageInfo type SetReadWriteRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SetReadWriteRequest) Reset() { *m = SetReadWriteRequest{} } +func (m *SetReadWriteRequest) String() string { return proto.CompactTextString(m) } +func (*SetReadWriteRequest) ProtoMessage() {} +func (*SetReadWriteRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{19} +} +func (m *SetReadWriteRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SetReadWriteRequest.Unmarshal(m, b) +} +func (m *SetReadWriteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SetReadWriteRequest.Marshal(b, m, deterministic) +} +func (dst *SetReadWriteRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SetReadWriteRequest.Merge(dst, src) +} +func (m *SetReadWriteRequest) XXX_Size() int { + return xxx_messageInfo_SetReadWriteRequest.Size(m) +} +func (m *SetReadWriteRequest) XXX_DiscardUnknown() { + xxx_messageInfo_SetReadWriteRequest.DiscardUnknown(m) } -func (m *SetReadWriteRequest) Reset() { *m = SetReadWriteRequest{} } -func (m *SetReadWriteRequest) String() string { return proto.CompactTextString(m) } -func (*SetReadWriteRequest) ProtoMessage() {} -func (*SetReadWriteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} } +var xxx_messageInfo_SetReadWriteRequest proto.InternalMessageInfo type SetReadWriteResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *SetReadWriteResponse) Reset() { *m = SetReadWriteResponse{} } -func (m *SetReadWriteResponse) String() string { return proto.CompactTextString(m) } -func (*SetReadWriteResponse) ProtoMessage() {} -func (*SetReadWriteResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} } +func (m *SetReadWriteResponse) Reset() { *m = SetReadWriteResponse{} } +func (m *SetReadWriteResponse) String() string { return proto.CompactTextString(m) } +func (*SetReadWriteResponse) ProtoMessage() {} +func (*SetReadWriteResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{20} +} +func (m *SetReadWriteResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SetReadWriteResponse.Unmarshal(m, b) +} +func (m *SetReadWriteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SetReadWriteResponse.Marshal(b, m, deterministic) +} +func (dst *SetReadWriteResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SetReadWriteResponse.Merge(dst, src) +} +func (m *SetReadWriteResponse) XXX_Size() int { + return xxx_messageInfo_SetReadWriteResponse.Size(m) +} +func (m *SetReadWriteResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SetReadWriteResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_SetReadWriteResponse proto.InternalMessageInfo type ChangeTypeRequest struct { - TabletType topodata.TabletType `protobuf:"varint,1,opt,name=tablet_type,json=tabletType,enum=topodata.TabletType" json:"tablet_type,omitempty"` + TabletType topodata.TabletType `protobuf:"varint,1,opt,name=tablet_type,json=tabletType,enum=topodata.TabletType" json:"tablet_type,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ChangeTypeRequest) Reset() { *m = ChangeTypeRequest{} } +func (m *ChangeTypeRequest) String() string { return proto.CompactTextString(m) } +func (*ChangeTypeRequest) ProtoMessage() {} +func (*ChangeTypeRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{21} +} +func (m *ChangeTypeRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ChangeTypeRequest.Unmarshal(m, b) +} +func (m *ChangeTypeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ChangeTypeRequest.Marshal(b, m, deterministic) +} +func (dst *ChangeTypeRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ChangeTypeRequest.Merge(dst, src) +} +func (m *ChangeTypeRequest) XXX_Size() int { + return xxx_messageInfo_ChangeTypeRequest.Size(m) +} +func (m *ChangeTypeRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ChangeTypeRequest.DiscardUnknown(m) } -func (m *ChangeTypeRequest) Reset() { *m = ChangeTypeRequest{} } -func (m *ChangeTypeRequest) String() string { return proto.CompactTextString(m) } -func (*ChangeTypeRequest) ProtoMessage() {} -func (*ChangeTypeRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} } +var xxx_messageInfo_ChangeTypeRequest proto.InternalMessageInfo func (m *ChangeTypeRequest) GetTabletType() topodata.TabletType { if m != nil { @@ -628,53 +1013,185 @@ func (m *ChangeTypeRequest) GetTabletType() topodata.TabletType { } type ChangeTypeResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ChangeTypeResponse) Reset() { *m = ChangeTypeResponse{} } +func (m *ChangeTypeResponse) String() string { return proto.CompactTextString(m) } +func (*ChangeTypeResponse) ProtoMessage() {} +func (*ChangeTypeResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{22} +} +func (m *ChangeTypeResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ChangeTypeResponse.Unmarshal(m, b) +} +func (m *ChangeTypeResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ChangeTypeResponse.Marshal(b, m, deterministic) +} +func (dst *ChangeTypeResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ChangeTypeResponse.Merge(dst, src) +} +func (m *ChangeTypeResponse) XXX_Size() int { + return xxx_messageInfo_ChangeTypeResponse.Size(m) +} +func (m *ChangeTypeResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ChangeTypeResponse.DiscardUnknown(m) } -func (m *ChangeTypeResponse) Reset() { *m = ChangeTypeResponse{} } -func (m *ChangeTypeResponse) String() string { return proto.CompactTextString(m) } -func (*ChangeTypeResponse) ProtoMessage() {} -func (*ChangeTypeResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} } +var xxx_messageInfo_ChangeTypeResponse proto.InternalMessageInfo type RefreshStateRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RefreshStateRequest) Reset() { *m = RefreshStateRequest{} } +func (m *RefreshStateRequest) String() string { return proto.CompactTextString(m) } +func (*RefreshStateRequest) ProtoMessage() {} +func (*RefreshStateRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{23} +} +func (m *RefreshStateRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RefreshStateRequest.Unmarshal(m, b) +} +func (m *RefreshStateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RefreshStateRequest.Marshal(b, m, deterministic) +} +func (dst *RefreshStateRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_RefreshStateRequest.Merge(dst, src) +} +func (m *RefreshStateRequest) XXX_Size() int { + return xxx_messageInfo_RefreshStateRequest.Size(m) +} +func (m *RefreshStateRequest) XXX_DiscardUnknown() { + xxx_messageInfo_RefreshStateRequest.DiscardUnknown(m) } -func (m *RefreshStateRequest) Reset() { *m = RefreshStateRequest{} } -func (m *RefreshStateRequest) String() string { return proto.CompactTextString(m) } -func (*RefreshStateRequest) ProtoMessage() {} -func (*RefreshStateRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{23} } +var xxx_messageInfo_RefreshStateRequest proto.InternalMessageInfo type RefreshStateResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RefreshStateResponse) Reset() { *m = RefreshStateResponse{} } +func (m *RefreshStateResponse) String() string { return proto.CompactTextString(m) } +func (*RefreshStateResponse) ProtoMessage() {} +func (*RefreshStateResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{24} +} +func (m *RefreshStateResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RefreshStateResponse.Unmarshal(m, b) +} +func (m *RefreshStateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RefreshStateResponse.Marshal(b, m, deterministic) +} +func (dst *RefreshStateResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_RefreshStateResponse.Merge(dst, src) +} +func (m *RefreshStateResponse) XXX_Size() int { + return xxx_messageInfo_RefreshStateResponse.Size(m) +} +func (m *RefreshStateResponse) XXX_DiscardUnknown() { + xxx_messageInfo_RefreshStateResponse.DiscardUnknown(m) } -func (m *RefreshStateResponse) Reset() { *m = RefreshStateResponse{} } -func (m *RefreshStateResponse) String() string { return proto.CompactTextString(m) } -func (*RefreshStateResponse) ProtoMessage() {} -func (*RefreshStateResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{24} } +var xxx_messageInfo_RefreshStateResponse proto.InternalMessageInfo type RunHealthCheckRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RunHealthCheckRequest) Reset() { *m = RunHealthCheckRequest{} } +func (m *RunHealthCheckRequest) String() string { return proto.CompactTextString(m) } +func (*RunHealthCheckRequest) ProtoMessage() {} +func (*RunHealthCheckRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{25} +} +func (m *RunHealthCheckRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RunHealthCheckRequest.Unmarshal(m, b) +} +func (m *RunHealthCheckRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RunHealthCheckRequest.Marshal(b, m, deterministic) +} +func (dst *RunHealthCheckRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_RunHealthCheckRequest.Merge(dst, src) +} +func (m *RunHealthCheckRequest) XXX_Size() int { + return xxx_messageInfo_RunHealthCheckRequest.Size(m) +} +func (m *RunHealthCheckRequest) XXX_DiscardUnknown() { + xxx_messageInfo_RunHealthCheckRequest.DiscardUnknown(m) } -func (m *RunHealthCheckRequest) Reset() { *m = RunHealthCheckRequest{} } -func (m *RunHealthCheckRequest) String() string { return proto.CompactTextString(m) } -func (*RunHealthCheckRequest) ProtoMessage() {} -func (*RunHealthCheckRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} } +var xxx_messageInfo_RunHealthCheckRequest proto.InternalMessageInfo type RunHealthCheckResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RunHealthCheckResponse) Reset() { *m = RunHealthCheckResponse{} } +func (m *RunHealthCheckResponse) String() string { return proto.CompactTextString(m) } +func (*RunHealthCheckResponse) ProtoMessage() {} +func (*RunHealthCheckResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{26} +} +func (m *RunHealthCheckResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RunHealthCheckResponse.Unmarshal(m, b) +} +func (m *RunHealthCheckResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RunHealthCheckResponse.Marshal(b, m, deterministic) +} +func (dst *RunHealthCheckResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_RunHealthCheckResponse.Merge(dst, src) +} +func (m *RunHealthCheckResponse) XXX_Size() int { + return xxx_messageInfo_RunHealthCheckResponse.Size(m) +} +func (m *RunHealthCheckResponse) XXX_DiscardUnknown() { + xxx_messageInfo_RunHealthCheckResponse.DiscardUnknown(m) } -func (m *RunHealthCheckResponse) Reset() { *m = RunHealthCheckResponse{} } -func (m *RunHealthCheckResponse) String() string { return proto.CompactTextString(m) } -func (*RunHealthCheckResponse) ProtoMessage() {} -func (*RunHealthCheckResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{26} } +var xxx_messageInfo_RunHealthCheckResponse proto.InternalMessageInfo type IgnoreHealthErrorRequest struct { - Pattern string `protobuf:"bytes,1,opt,name=pattern" json:"pattern,omitempty"` + Pattern string `protobuf:"bytes,1,opt,name=pattern" json:"pattern,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *IgnoreHealthErrorRequest) Reset() { *m = IgnoreHealthErrorRequest{} } +func (m *IgnoreHealthErrorRequest) String() string { return proto.CompactTextString(m) } +func (*IgnoreHealthErrorRequest) ProtoMessage() {} +func (*IgnoreHealthErrorRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{27} +} +func (m *IgnoreHealthErrorRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_IgnoreHealthErrorRequest.Unmarshal(m, b) +} +func (m *IgnoreHealthErrorRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_IgnoreHealthErrorRequest.Marshal(b, m, deterministic) +} +func (dst *IgnoreHealthErrorRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_IgnoreHealthErrorRequest.Merge(dst, src) +} +func (m *IgnoreHealthErrorRequest) XXX_Size() int { + return xxx_messageInfo_IgnoreHealthErrorRequest.Size(m) +} +func (m *IgnoreHealthErrorRequest) XXX_DiscardUnknown() { + xxx_messageInfo_IgnoreHealthErrorRequest.DiscardUnknown(m) } -func (m *IgnoreHealthErrorRequest) Reset() { *m = IgnoreHealthErrorRequest{} } -func (m *IgnoreHealthErrorRequest) String() string { return proto.CompactTextString(m) } -func (*IgnoreHealthErrorRequest) ProtoMessage() {} -func (*IgnoreHealthErrorRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{27} } +var xxx_messageInfo_IgnoreHealthErrorRequest proto.InternalMessageInfo func (m *IgnoreHealthErrorRequest) GetPattern() string { if m != nil { @@ -684,24 +1201,68 @@ func (m *IgnoreHealthErrorRequest) GetPattern() string { } type IgnoreHealthErrorResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *IgnoreHealthErrorResponse) Reset() { *m = IgnoreHealthErrorResponse{} } -func (m *IgnoreHealthErrorResponse) String() string { return proto.CompactTextString(m) } -func (*IgnoreHealthErrorResponse) ProtoMessage() {} -func (*IgnoreHealthErrorResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{28} } +func (m *IgnoreHealthErrorResponse) Reset() { *m = IgnoreHealthErrorResponse{} } +func (m *IgnoreHealthErrorResponse) String() string { return proto.CompactTextString(m) } +func (*IgnoreHealthErrorResponse) ProtoMessage() {} +func (*IgnoreHealthErrorResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{28} +} +func (m *IgnoreHealthErrorResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_IgnoreHealthErrorResponse.Unmarshal(m, b) +} +func (m *IgnoreHealthErrorResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_IgnoreHealthErrorResponse.Marshal(b, m, deterministic) +} +func (dst *IgnoreHealthErrorResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_IgnoreHealthErrorResponse.Merge(dst, src) +} +func (m *IgnoreHealthErrorResponse) XXX_Size() int { + return xxx_messageInfo_IgnoreHealthErrorResponse.Size(m) +} +func (m *IgnoreHealthErrorResponse) XXX_DiscardUnknown() { + xxx_messageInfo_IgnoreHealthErrorResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_IgnoreHealthErrorResponse proto.InternalMessageInfo type ReloadSchemaRequest struct { // wait_position allows scheduling a schema reload to occur after a // given DDL has replicated to this slave, by specifying a replication // position to wait for. Leave empty to trigger the reload immediately. - WaitPosition string `protobuf:"bytes,1,opt,name=wait_position,json=waitPosition" json:"wait_position,omitempty"` + WaitPosition string `protobuf:"bytes,1,opt,name=wait_position,json=waitPosition" json:"wait_position,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ReloadSchemaRequest) Reset() { *m = ReloadSchemaRequest{} } +func (m *ReloadSchemaRequest) String() string { return proto.CompactTextString(m) } +func (*ReloadSchemaRequest) ProtoMessage() {} +func (*ReloadSchemaRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{29} +} +func (m *ReloadSchemaRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ReloadSchemaRequest.Unmarshal(m, b) +} +func (m *ReloadSchemaRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ReloadSchemaRequest.Marshal(b, m, deterministic) +} +func (dst *ReloadSchemaRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReloadSchemaRequest.Merge(dst, src) +} +func (m *ReloadSchemaRequest) XXX_Size() int { + return xxx_messageInfo_ReloadSchemaRequest.Size(m) +} +func (m *ReloadSchemaRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ReloadSchemaRequest.DiscardUnknown(m) } -func (m *ReloadSchemaRequest) Reset() { *m = ReloadSchemaRequest{} } -func (m *ReloadSchemaRequest) String() string { return proto.CompactTextString(m) } -func (*ReloadSchemaRequest) ProtoMessage() {} -func (*ReloadSchemaRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} } +var xxx_messageInfo_ReloadSchemaRequest proto.InternalMessageInfo func (m *ReloadSchemaRequest) GetWaitPosition() string { if m != nil { @@ -711,21 +1272,65 @@ func (m *ReloadSchemaRequest) GetWaitPosition() string { } type ReloadSchemaResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ReloadSchemaResponse) Reset() { *m = ReloadSchemaResponse{} } +func (m *ReloadSchemaResponse) String() string { return proto.CompactTextString(m) } +func (*ReloadSchemaResponse) ProtoMessage() {} +func (*ReloadSchemaResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{30} +} +func (m *ReloadSchemaResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ReloadSchemaResponse.Unmarshal(m, b) +} +func (m *ReloadSchemaResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ReloadSchemaResponse.Marshal(b, m, deterministic) +} +func (dst *ReloadSchemaResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ReloadSchemaResponse.Merge(dst, src) +} +func (m *ReloadSchemaResponse) XXX_Size() int { + return xxx_messageInfo_ReloadSchemaResponse.Size(m) +} +func (m *ReloadSchemaResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ReloadSchemaResponse.DiscardUnknown(m) } -func (m *ReloadSchemaResponse) Reset() { *m = ReloadSchemaResponse{} } -func (m *ReloadSchemaResponse) String() string { return proto.CompactTextString(m) } -func (*ReloadSchemaResponse) ProtoMessage() {} -func (*ReloadSchemaResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{30} } +var xxx_messageInfo_ReloadSchemaResponse proto.InternalMessageInfo type PreflightSchemaRequest struct { - Changes []string `protobuf:"bytes,1,rep,name=changes" json:"changes,omitempty"` + Changes []string `protobuf:"bytes,1,rep,name=changes" json:"changes,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *PreflightSchemaRequest) Reset() { *m = PreflightSchemaRequest{} } +func (m *PreflightSchemaRequest) String() string { return proto.CompactTextString(m) } +func (*PreflightSchemaRequest) ProtoMessage() {} +func (*PreflightSchemaRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{31} +} +func (m *PreflightSchemaRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PreflightSchemaRequest.Unmarshal(m, b) +} +func (m *PreflightSchemaRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PreflightSchemaRequest.Marshal(b, m, deterministic) +} +func (dst *PreflightSchemaRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_PreflightSchemaRequest.Merge(dst, src) +} +func (m *PreflightSchemaRequest) XXX_Size() int { + return xxx_messageInfo_PreflightSchemaRequest.Size(m) +} +func (m *PreflightSchemaRequest) XXX_DiscardUnknown() { + xxx_messageInfo_PreflightSchemaRequest.DiscardUnknown(m) } -func (m *PreflightSchemaRequest) Reset() { *m = PreflightSchemaRequest{} } -func (m *PreflightSchemaRequest) String() string { return proto.CompactTextString(m) } -func (*PreflightSchemaRequest) ProtoMessage() {} -func (*PreflightSchemaRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{31} } +var xxx_messageInfo_PreflightSchemaRequest proto.InternalMessageInfo func (m *PreflightSchemaRequest) GetChanges() []string { if m != nil { @@ -737,13 +1342,35 @@ func (m *PreflightSchemaRequest) GetChanges() []string { type PreflightSchemaResponse struct { // change_results has for each change the schema before and after it. // The number of elements is identical to the length of "changes" in the request. - ChangeResults []*SchemaChangeResult `protobuf:"bytes,1,rep,name=change_results,json=changeResults" json:"change_results,omitempty"` + ChangeResults []*SchemaChangeResult `protobuf:"bytes,1,rep,name=change_results,json=changeResults" json:"change_results,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *PreflightSchemaResponse) Reset() { *m = PreflightSchemaResponse{} } +func (m *PreflightSchemaResponse) String() string { return proto.CompactTextString(m) } +func (*PreflightSchemaResponse) ProtoMessage() {} +func (*PreflightSchemaResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{32} +} +func (m *PreflightSchemaResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PreflightSchemaResponse.Unmarshal(m, b) +} +func (m *PreflightSchemaResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PreflightSchemaResponse.Marshal(b, m, deterministic) +} +func (dst *PreflightSchemaResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_PreflightSchemaResponse.Merge(dst, src) +} +func (m *PreflightSchemaResponse) XXX_Size() int { + return xxx_messageInfo_PreflightSchemaResponse.Size(m) +} +func (m *PreflightSchemaResponse) XXX_DiscardUnknown() { + xxx_messageInfo_PreflightSchemaResponse.DiscardUnknown(m) } -func (m *PreflightSchemaResponse) Reset() { *m = PreflightSchemaResponse{} } -func (m *PreflightSchemaResponse) String() string { return proto.CompactTextString(m) } -func (*PreflightSchemaResponse) ProtoMessage() {} -func (*PreflightSchemaResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{32} } +var xxx_messageInfo_PreflightSchemaResponse proto.InternalMessageInfo func (m *PreflightSchemaResponse) GetChangeResults() []*SchemaChangeResult { if m != nil { @@ -753,17 +1380,39 @@ func (m *PreflightSchemaResponse) GetChangeResults() []*SchemaChangeResult { } type ApplySchemaRequest struct { - Sql string `protobuf:"bytes,1,opt,name=sql" json:"sql,omitempty"` - Force bool `protobuf:"varint,2,opt,name=force" json:"force,omitempty"` - AllowReplication bool `protobuf:"varint,3,opt,name=allow_replication,json=allowReplication" json:"allow_replication,omitempty"` - BeforeSchema *SchemaDefinition `protobuf:"bytes,4,opt,name=before_schema,json=beforeSchema" json:"before_schema,omitempty"` - AfterSchema *SchemaDefinition `protobuf:"bytes,5,opt,name=after_schema,json=afterSchema" json:"after_schema,omitempty"` + Sql string `protobuf:"bytes,1,opt,name=sql" json:"sql,omitempty"` + Force bool `protobuf:"varint,2,opt,name=force" json:"force,omitempty"` + AllowReplication bool `protobuf:"varint,3,opt,name=allow_replication,json=allowReplication" json:"allow_replication,omitempty"` + BeforeSchema *SchemaDefinition `protobuf:"bytes,4,opt,name=before_schema,json=beforeSchema" json:"before_schema,omitempty"` + AfterSchema *SchemaDefinition `protobuf:"bytes,5,opt,name=after_schema,json=afterSchema" json:"after_schema,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ApplySchemaRequest) Reset() { *m = ApplySchemaRequest{} } +func (m *ApplySchemaRequest) String() string { return proto.CompactTextString(m) } +func (*ApplySchemaRequest) ProtoMessage() {} +func (*ApplySchemaRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{33} +} +func (m *ApplySchemaRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ApplySchemaRequest.Unmarshal(m, b) +} +func (m *ApplySchemaRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ApplySchemaRequest.Marshal(b, m, deterministic) +} +func (dst *ApplySchemaRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ApplySchemaRequest.Merge(dst, src) +} +func (m *ApplySchemaRequest) XXX_Size() int { + return xxx_messageInfo_ApplySchemaRequest.Size(m) +} +func (m *ApplySchemaRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ApplySchemaRequest.DiscardUnknown(m) } -func (m *ApplySchemaRequest) Reset() { *m = ApplySchemaRequest{} } -func (m *ApplySchemaRequest) String() string { return proto.CompactTextString(m) } -func (*ApplySchemaRequest) ProtoMessage() {} -func (*ApplySchemaRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{33} } +var xxx_messageInfo_ApplySchemaRequest proto.InternalMessageInfo func (m *ApplySchemaRequest) GetSql() string { if m != nil { @@ -801,14 +1450,36 @@ func (m *ApplySchemaRequest) GetAfterSchema() *SchemaDefinition { } type ApplySchemaResponse struct { - BeforeSchema *SchemaDefinition `protobuf:"bytes,1,opt,name=before_schema,json=beforeSchema" json:"before_schema,omitempty"` - AfterSchema *SchemaDefinition `protobuf:"bytes,2,opt,name=after_schema,json=afterSchema" json:"after_schema,omitempty"` + BeforeSchema *SchemaDefinition `protobuf:"bytes,1,opt,name=before_schema,json=beforeSchema" json:"before_schema,omitempty"` + AfterSchema *SchemaDefinition `protobuf:"bytes,2,opt,name=after_schema,json=afterSchema" json:"after_schema,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ApplySchemaResponse) Reset() { *m = ApplySchemaResponse{} } +func (m *ApplySchemaResponse) String() string { return proto.CompactTextString(m) } +func (*ApplySchemaResponse) ProtoMessage() {} +func (*ApplySchemaResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{34} +} +func (m *ApplySchemaResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ApplySchemaResponse.Unmarshal(m, b) +} +func (m *ApplySchemaResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ApplySchemaResponse.Marshal(b, m, deterministic) +} +func (dst *ApplySchemaResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ApplySchemaResponse.Merge(dst, src) +} +func (m *ApplySchemaResponse) XXX_Size() int { + return xxx_messageInfo_ApplySchemaResponse.Size(m) +} +func (m *ApplySchemaResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ApplySchemaResponse.DiscardUnknown(m) } -func (m *ApplySchemaResponse) Reset() { *m = ApplySchemaResponse{} } -func (m *ApplySchemaResponse) String() string { return proto.CompactTextString(m) } -func (*ApplySchemaResponse) ProtoMessage() {} -func (*ApplySchemaResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{34} } +var xxx_messageInfo_ApplySchemaResponse proto.InternalMessageInfo func (m *ApplySchemaResponse) GetBeforeSchema() *SchemaDefinition { if m != nil { @@ -825,23 +1496,45 @@ func (m *ApplySchemaResponse) GetAfterSchema() *SchemaDefinition { } type ExecuteFetchAsDbaRequest struct { - Query []byte `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName" json:"db_name,omitempty"` - MaxRows uint64 `protobuf:"varint,3,opt,name=max_rows,json=maxRows" json:"max_rows,omitempty"` - DisableBinlogs bool `protobuf:"varint,4,opt,name=disable_binlogs,json=disableBinlogs" json:"disable_binlogs,omitempty"` - ReloadSchema bool `protobuf:"varint,5,opt,name=reload_schema,json=reloadSchema" json:"reload_schema,omitempty"` + Query []byte `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName" json:"db_name,omitempty"` + MaxRows uint64 `protobuf:"varint,3,opt,name=max_rows,json=maxRows" json:"max_rows,omitempty"` + DisableBinlogs bool `protobuf:"varint,4,opt,name=disable_binlogs,json=disableBinlogs" json:"disable_binlogs,omitempty"` + ReloadSchema bool `protobuf:"varint,5,opt,name=reload_schema,json=reloadSchema" json:"reload_schema,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ExecuteFetchAsDbaRequest) Reset() { *m = ExecuteFetchAsDbaRequest{} } -func (m *ExecuteFetchAsDbaRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteFetchAsDbaRequest) ProtoMessage() {} -func (*ExecuteFetchAsDbaRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{35} } - -func (m *ExecuteFetchAsDbaRequest) GetQuery() []byte { - if m != nil { - return m.Query - } - return nil +func (m *ExecuteFetchAsDbaRequest) Reset() { *m = ExecuteFetchAsDbaRequest{} } +func (m *ExecuteFetchAsDbaRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteFetchAsDbaRequest) ProtoMessage() {} +func (*ExecuteFetchAsDbaRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{35} +} +func (m *ExecuteFetchAsDbaRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteFetchAsDbaRequest.Unmarshal(m, b) +} +func (m *ExecuteFetchAsDbaRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteFetchAsDbaRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteFetchAsDbaRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteFetchAsDbaRequest.Merge(dst, src) +} +func (m *ExecuteFetchAsDbaRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteFetchAsDbaRequest.Size(m) +} +func (m *ExecuteFetchAsDbaRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteFetchAsDbaRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecuteFetchAsDbaRequest proto.InternalMessageInfo + +func (m *ExecuteFetchAsDbaRequest) GetQuery() []byte { + if m != nil { + return m.Query + } + return nil } func (m *ExecuteFetchAsDbaRequest) GetDbName() string { @@ -873,13 +1566,35 @@ func (m *ExecuteFetchAsDbaRequest) GetReloadSchema() bool { } type ExecuteFetchAsDbaResponse struct { - Result *query.QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + Result *query.QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ExecuteFetchAsDbaResponse) Reset() { *m = ExecuteFetchAsDbaResponse{} } -func (m *ExecuteFetchAsDbaResponse) String() string { return proto.CompactTextString(m) } -func (*ExecuteFetchAsDbaResponse) ProtoMessage() {} -func (*ExecuteFetchAsDbaResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{36} } +func (m *ExecuteFetchAsDbaResponse) Reset() { *m = ExecuteFetchAsDbaResponse{} } +func (m *ExecuteFetchAsDbaResponse) String() string { return proto.CompactTextString(m) } +func (*ExecuteFetchAsDbaResponse) ProtoMessage() {} +func (*ExecuteFetchAsDbaResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{36} +} +func (m *ExecuteFetchAsDbaResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteFetchAsDbaResponse.Unmarshal(m, b) +} +func (m *ExecuteFetchAsDbaResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteFetchAsDbaResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteFetchAsDbaResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteFetchAsDbaResponse.Merge(dst, src) +} +func (m *ExecuteFetchAsDbaResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteFetchAsDbaResponse.Size(m) +} +func (m *ExecuteFetchAsDbaResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteFetchAsDbaResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecuteFetchAsDbaResponse proto.InternalMessageInfo func (m *ExecuteFetchAsDbaResponse) GetResult() *query.QueryResult { if m != nil { @@ -889,16 +1604,38 @@ func (m *ExecuteFetchAsDbaResponse) GetResult() *query.QueryResult { } type ExecuteFetchAsAllPrivsRequest struct { - Query []byte `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName" json:"db_name,omitempty"` - MaxRows uint64 `protobuf:"varint,3,opt,name=max_rows,json=maxRows" json:"max_rows,omitempty"` - ReloadSchema bool `protobuf:"varint,4,opt,name=reload_schema,json=reloadSchema" json:"reload_schema,omitempty"` + Query []byte `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName" json:"db_name,omitempty"` + MaxRows uint64 `protobuf:"varint,3,opt,name=max_rows,json=maxRows" json:"max_rows,omitempty"` + ReloadSchema bool `protobuf:"varint,4,opt,name=reload_schema,json=reloadSchema" json:"reload_schema,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ExecuteFetchAsAllPrivsRequest) Reset() { *m = ExecuteFetchAsAllPrivsRequest{} } -func (m *ExecuteFetchAsAllPrivsRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteFetchAsAllPrivsRequest) ProtoMessage() {} -func (*ExecuteFetchAsAllPrivsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{37} } +func (m *ExecuteFetchAsAllPrivsRequest) Reset() { *m = ExecuteFetchAsAllPrivsRequest{} } +func (m *ExecuteFetchAsAllPrivsRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteFetchAsAllPrivsRequest) ProtoMessage() {} +func (*ExecuteFetchAsAllPrivsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{37} +} +func (m *ExecuteFetchAsAllPrivsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteFetchAsAllPrivsRequest.Unmarshal(m, b) +} +func (m *ExecuteFetchAsAllPrivsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteFetchAsAllPrivsRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteFetchAsAllPrivsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteFetchAsAllPrivsRequest.Merge(dst, src) +} +func (m *ExecuteFetchAsAllPrivsRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteFetchAsAllPrivsRequest.Size(m) +} +func (m *ExecuteFetchAsAllPrivsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteFetchAsAllPrivsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecuteFetchAsAllPrivsRequest proto.InternalMessageInfo func (m *ExecuteFetchAsAllPrivsRequest) GetQuery() []byte { if m != nil { @@ -929,13 +1666,35 @@ func (m *ExecuteFetchAsAllPrivsRequest) GetReloadSchema() bool { } type ExecuteFetchAsAllPrivsResponse struct { - Result *query.QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + Result *query.QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteFetchAsAllPrivsResponse) Reset() { *m = ExecuteFetchAsAllPrivsResponse{} } +func (m *ExecuteFetchAsAllPrivsResponse) String() string { return proto.CompactTextString(m) } +func (*ExecuteFetchAsAllPrivsResponse) ProtoMessage() {} +func (*ExecuteFetchAsAllPrivsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{38} +} +func (m *ExecuteFetchAsAllPrivsResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteFetchAsAllPrivsResponse.Unmarshal(m, b) +} +func (m *ExecuteFetchAsAllPrivsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteFetchAsAllPrivsResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteFetchAsAllPrivsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteFetchAsAllPrivsResponse.Merge(dst, src) +} +func (m *ExecuteFetchAsAllPrivsResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteFetchAsAllPrivsResponse.Size(m) +} +func (m *ExecuteFetchAsAllPrivsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteFetchAsAllPrivsResponse.DiscardUnknown(m) } -func (m *ExecuteFetchAsAllPrivsResponse) Reset() { *m = ExecuteFetchAsAllPrivsResponse{} } -func (m *ExecuteFetchAsAllPrivsResponse) String() string { return proto.CompactTextString(m) } -func (*ExecuteFetchAsAllPrivsResponse) ProtoMessage() {} -func (*ExecuteFetchAsAllPrivsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{38} } +var xxx_messageInfo_ExecuteFetchAsAllPrivsResponse proto.InternalMessageInfo func (m *ExecuteFetchAsAllPrivsResponse) GetResult() *query.QueryResult { if m != nil { @@ -945,14 +1704,36 @@ func (m *ExecuteFetchAsAllPrivsResponse) GetResult() *query.QueryResult { } type ExecuteFetchAsAppRequest struct { - Query []byte `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"` - MaxRows uint64 `protobuf:"varint,2,opt,name=max_rows,json=maxRows" json:"max_rows,omitempty"` + Query []byte `protobuf:"bytes,1,opt,name=query,proto3" json:"query,omitempty"` + MaxRows uint64 `protobuf:"varint,2,opt,name=max_rows,json=maxRows" json:"max_rows,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteFetchAsAppRequest) Reset() { *m = ExecuteFetchAsAppRequest{} } +func (m *ExecuteFetchAsAppRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteFetchAsAppRequest) ProtoMessage() {} +func (*ExecuteFetchAsAppRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{39} +} +func (m *ExecuteFetchAsAppRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteFetchAsAppRequest.Unmarshal(m, b) +} +func (m *ExecuteFetchAsAppRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteFetchAsAppRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteFetchAsAppRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteFetchAsAppRequest.Merge(dst, src) +} +func (m *ExecuteFetchAsAppRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteFetchAsAppRequest.Size(m) +} +func (m *ExecuteFetchAsAppRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteFetchAsAppRequest.DiscardUnknown(m) } -func (m *ExecuteFetchAsAppRequest) Reset() { *m = ExecuteFetchAsAppRequest{} } -func (m *ExecuteFetchAsAppRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteFetchAsAppRequest) ProtoMessage() {} -func (*ExecuteFetchAsAppRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{39} } +var xxx_messageInfo_ExecuteFetchAsAppRequest proto.InternalMessageInfo func (m *ExecuteFetchAsAppRequest) GetQuery() []byte { if m != nil { @@ -969,13 +1750,35 @@ func (m *ExecuteFetchAsAppRequest) GetMaxRows() uint64 { } type ExecuteFetchAsAppResponse struct { - Result *query.QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + Result *query.QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteFetchAsAppResponse) Reset() { *m = ExecuteFetchAsAppResponse{} } +func (m *ExecuteFetchAsAppResponse) String() string { return proto.CompactTextString(m) } +func (*ExecuteFetchAsAppResponse) ProtoMessage() {} +func (*ExecuteFetchAsAppResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{40} +} +func (m *ExecuteFetchAsAppResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteFetchAsAppResponse.Unmarshal(m, b) +} +func (m *ExecuteFetchAsAppResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteFetchAsAppResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteFetchAsAppResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteFetchAsAppResponse.Merge(dst, src) +} +func (m *ExecuteFetchAsAppResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteFetchAsAppResponse.Size(m) +} +func (m *ExecuteFetchAsAppResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteFetchAsAppResponse.DiscardUnknown(m) } -func (m *ExecuteFetchAsAppResponse) Reset() { *m = ExecuteFetchAsAppResponse{} } -func (m *ExecuteFetchAsAppResponse) String() string { return proto.CompactTextString(m) } -func (*ExecuteFetchAsAppResponse) ProtoMessage() {} -func (*ExecuteFetchAsAppResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{40} } +var xxx_messageInfo_ExecuteFetchAsAppResponse proto.InternalMessageInfo func (m *ExecuteFetchAsAppResponse) GetResult() *query.QueryResult { if m != nil { @@ -985,21 +1788,65 @@ func (m *ExecuteFetchAsAppResponse) GetResult() *query.QueryResult { } type SlaveStatusRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SlaveStatusRequest) Reset() { *m = SlaveStatusRequest{} } +func (m *SlaveStatusRequest) String() string { return proto.CompactTextString(m) } +func (*SlaveStatusRequest) ProtoMessage() {} +func (*SlaveStatusRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{41} +} +func (m *SlaveStatusRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SlaveStatusRequest.Unmarshal(m, b) +} +func (m *SlaveStatusRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SlaveStatusRequest.Marshal(b, m, deterministic) +} +func (dst *SlaveStatusRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SlaveStatusRequest.Merge(dst, src) +} +func (m *SlaveStatusRequest) XXX_Size() int { + return xxx_messageInfo_SlaveStatusRequest.Size(m) +} +func (m *SlaveStatusRequest) XXX_DiscardUnknown() { + xxx_messageInfo_SlaveStatusRequest.DiscardUnknown(m) } -func (m *SlaveStatusRequest) Reset() { *m = SlaveStatusRequest{} } -func (m *SlaveStatusRequest) String() string { return proto.CompactTextString(m) } -func (*SlaveStatusRequest) ProtoMessage() {} -func (*SlaveStatusRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{41} } +var xxx_messageInfo_SlaveStatusRequest proto.InternalMessageInfo type SlaveStatusResponse struct { - Status *replicationdata.Status `protobuf:"bytes,1,opt,name=status" json:"status,omitempty"` + Status *replicationdata.Status `protobuf:"bytes,1,opt,name=status" json:"status,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SlaveStatusResponse) Reset() { *m = SlaveStatusResponse{} } +func (m *SlaveStatusResponse) String() string { return proto.CompactTextString(m) } +func (*SlaveStatusResponse) ProtoMessage() {} +func (*SlaveStatusResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{42} +} +func (m *SlaveStatusResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SlaveStatusResponse.Unmarshal(m, b) +} +func (m *SlaveStatusResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SlaveStatusResponse.Marshal(b, m, deterministic) +} +func (dst *SlaveStatusResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SlaveStatusResponse.Merge(dst, src) +} +func (m *SlaveStatusResponse) XXX_Size() int { + return xxx_messageInfo_SlaveStatusResponse.Size(m) +} +func (m *SlaveStatusResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SlaveStatusResponse.DiscardUnknown(m) } -func (m *SlaveStatusResponse) Reset() { *m = SlaveStatusResponse{} } -func (m *SlaveStatusResponse) String() string { return proto.CompactTextString(m) } -func (*SlaveStatusResponse) ProtoMessage() {} -func (*SlaveStatusResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{42} } +var xxx_messageInfo_SlaveStatusResponse proto.InternalMessageInfo func (m *SlaveStatusResponse) GetStatus() *replicationdata.Status { if m != nil { @@ -1009,21 +1856,65 @@ func (m *SlaveStatusResponse) GetStatus() *replicationdata.Status { } type MasterPositionRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *MasterPositionRequest) Reset() { *m = MasterPositionRequest{} } -func (m *MasterPositionRequest) String() string { return proto.CompactTextString(m) } -func (*MasterPositionRequest) ProtoMessage() {} -func (*MasterPositionRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{43} } +func (m *MasterPositionRequest) Reset() { *m = MasterPositionRequest{} } +func (m *MasterPositionRequest) String() string { return proto.CompactTextString(m) } +func (*MasterPositionRequest) ProtoMessage() {} +func (*MasterPositionRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{43} +} +func (m *MasterPositionRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_MasterPositionRequest.Unmarshal(m, b) +} +func (m *MasterPositionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_MasterPositionRequest.Marshal(b, m, deterministic) +} +func (dst *MasterPositionRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_MasterPositionRequest.Merge(dst, src) +} +func (m *MasterPositionRequest) XXX_Size() int { + return xxx_messageInfo_MasterPositionRequest.Size(m) +} +func (m *MasterPositionRequest) XXX_DiscardUnknown() { + xxx_messageInfo_MasterPositionRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_MasterPositionRequest proto.InternalMessageInfo type MasterPositionResponse struct { - Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *MasterPositionResponse) Reset() { *m = MasterPositionResponse{} } -func (m *MasterPositionResponse) String() string { return proto.CompactTextString(m) } -func (*MasterPositionResponse) ProtoMessage() {} -func (*MasterPositionResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{44} } +func (m *MasterPositionResponse) Reset() { *m = MasterPositionResponse{} } +func (m *MasterPositionResponse) String() string { return proto.CompactTextString(m) } +func (*MasterPositionResponse) ProtoMessage() {} +func (*MasterPositionResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{44} +} +func (m *MasterPositionResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_MasterPositionResponse.Unmarshal(m, b) +} +func (m *MasterPositionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_MasterPositionResponse.Marshal(b, m, deterministic) +} +func (dst *MasterPositionResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_MasterPositionResponse.Merge(dst, src) +} +func (m *MasterPositionResponse) XXX_Size() int { + return xxx_messageInfo_MasterPositionResponse.Size(m) +} +func (m *MasterPositionResponse) XXX_DiscardUnknown() { + xxx_messageInfo_MasterPositionResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_MasterPositionResponse proto.InternalMessageInfo func (m *MasterPositionResponse) GetPosition() string { if m != nil { @@ -1033,30 +1924,96 @@ func (m *MasterPositionResponse) GetPosition() string { } type StopSlaveRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StopSlaveRequest) Reset() { *m = StopSlaveRequest{} } +func (m *StopSlaveRequest) String() string { return proto.CompactTextString(m) } +func (*StopSlaveRequest) ProtoMessage() {} +func (*StopSlaveRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{45} +} +func (m *StopSlaveRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StopSlaveRequest.Unmarshal(m, b) +} +func (m *StopSlaveRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StopSlaveRequest.Marshal(b, m, deterministic) +} +func (dst *StopSlaveRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StopSlaveRequest.Merge(dst, src) +} +func (m *StopSlaveRequest) XXX_Size() int { + return xxx_messageInfo_StopSlaveRequest.Size(m) +} +func (m *StopSlaveRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StopSlaveRequest.DiscardUnknown(m) } -func (m *StopSlaveRequest) Reset() { *m = StopSlaveRequest{} } -func (m *StopSlaveRequest) String() string { return proto.CompactTextString(m) } -func (*StopSlaveRequest) ProtoMessage() {} -func (*StopSlaveRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{45} } +var xxx_messageInfo_StopSlaveRequest proto.InternalMessageInfo type StopSlaveResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StopSlaveResponse) Reset() { *m = StopSlaveResponse{} } +func (m *StopSlaveResponse) String() string { return proto.CompactTextString(m) } +func (*StopSlaveResponse) ProtoMessage() {} +func (*StopSlaveResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{46} +} +func (m *StopSlaveResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StopSlaveResponse.Unmarshal(m, b) +} +func (m *StopSlaveResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StopSlaveResponse.Marshal(b, m, deterministic) +} +func (dst *StopSlaveResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StopSlaveResponse.Merge(dst, src) +} +func (m *StopSlaveResponse) XXX_Size() int { + return xxx_messageInfo_StopSlaveResponse.Size(m) +} +func (m *StopSlaveResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StopSlaveResponse.DiscardUnknown(m) } -func (m *StopSlaveResponse) Reset() { *m = StopSlaveResponse{} } -func (m *StopSlaveResponse) String() string { return proto.CompactTextString(m) } -func (*StopSlaveResponse) ProtoMessage() {} -func (*StopSlaveResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{46} } +var xxx_messageInfo_StopSlaveResponse proto.InternalMessageInfo type StopSlaveMinimumRequest struct { - Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` - WaitTimeout int64 `protobuf:"varint,2,opt,name=wait_timeout,json=waitTimeout" json:"wait_timeout,omitempty"` + Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + WaitTimeout int64 `protobuf:"varint,2,opt,name=wait_timeout,json=waitTimeout" json:"wait_timeout,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StopSlaveMinimumRequest) Reset() { *m = StopSlaveMinimumRequest{} } +func (m *StopSlaveMinimumRequest) String() string { return proto.CompactTextString(m) } +func (*StopSlaveMinimumRequest) ProtoMessage() {} +func (*StopSlaveMinimumRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{47} +} +func (m *StopSlaveMinimumRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StopSlaveMinimumRequest.Unmarshal(m, b) +} +func (m *StopSlaveMinimumRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StopSlaveMinimumRequest.Marshal(b, m, deterministic) +} +func (dst *StopSlaveMinimumRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StopSlaveMinimumRequest.Merge(dst, src) +} +func (m *StopSlaveMinimumRequest) XXX_Size() int { + return xxx_messageInfo_StopSlaveMinimumRequest.Size(m) +} +func (m *StopSlaveMinimumRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StopSlaveMinimumRequest.DiscardUnknown(m) } -func (m *StopSlaveMinimumRequest) Reset() { *m = StopSlaveMinimumRequest{} } -func (m *StopSlaveMinimumRequest) String() string { return proto.CompactTextString(m) } -func (*StopSlaveMinimumRequest) ProtoMessage() {} -func (*StopSlaveMinimumRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{47} } +var xxx_messageInfo_StopSlaveMinimumRequest proto.InternalMessageInfo func (m *StopSlaveMinimumRequest) GetPosition() string { if m != nil { @@ -1073,13 +2030,35 @@ func (m *StopSlaveMinimumRequest) GetWaitTimeout() int64 { } type StopSlaveMinimumResponse struct { - Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StopSlaveMinimumResponse) Reset() { *m = StopSlaveMinimumResponse{} } +func (m *StopSlaveMinimumResponse) String() string { return proto.CompactTextString(m) } +func (*StopSlaveMinimumResponse) ProtoMessage() {} +func (*StopSlaveMinimumResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{48} +} +func (m *StopSlaveMinimumResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StopSlaveMinimumResponse.Unmarshal(m, b) +} +func (m *StopSlaveMinimumResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StopSlaveMinimumResponse.Marshal(b, m, deterministic) +} +func (dst *StopSlaveMinimumResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StopSlaveMinimumResponse.Merge(dst, src) +} +func (m *StopSlaveMinimumResponse) XXX_Size() int { + return xxx_messageInfo_StopSlaveMinimumResponse.Size(m) +} +func (m *StopSlaveMinimumResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StopSlaveMinimumResponse.DiscardUnknown(m) } -func (m *StopSlaveMinimumResponse) Reset() { *m = StopSlaveMinimumResponse{} } -func (m *StopSlaveMinimumResponse) String() string { return proto.CompactTextString(m) } -func (*StopSlaveMinimumResponse) ProtoMessage() {} -func (*StopSlaveMinimumResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{48} } +var xxx_messageInfo_StopSlaveMinimumResponse proto.InternalMessageInfo func (m *StopSlaveMinimumResponse) GetPosition() string { if m != nil { @@ -1089,35 +2068,99 @@ func (m *StopSlaveMinimumResponse) GetPosition() string { } type StartSlaveRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StartSlaveRequest) Reset() { *m = StartSlaveRequest{} } +func (m *StartSlaveRequest) String() string { return proto.CompactTextString(m) } +func (*StartSlaveRequest) ProtoMessage() {} +func (*StartSlaveRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{49} +} +func (m *StartSlaveRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StartSlaveRequest.Unmarshal(m, b) +} +func (m *StartSlaveRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StartSlaveRequest.Marshal(b, m, deterministic) +} +func (dst *StartSlaveRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StartSlaveRequest.Merge(dst, src) +} +func (m *StartSlaveRequest) XXX_Size() int { + return xxx_messageInfo_StartSlaveRequest.Size(m) +} +func (m *StartSlaveRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StartSlaveRequest.DiscardUnknown(m) } -func (m *StartSlaveRequest) Reset() { *m = StartSlaveRequest{} } -func (m *StartSlaveRequest) String() string { return proto.CompactTextString(m) } -func (*StartSlaveRequest) ProtoMessage() {} -func (*StartSlaveRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{49} } +var xxx_messageInfo_StartSlaveRequest proto.InternalMessageInfo type StartSlaveResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *StartSlaveResponse) Reset() { *m = StartSlaveResponse{} } -func (m *StartSlaveResponse) String() string { return proto.CompactTextString(m) } -func (*StartSlaveResponse) ProtoMessage() {} -func (*StartSlaveResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{50} } +func (m *StartSlaveResponse) Reset() { *m = StartSlaveResponse{} } +func (m *StartSlaveResponse) String() string { return proto.CompactTextString(m) } +func (*StartSlaveResponse) ProtoMessage() {} +func (*StartSlaveResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{50} +} +func (m *StartSlaveResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StartSlaveResponse.Unmarshal(m, b) +} +func (m *StartSlaveResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StartSlaveResponse.Marshal(b, m, deterministic) +} +func (dst *StartSlaveResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StartSlaveResponse.Merge(dst, src) +} +func (m *StartSlaveResponse) XXX_Size() int { + return xxx_messageInfo_StartSlaveResponse.Size(m) +} +func (m *StartSlaveResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StartSlaveResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_StartSlaveResponse proto.InternalMessageInfo type TabletExternallyReparentedRequest struct { // external_id is an string value that may be provided by an external // agent for tracking purposes. The tablet will emit this string in // events triggered by TabletExternallyReparented, such as VitessReparent. - ExternalId string `protobuf:"bytes,1,opt,name=external_id,json=externalId" json:"external_id,omitempty"` + ExternalId string `protobuf:"bytes,1,opt,name=external_id,json=externalId" json:"external_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *TabletExternallyReparentedRequest) Reset() { *m = TabletExternallyReparentedRequest{} } func (m *TabletExternallyReparentedRequest) String() string { return proto.CompactTextString(m) } func (*TabletExternallyReparentedRequest) ProtoMessage() {} func (*TabletExternallyReparentedRequest) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{51} + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{51} +} +func (m *TabletExternallyReparentedRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_TabletExternallyReparentedRequest.Unmarshal(m, b) +} +func (m *TabletExternallyReparentedRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_TabletExternallyReparentedRequest.Marshal(b, m, deterministic) +} +func (dst *TabletExternallyReparentedRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_TabletExternallyReparentedRequest.Merge(dst, src) +} +func (m *TabletExternallyReparentedRequest) XXX_Size() int { + return xxx_messageInfo_TabletExternallyReparentedRequest.Size(m) +} +func (m *TabletExternallyReparentedRequest) XXX_DiscardUnknown() { + xxx_messageInfo_TabletExternallyReparentedRequest.DiscardUnknown(m) } +var xxx_messageInfo_TabletExternallyReparentedRequest proto.InternalMessageInfo + func (m *TabletExternallyReparentedRequest) GetExternalId() string { if m != nil { return m.ExternalId @@ -1126,49 +2169,155 @@ func (m *TabletExternallyReparentedRequest) GetExternalId() string { } type TabletExternallyReparentedResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *TabletExternallyReparentedResponse) Reset() { *m = TabletExternallyReparentedResponse{} } func (m *TabletExternallyReparentedResponse) String() string { return proto.CompactTextString(m) } func (*TabletExternallyReparentedResponse) ProtoMessage() {} func (*TabletExternallyReparentedResponse) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{52} + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{52} +} +func (m *TabletExternallyReparentedResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_TabletExternallyReparentedResponse.Unmarshal(m, b) +} +func (m *TabletExternallyReparentedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_TabletExternallyReparentedResponse.Marshal(b, m, deterministic) +} +func (dst *TabletExternallyReparentedResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_TabletExternallyReparentedResponse.Merge(dst, src) +} +func (m *TabletExternallyReparentedResponse) XXX_Size() int { + return xxx_messageInfo_TabletExternallyReparentedResponse.Size(m) +} +func (m *TabletExternallyReparentedResponse) XXX_DiscardUnknown() { + xxx_messageInfo_TabletExternallyReparentedResponse.DiscardUnknown(m) } +var xxx_messageInfo_TabletExternallyReparentedResponse proto.InternalMessageInfo + type TabletExternallyElectedRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *TabletExternallyElectedRequest) Reset() { *m = TabletExternallyElectedRequest{} } +func (m *TabletExternallyElectedRequest) String() string { return proto.CompactTextString(m) } +func (*TabletExternallyElectedRequest) ProtoMessage() {} +func (*TabletExternallyElectedRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{53} +} +func (m *TabletExternallyElectedRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_TabletExternallyElectedRequest.Unmarshal(m, b) +} +func (m *TabletExternallyElectedRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_TabletExternallyElectedRequest.Marshal(b, m, deterministic) +} +func (dst *TabletExternallyElectedRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_TabletExternallyElectedRequest.Merge(dst, src) +} +func (m *TabletExternallyElectedRequest) XXX_Size() int { + return xxx_messageInfo_TabletExternallyElectedRequest.Size(m) +} +func (m *TabletExternallyElectedRequest) XXX_DiscardUnknown() { + xxx_messageInfo_TabletExternallyElectedRequest.DiscardUnknown(m) } -func (m *TabletExternallyElectedRequest) Reset() { *m = TabletExternallyElectedRequest{} } -func (m *TabletExternallyElectedRequest) String() string { return proto.CompactTextString(m) } -func (*TabletExternallyElectedRequest) ProtoMessage() {} -func (*TabletExternallyElectedRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{53} } +var xxx_messageInfo_TabletExternallyElectedRequest proto.InternalMessageInfo type TabletExternallyElectedResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *TabletExternallyElectedResponse) Reset() { *m = TabletExternallyElectedResponse{} } func (m *TabletExternallyElectedResponse) String() string { return proto.CompactTextString(m) } func (*TabletExternallyElectedResponse) ProtoMessage() {} func (*TabletExternallyElectedResponse) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{54} + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{54} +} +func (m *TabletExternallyElectedResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_TabletExternallyElectedResponse.Unmarshal(m, b) +} +func (m *TabletExternallyElectedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_TabletExternallyElectedResponse.Marshal(b, m, deterministic) +} +func (dst *TabletExternallyElectedResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_TabletExternallyElectedResponse.Merge(dst, src) +} +func (m *TabletExternallyElectedResponse) XXX_Size() int { + return xxx_messageInfo_TabletExternallyElectedResponse.Size(m) } +func (m *TabletExternallyElectedResponse) XXX_DiscardUnknown() { + xxx_messageInfo_TabletExternallyElectedResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_TabletExternallyElectedResponse proto.InternalMessageInfo type GetSlavesRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetSlavesRequest) Reset() { *m = GetSlavesRequest{} } +func (m *GetSlavesRequest) String() string { return proto.CompactTextString(m) } +func (*GetSlavesRequest) ProtoMessage() {} +func (*GetSlavesRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{55} +} +func (m *GetSlavesRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetSlavesRequest.Unmarshal(m, b) +} +func (m *GetSlavesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetSlavesRequest.Marshal(b, m, deterministic) +} +func (dst *GetSlavesRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetSlavesRequest.Merge(dst, src) +} +func (m *GetSlavesRequest) XXX_Size() int { + return xxx_messageInfo_GetSlavesRequest.Size(m) +} +func (m *GetSlavesRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GetSlavesRequest.DiscardUnknown(m) } -func (m *GetSlavesRequest) Reset() { *m = GetSlavesRequest{} } -func (m *GetSlavesRequest) String() string { return proto.CompactTextString(m) } -func (*GetSlavesRequest) ProtoMessage() {} -func (*GetSlavesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{55} } +var xxx_messageInfo_GetSlavesRequest proto.InternalMessageInfo type GetSlavesResponse struct { - Addrs []string `protobuf:"bytes,1,rep,name=addrs" json:"addrs,omitempty"` + Addrs []string `protobuf:"bytes,1,rep,name=addrs" json:"addrs,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *GetSlavesResponse) Reset() { *m = GetSlavesResponse{} } -func (m *GetSlavesResponse) String() string { return proto.CompactTextString(m) } -func (*GetSlavesResponse) ProtoMessage() {} -func (*GetSlavesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{56} } +func (m *GetSlavesResponse) Reset() { *m = GetSlavesResponse{} } +func (m *GetSlavesResponse) String() string { return proto.CompactTextString(m) } +func (*GetSlavesResponse) ProtoMessage() {} +func (*GetSlavesResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{56} +} +func (m *GetSlavesResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetSlavesResponse.Unmarshal(m, b) +} +func (m *GetSlavesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetSlavesResponse.Marshal(b, m, deterministic) +} +func (dst *GetSlavesResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetSlavesResponse.Merge(dst, src) +} +func (m *GetSlavesResponse) XXX_Size() int { + return xxx_messageInfo_GetSlavesResponse.Size(m) +} +func (m *GetSlavesResponse) XXX_DiscardUnknown() { + xxx_messageInfo_GetSlavesResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_GetSlavesResponse proto.InternalMessageInfo func (m *GetSlavesResponse) GetAddrs() []string { if m != nil { @@ -1178,14 +2327,36 @@ func (m *GetSlavesResponse) GetAddrs() []string { } type WaitBlpPositionRequest struct { - BlpPosition *BlpPosition `protobuf:"bytes,1,opt,name=blp_position,json=blpPosition" json:"blp_position,omitempty"` - WaitTimeout int64 `protobuf:"varint,2,opt,name=wait_timeout,json=waitTimeout" json:"wait_timeout,omitempty"` + BlpPosition *BlpPosition `protobuf:"bytes,1,opt,name=blp_position,json=blpPosition" json:"blp_position,omitempty"` + WaitTimeout int64 `protobuf:"varint,2,opt,name=wait_timeout,json=waitTimeout" json:"wait_timeout,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *WaitBlpPositionRequest) Reset() { *m = WaitBlpPositionRequest{} } -func (m *WaitBlpPositionRequest) String() string { return proto.CompactTextString(m) } -func (*WaitBlpPositionRequest) ProtoMessage() {} -func (*WaitBlpPositionRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{57} } +func (m *WaitBlpPositionRequest) Reset() { *m = WaitBlpPositionRequest{} } +func (m *WaitBlpPositionRequest) String() string { return proto.CompactTextString(m) } +func (*WaitBlpPositionRequest) ProtoMessage() {} +func (*WaitBlpPositionRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{57} +} +func (m *WaitBlpPositionRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_WaitBlpPositionRequest.Unmarshal(m, b) +} +func (m *WaitBlpPositionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_WaitBlpPositionRequest.Marshal(b, m, deterministic) +} +func (dst *WaitBlpPositionRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_WaitBlpPositionRequest.Merge(dst, src) +} +func (m *WaitBlpPositionRequest) XXX_Size() int { + return xxx_messageInfo_WaitBlpPositionRequest.Size(m) +} +func (m *WaitBlpPositionRequest) XXX_DiscardUnknown() { + xxx_messageInfo_WaitBlpPositionRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_WaitBlpPositionRequest proto.InternalMessageInfo func (m *WaitBlpPositionRequest) GetBlpPosition() *BlpPosition { if m != nil { @@ -1202,29 +2373,95 @@ func (m *WaitBlpPositionRequest) GetWaitTimeout() int64 { } type WaitBlpPositionResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *WaitBlpPositionResponse) Reset() { *m = WaitBlpPositionResponse{} } +func (m *WaitBlpPositionResponse) String() string { return proto.CompactTextString(m) } +func (*WaitBlpPositionResponse) ProtoMessage() {} +func (*WaitBlpPositionResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{58} +} +func (m *WaitBlpPositionResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_WaitBlpPositionResponse.Unmarshal(m, b) +} +func (m *WaitBlpPositionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_WaitBlpPositionResponse.Marshal(b, m, deterministic) +} +func (dst *WaitBlpPositionResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_WaitBlpPositionResponse.Merge(dst, src) +} +func (m *WaitBlpPositionResponse) XXX_Size() int { + return xxx_messageInfo_WaitBlpPositionResponse.Size(m) +} +func (m *WaitBlpPositionResponse) XXX_DiscardUnknown() { + xxx_messageInfo_WaitBlpPositionResponse.DiscardUnknown(m) } -func (m *WaitBlpPositionResponse) Reset() { *m = WaitBlpPositionResponse{} } -func (m *WaitBlpPositionResponse) String() string { return proto.CompactTextString(m) } -func (*WaitBlpPositionResponse) ProtoMessage() {} -func (*WaitBlpPositionResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{58} } +var xxx_messageInfo_WaitBlpPositionResponse proto.InternalMessageInfo type StopBlpRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *StopBlpRequest) Reset() { *m = StopBlpRequest{} } -func (m *StopBlpRequest) String() string { return proto.CompactTextString(m) } -func (*StopBlpRequest) ProtoMessage() {} -func (*StopBlpRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{59} } +func (m *StopBlpRequest) Reset() { *m = StopBlpRequest{} } +func (m *StopBlpRequest) String() string { return proto.CompactTextString(m) } +func (*StopBlpRequest) ProtoMessage() {} +func (*StopBlpRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{59} +} +func (m *StopBlpRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StopBlpRequest.Unmarshal(m, b) +} +func (m *StopBlpRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StopBlpRequest.Marshal(b, m, deterministic) +} +func (dst *StopBlpRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StopBlpRequest.Merge(dst, src) +} +func (m *StopBlpRequest) XXX_Size() int { + return xxx_messageInfo_StopBlpRequest.Size(m) +} +func (m *StopBlpRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StopBlpRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_StopBlpRequest proto.InternalMessageInfo type StopBlpResponse struct { - BlpPositions []*BlpPosition `protobuf:"bytes,1,rep,name=blp_positions,json=blpPositions" json:"blp_positions,omitempty"` + BlpPositions []*BlpPosition `protobuf:"bytes,1,rep,name=blp_positions,json=blpPositions" json:"blp_positions,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StopBlpResponse) Reset() { *m = StopBlpResponse{} } +func (m *StopBlpResponse) String() string { return proto.CompactTextString(m) } +func (*StopBlpResponse) ProtoMessage() {} +func (*StopBlpResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{60} +} +func (m *StopBlpResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StopBlpResponse.Unmarshal(m, b) +} +func (m *StopBlpResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StopBlpResponse.Marshal(b, m, deterministic) +} +func (dst *StopBlpResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StopBlpResponse.Merge(dst, src) +} +func (m *StopBlpResponse) XXX_Size() int { + return xxx_messageInfo_StopBlpResponse.Size(m) +} +func (m *StopBlpResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StopBlpResponse.DiscardUnknown(m) } -func (m *StopBlpResponse) Reset() { *m = StopBlpResponse{} } -func (m *StopBlpResponse) String() string { return proto.CompactTextString(m) } -func (*StopBlpResponse) ProtoMessage() {} -func (*StopBlpResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{60} } +var xxx_messageInfo_StopBlpResponse proto.InternalMessageInfo func (m *StopBlpResponse) GetBlpPositions() []*BlpPosition { if m != nil { @@ -1234,30 +2471,96 @@ func (m *StopBlpResponse) GetBlpPositions() []*BlpPosition { } type StartBlpRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StartBlpRequest) Reset() { *m = StartBlpRequest{} } +func (m *StartBlpRequest) String() string { return proto.CompactTextString(m) } +func (*StartBlpRequest) ProtoMessage() {} +func (*StartBlpRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{61} +} +func (m *StartBlpRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StartBlpRequest.Unmarshal(m, b) +} +func (m *StartBlpRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StartBlpRequest.Marshal(b, m, deterministic) +} +func (dst *StartBlpRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StartBlpRequest.Merge(dst, src) +} +func (m *StartBlpRequest) XXX_Size() int { + return xxx_messageInfo_StartBlpRequest.Size(m) +} +func (m *StartBlpRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StartBlpRequest.DiscardUnknown(m) } -func (m *StartBlpRequest) Reset() { *m = StartBlpRequest{} } -func (m *StartBlpRequest) String() string { return proto.CompactTextString(m) } -func (*StartBlpRequest) ProtoMessage() {} -func (*StartBlpRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{61} } +var xxx_messageInfo_StartBlpRequest proto.InternalMessageInfo type StartBlpResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StartBlpResponse) Reset() { *m = StartBlpResponse{} } +func (m *StartBlpResponse) String() string { return proto.CompactTextString(m) } +func (*StartBlpResponse) ProtoMessage() {} +func (*StartBlpResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{62} +} +func (m *StartBlpResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StartBlpResponse.Unmarshal(m, b) +} +func (m *StartBlpResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StartBlpResponse.Marshal(b, m, deterministic) +} +func (dst *StartBlpResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StartBlpResponse.Merge(dst, src) +} +func (m *StartBlpResponse) XXX_Size() int { + return xxx_messageInfo_StartBlpResponse.Size(m) +} +func (m *StartBlpResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StartBlpResponse.DiscardUnknown(m) } -func (m *StartBlpResponse) Reset() { *m = StartBlpResponse{} } -func (m *StartBlpResponse) String() string { return proto.CompactTextString(m) } -func (*StartBlpResponse) ProtoMessage() {} -func (*StartBlpResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{62} } +var xxx_messageInfo_StartBlpResponse proto.InternalMessageInfo type RunBlpUntilRequest struct { - BlpPositions []*BlpPosition `protobuf:"bytes,1,rep,name=blp_positions,json=blpPositions" json:"blp_positions,omitempty"` - WaitTimeout int64 `protobuf:"varint,2,opt,name=wait_timeout,json=waitTimeout" json:"wait_timeout,omitempty"` + BlpPositions []*BlpPosition `protobuf:"bytes,1,rep,name=blp_positions,json=blpPositions" json:"blp_positions,omitempty"` + WaitTimeout int64 `protobuf:"varint,2,opt,name=wait_timeout,json=waitTimeout" json:"wait_timeout,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *RunBlpUntilRequest) Reset() { *m = RunBlpUntilRequest{} } -func (m *RunBlpUntilRequest) String() string { return proto.CompactTextString(m) } -func (*RunBlpUntilRequest) ProtoMessage() {} -func (*RunBlpUntilRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{63} } +func (m *RunBlpUntilRequest) Reset() { *m = RunBlpUntilRequest{} } +func (m *RunBlpUntilRequest) String() string { return proto.CompactTextString(m) } +func (*RunBlpUntilRequest) ProtoMessage() {} +func (*RunBlpUntilRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{63} +} +func (m *RunBlpUntilRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RunBlpUntilRequest.Unmarshal(m, b) +} +func (m *RunBlpUntilRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RunBlpUntilRequest.Marshal(b, m, deterministic) +} +func (dst *RunBlpUntilRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_RunBlpUntilRequest.Merge(dst, src) +} +func (m *RunBlpUntilRequest) XXX_Size() int { + return xxx_messageInfo_RunBlpUntilRequest.Size(m) +} +func (m *RunBlpUntilRequest) XXX_DiscardUnknown() { + xxx_messageInfo_RunBlpUntilRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_RunBlpUntilRequest proto.InternalMessageInfo func (m *RunBlpUntilRequest) GetBlpPositions() []*BlpPosition { if m != nil { @@ -1274,13 +2577,35 @@ func (m *RunBlpUntilRequest) GetWaitTimeout() int64 { } type RunBlpUntilResponse struct { - Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *RunBlpUntilResponse) Reset() { *m = RunBlpUntilResponse{} } -func (m *RunBlpUntilResponse) String() string { return proto.CompactTextString(m) } -func (*RunBlpUntilResponse) ProtoMessage() {} -func (*RunBlpUntilResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{64} } +func (m *RunBlpUntilResponse) Reset() { *m = RunBlpUntilResponse{} } +func (m *RunBlpUntilResponse) String() string { return proto.CompactTextString(m) } +func (*RunBlpUntilResponse) ProtoMessage() {} +func (*RunBlpUntilResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{64} +} +func (m *RunBlpUntilResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RunBlpUntilResponse.Unmarshal(m, b) +} +func (m *RunBlpUntilResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RunBlpUntilResponse.Marshal(b, m, deterministic) +} +func (dst *RunBlpUntilResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_RunBlpUntilResponse.Merge(dst, src) +} +func (m *RunBlpUntilResponse) XXX_Size() int { + return xxx_messageInfo_RunBlpUntilResponse.Size(m) +} +func (m *RunBlpUntilResponse) XXX_DiscardUnknown() { + xxx_messageInfo_RunBlpUntilResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_RunBlpUntilResponse proto.InternalMessageInfo func (m *RunBlpUntilResponse) GetPosition() string { if m != nil { @@ -1290,37 +2615,125 @@ func (m *RunBlpUntilResponse) GetPosition() string { } type ResetReplicationRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ResetReplicationRequest) Reset() { *m = ResetReplicationRequest{} } +func (m *ResetReplicationRequest) String() string { return proto.CompactTextString(m) } +func (*ResetReplicationRequest) ProtoMessage() {} +func (*ResetReplicationRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{65} +} +func (m *ResetReplicationRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ResetReplicationRequest.Unmarshal(m, b) +} +func (m *ResetReplicationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ResetReplicationRequest.Marshal(b, m, deterministic) +} +func (dst *ResetReplicationRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResetReplicationRequest.Merge(dst, src) +} +func (m *ResetReplicationRequest) XXX_Size() int { + return xxx_messageInfo_ResetReplicationRequest.Size(m) +} +func (m *ResetReplicationRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ResetReplicationRequest.DiscardUnknown(m) } -func (m *ResetReplicationRequest) Reset() { *m = ResetReplicationRequest{} } -func (m *ResetReplicationRequest) String() string { return proto.CompactTextString(m) } -func (*ResetReplicationRequest) ProtoMessage() {} -func (*ResetReplicationRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{65} } +var xxx_messageInfo_ResetReplicationRequest proto.InternalMessageInfo type ResetReplicationResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ResetReplicationResponse) Reset() { *m = ResetReplicationResponse{} } -func (m *ResetReplicationResponse) String() string { return proto.CompactTextString(m) } -func (*ResetReplicationResponse) ProtoMessage() {} -func (*ResetReplicationResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{66} } +func (m *ResetReplicationResponse) Reset() { *m = ResetReplicationResponse{} } +func (m *ResetReplicationResponse) String() string { return proto.CompactTextString(m) } +func (*ResetReplicationResponse) ProtoMessage() {} +func (*ResetReplicationResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{66} +} +func (m *ResetReplicationResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ResetReplicationResponse.Unmarshal(m, b) +} +func (m *ResetReplicationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ResetReplicationResponse.Marshal(b, m, deterministic) +} +func (dst *ResetReplicationResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResetReplicationResponse.Merge(dst, src) +} +func (m *ResetReplicationResponse) XXX_Size() int { + return xxx_messageInfo_ResetReplicationResponse.Size(m) +} +func (m *ResetReplicationResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ResetReplicationResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ResetReplicationResponse proto.InternalMessageInfo type InitMasterRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *InitMasterRequest) Reset() { *m = InitMasterRequest{} } +func (m *InitMasterRequest) String() string { return proto.CompactTextString(m) } +func (*InitMasterRequest) ProtoMessage() {} +func (*InitMasterRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{67} +} +func (m *InitMasterRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_InitMasterRequest.Unmarshal(m, b) +} +func (m *InitMasterRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_InitMasterRequest.Marshal(b, m, deterministic) +} +func (dst *InitMasterRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_InitMasterRequest.Merge(dst, src) +} +func (m *InitMasterRequest) XXX_Size() int { + return xxx_messageInfo_InitMasterRequest.Size(m) +} +func (m *InitMasterRequest) XXX_DiscardUnknown() { + xxx_messageInfo_InitMasterRequest.DiscardUnknown(m) } -func (m *InitMasterRequest) Reset() { *m = InitMasterRequest{} } -func (m *InitMasterRequest) String() string { return proto.CompactTextString(m) } -func (*InitMasterRequest) ProtoMessage() {} -func (*InitMasterRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{67} } +var xxx_messageInfo_InitMasterRequest proto.InternalMessageInfo type InitMasterResponse struct { - Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *InitMasterResponse) Reset() { *m = InitMasterResponse{} } +func (m *InitMasterResponse) String() string { return proto.CompactTextString(m) } +func (*InitMasterResponse) ProtoMessage() {} +func (*InitMasterResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{68} +} +func (m *InitMasterResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_InitMasterResponse.Unmarshal(m, b) +} +func (m *InitMasterResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_InitMasterResponse.Marshal(b, m, deterministic) +} +func (dst *InitMasterResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_InitMasterResponse.Merge(dst, src) +} +func (m *InitMasterResponse) XXX_Size() int { + return xxx_messageInfo_InitMasterResponse.Size(m) +} +func (m *InitMasterResponse) XXX_DiscardUnknown() { + xxx_messageInfo_InitMasterResponse.DiscardUnknown(m) } -func (m *InitMasterResponse) Reset() { *m = InitMasterResponse{} } -func (m *InitMasterResponse) String() string { return proto.CompactTextString(m) } -func (*InitMasterResponse) ProtoMessage() {} -func (*InitMasterResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{68} } +var xxx_messageInfo_InitMasterResponse proto.InternalMessageInfo func (m *InitMasterResponse) GetPosition() string { if m != nil { @@ -1330,16 +2743,38 @@ func (m *InitMasterResponse) GetPosition() string { } type PopulateReparentJournalRequest struct { - TimeCreatedNs int64 `protobuf:"varint,1,opt,name=time_created_ns,json=timeCreatedNs" json:"time_created_ns,omitempty"` - ActionName string `protobuf:"bytes,2,opt,name=action_name,json=actionName" json:"action_name,omitempty"` - MasterAlias *topodata.TabletAlias `protobuf:"bytes,3,opt,name=master_alias,json=masterAlias" json:"master_alias,omitempty"` - ReplicationPosition string `protobuf:"bytes,4,opt,name=replication_position,json=replicationPosition" json:"replication_position,omitempty"` + TimeCreatedNs int64 `protobuf:"varint,1,opt,name=time_created_ns,json=timeCreatedNs" json:"time_created_ns,omitempty"` + ActionName string `protobuf:"bytes,2,opt,name=action_name,json=actionName" json:"action_name,omitempty"` + MasterAlias *topodata.TabletAlias `protobuf:"bytes,3,opt,name=master_alias,json=masterAlias" json:"master_alias,omitempty"` + ReplicationPosition string `protobuf:"bytes,4,opt,name=replication_position,json=replicationPosition" json:"replication_position,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *PopulateReparentJournalRequest) Reset() { *m = PopulateReparentJournalRequest{} } +func (m *PopulateReparentJournalRequest) String() string { return proto.CompactTextString(m) } +func (*PopulateReparentJournalRequest) ProtoMessage() {} +func (*PopulateReparentJournalRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{69} +} +func (m *PopulateReparentJournalRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PopulateReparentJournalRequest.Unmarshal(m, b) +} +func (m *PopulateReparentJournalRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PopulateReparentJournalRequest.Marshal(b, m, deterministic) +} +func (dst *PopulateReparentJournalRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_PopulateReparentJournalRequest.Merge(dst, src) +} +func (m *PopulateReparentJournalRequest) XXX_Size() int { + return xxx_messageInfo_PopulateReparentJournalRequest.Size(m) +} +func (m *PopulateReparentJournalRequest) XXX_DiscardUnknown() { + xxx_messageInfo_PopulateReparentJournalRequest.DiscardUnknown(m) } -func (m *PopulateReparentJournalRequest) Reset() { *m = PopulateReparentJournalRequest{} } -func (m *PopulateReparentJournalRequest) String() string { return proto.CompactTextString(m) } -func (*PopulateReparentJournalRequest) ProtoMessage() {} -func (*PopulateReparentJournalRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{69} } +var xxx_messageInfo_PopulateReparentJournalRequest proto.InternalMessageInfo func (m *PopulateReparentJournalRequest) GetTimeCreatedNs() int64 { if m != nil { @@ -1370,25 +2805,67 @@ func (m *PopulateReparentJournalRequest) GetReplicationPosition() string { } type PopulateReparentJournalResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *PopulateReparentJournalResponse) Reset() { *m = PopulateReparentJournalResponse{} } func (m *PopulateReparentJournalResponse) String() string { return proto.CompactTextString(m) } func (*PopulateReparentJournalResponse) ProtoMessage() {} func (*PopulateReparentJournalResponse) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{70} + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{70} +} +func (m *PopulateReparentJournalResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PopulateReparentJournalResponse.Unmarshal(m, b) +} +func (m *PopulateReparentJournalResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PopulateReparentJournalResponse.Marshal(b, m, deterministic) +} +func (dst *PopulateReparentJournalResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_PopulateReparentJournalResponse.Merge(dst, src) +} +func (m *PopulateReparentJournalResponse) XXX_Size() int { + return xxx_messageInfo_PopulateReparentJournalResponse.Size(m) } +func (m *PopulateReparentJournalResponse) XXX_DiscardUnknown() { + xxx_messageInfo_PopulateReparentJournalResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_PopulateReparentJournalResponse proto.InternalMessageInfo type InitSlaveRequest struct { - Parent *topodata.TabletAlias `protobuf:"bytes,1,opt,name=parent" json:"parent,omitempty"` - ReplicationPosition string `protobuf:"bytes,2,opt,name=replication_position,json=replicationPosition" json:"replication_position,omitempty"` - TimeCreatedNs int64 `protobuf:"varint,3,opt,name=time_created_ns,json=timeCreatedNs" json:"time_created_ns,omitempty"` + Parent *topodata.TabletAlias `protobuf:"bytes,1,opt,name=parent" json:"parent,omitempty"` + ReplicationPosition string `protobuf:"bytes,2,opt,name=replication_position,json=replicationPosition" json:"replication_position,omitempty"` + TimeCreatedNs int64 `protobuf:"varint,3,opt,name=time_created_ns,json=timeCreatedNs" json:"time_created_ns,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *InitSlaveRequest) Reset() { *m = InitSlaveRequest{} } -func (m *InitSlaveRequest) String() string { return proto.CompactTextString(m) } -func (*InitSlaveRequest) ProtoMessage() {} -func (*InitSlaveRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{71} } +func (m *InitSlaveRequest) Reset() { *m = InitSlaveRequest{} } +func (m *InitSlaveRequest) String() string { return proto.CompactTextString(m) } +func (*InitSlaveRequest) ProtoMessage() {} +func (*InitSlaveRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{71} +} +func (m *InitSlaveRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_InitSlaveRequest.Unmarshal(m, b) +} +func (m *InitSlaveRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_InitSlaveRequest.Marshal(b, m, deterministic) +} +func (dst *InitSlaveRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_InitSlaveRequest.Merge(dst, src) +} +func (m *InitSlaveRequest) XXX_Size() int { + return xxx_messageInfo_InitSlaveRequest.Size(m) +} +func (m *InitSlaveRequest) XXX_DiscardUnknown() { + xxx_messageInfo_InitSlaveRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_InitSlaveRequest proto.InternalMessageInfo func (m *InitSlaveRequest) GetParent() *topodata.TabletAlias { if m != nil { @@ -1412,29 +2889,95 @@ func (m *InitSlaveRequest) GetTimeCreatedNs() int64 { } type InitSlaveResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *InitSlaveResponse) Reset() { *m = InitSlaveResponse{} } +func (m *InitSlaveResponse) String() string { return proto.CompactTextString(m) } +func (*InitSlaveResponse) ProtoMessage() {} +func (*InitSlaveResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{72} +} +func (m *InitSlaveResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_InitSlaveResponse.Unmarshal(m, b) +} +func (m *InitSlaveResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_InitSlaveResponse.Marshal(b, m, deterministic) +} +func (dst *InitSlaveResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_InitSlaveResponse.Merge(dst, src) +} +func (m *InitSlaveResponse) XXX_Size() int { + return xxx_messageInfo_InitSlaveResponse.Size(m) +} +func (m *InitSlaveResponse) XXX_DiscardUnknown() { + xxx_messageInfo_InitSlaveResponse.DiscardUnknown(m) } -func (m *InitSlaveResponse) Reset() { *m = InitSlaveResponse{} } -func (m *InitSlaveResponse) String() string { return proto.CompactTextString(m) } -func (*InitSlaveResponse) ProtoMessage() {} -func (*InitSlaveResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{72} } +var xxx_messageInfo_InitSlaveResponse proto.InternalMessageInfo type DemoteMasterRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *DemoteMasterRequest) Reset() { *m = DemoteMasterRequest{} } -func (m *DemoteMasterRequest) String() string { return proto.CompactTextString(m) } -func (*DemoteMasterRequest) ProtoMessage() {} -func (*DemoteMasterRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{73} } +func (m *DemoteMasterRequest) Reset() { *m = DemoteMasterRequest{} } +func (m *DemoteMasterRequest) String() string { return proto.CompactTextString(m) } +func (*DemoteMasterRequest) ProtoMessage() {} +func (*DemoteMasterRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{73} +} +func (m *DemoteMasterRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_DemoteMasterRequest.Unmarshal(m, b) +} +func (m *DemoteMasterRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_DemoteMasterRequest.Marshal(b, m, deterministic) +} +func (dst *DemoteMasterRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_DemoteMasterRequest.Merge(dst, src) +} +func (m *DemoteMasterRequest) XXX_Size() int { + return xxx_messageInfo_DemoteMasterRequest.Size(m) +} +func (m *DemoteMasterRequest) XXX_DiscardUnknown() { + xxx_messageInfo_DemoteMasterRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_DemoteMasterRequest proto.InternalMessageInfo type DemoteMasterResponse struct { - Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *DemoteMasterResponse) Reset() { *m = DemoteMasterResponse{} } +func (m *DemoteMasterResponse) String() string { return proto.CompactTextString(m) } +func (*DemoteMasterResponse) ProtoMessage() {} +func (*DemoteMasterResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{74} +} +func (m *DemoteMasterResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_DemoteMasterResponse.Unmarshal(m, b) +} +func (m *DemoteMasterResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_DemoteMasterResponse.Marshal(b, m, deterministic) +} +func (dst *DemoteMasterResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_DemoteMasterResponse.Merge(dst, src) +} +func (m *DemoteMasterResponse) XXX_Size() int { + return xxx_messageInfo_DemoteMasterResponse.Size(m) +} +func (m *DemoteMasterResponse) XXX_DiscardUnknown() { + xxx_messageInfo_DemoteMasterResponse.DiscardUnknown(m) } -func (m *DemoteMasterResponse) Reset() { *m = DemoteMasterResponse{} } -func (m *DemoteMasterResponse) String() string { return proto.CompactTextString(m) } -func (*DemoteMasterResponse) ProtoMessage() {} -func (*DemoteMasterResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{74} } +var xxx_messageInfo_DemoteMasterResponse proto.InternalMessageInfo func (m *DemoteMasterResponse) GetPosition() string { if m != nil { @@ -1444,15 +2987,35 @@ func (m *DemoteMasterResponse) GetPosition() string { } type PromoteSlaveWhenCaughtUpRequest struct { - Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *PromoteSlaveWhenCaughtUpRequest) Reset() { *m = PromoteSlaveWhenCaughtUpRequest{} } func (m *PromoteSlaveWhenCaughtUpRequest) String() string { return proto.CompactTextString(m) } func (*PromoteSlaveWhenCaughtUpRequest) ProtoMessage() {} func (*PromoteSlaveWhenCaughtUpRequest) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{75} + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{75} } +func (m *PromoteSlaveWhenCaughtUpRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PromoteSlaveWhenCaughtUpRequest.Unmarshal(m, b) +} +func (m *PromoteSlaveWhenCaughtUpRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PromoteSlaveWhenCaughtUpRequest.Marshal(b, m, deterministic) +} +func (dst *PromoteSlaveWhenCaughtUpRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_PromoteSlaveWhenCaughtUpRequest.Merge(dst, src) +} +func (m *PromoteSlaveWhenCaughtUpRequest) XXX_Size() int { + return xxx_messageInfo_PromoteSlaveWhenCaughtUpRequest.Size(m) +} +func (m *PromoteSlaveWhenCaughtUpRequest) XXX_DiscardUnknown() { + xxx_messageInfo_PromoteSlaveWhenCaughtUpRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_PromoteSlaveWhenCaughtUpRequest proto.InternalMessageInfo func (m *PromoteSlaveWhenCaughtUpRequest) GetPosition() string { if m != nil { @@ -1462,15 +3025,35 @@ func (m *PromoteSlaveWhenCaughtUpRequest) GetPosition() string { } type PromoteSlaveWhenCaughtUpResponse struct { - Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *PromoteSlaveWhenCaughtUpResponse) Reset() { *m = PromoteSlaveWhenCaughtUpResponse{} } func (m *PromoteSlaveWhenCaughtUpResponse) String() string { return proto.CompactTextString(m) } func (*PromoteSlaveWhenCaughtUpResponse) ProtoMessage() {} func (*PromoteSlaveWhenCaughtUpResponse) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{76} + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{76} } +func (m *PromoteSlaveWhenCaughtUpResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PromoteSlaveWhenCaughtUpResponse.Unmarshal(m, b) +} +func (m *PromoteSlaveWhenCaughtUpResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PromoteSlaveWhenCaughtUpResponse.Marshal(b, m, deterministic) +} +func (dst *PromoteSlaveWhenCaughtUpResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_PromoteSlaveWhenCaughtUpResponse.Merge(dst, src) +} +func (m *PromoteSlaveWhenCaughtUpResponse) XXX_Size() int { + return xxx_messageInfo_PromoteSlaveWhenCaughtUpResponse.Size(m) +} +func (m *PromoteSlaveWhenCaughtUpResponse) XXX_DiscardUnknown() { + xxx_messageInfo_PromoteSlaveWhenCaughtUpResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_PromoteSlaveWhenCaughtUpResponse proto.InternalMessageInfo func (m *PromoteSlaveWhenCaughtUpResponse) GetPosition() string { if m != nil { @@ -1480,31 +3063,97 @@ func (m *PromoteSlaveWhenCaughtUpResponse) GetPosition() string { } type SlaveWasPromotedRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *SlaveWasPromotedRequest) Reset() { *m = SlaveWasPromotedRequest{} } -func (m *SlaveWasPromotedRequest) String() string { return proto.CompactTextString(m) } -func (*SlaveWasPromotedRequest) ProtoMessage() {} -func (*SlaveWasPromotedRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{77} } +func (m *SlaveWasPromotedRequest) Reset() { *m = SlaveWasPromotedRequest{} } +func (m *SlaveWasPromotedRequest) String() string { return proto.CompactTextString(m) } +func (*SlaveWasPromotedRequest) ProtoMessage() {} +func (*SlaveWasPromotedRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{77} +} +func (m *SlaveWasPromotedRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SlaveWasPromotedRequest.Unmarshal(m, b) +} +func (m *SlaveWasPromotedRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SlaveWasPromotedRequest.Marshal(b, m, deterministic) +} +func (dst *SlaveWasPromotedRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SlaveWasPromotedRequest.Merge(dst, src) +} +func (m *SlaveWasPromotedRequest) XXX_Size() int { + return xxx_messageInfo_SlaveWasPromotedRequest.Size(m) +} +func (m *SlaveWasPromotedRequest) XXX_DiscardUnknown() { + xxx_messageInfo_SlaveWasPromotedRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_SlaveWasPromotedRequest proto.InternalMessageInfo type SlaveWasPromotedResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *SlaveWasPromotedResponse) Reset() { *m = SlaveWasPromotedResponse{} } -func (m *SlaveWasPromotedResponse) String() string { return proto.CompactTextString(m) } -func (*SlaveWasPromotedResponse) ProtoMessage() {} -func (*SlaveWasPromotedResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{78} } +func (m *SlaveWasPromotedResponse) Reset() { *m = SlaveWasPromotedResponse{} } +func (m *SlaveWasPromotedResponse) String() string { return proto.CompactTextString(m) } +func (*SlaveWasPromotedResponse) ProtoMessage() {} +func (*SlaveWasPromotedResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{78} +} +func (m *SlaveWasPromotedResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SlaveWasPromotedResponse.Unmarshal(m, b) +} +func (m *SlaveWasPromotedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SlaveWasPromotedResponse.Marshal(b, m, deterministic) +} +func (dst *SlaveWasPromotedResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SlaveWasPromotedResponse.Merge(dst, src) +} +func (m *SlaveWasPromotedResponse) XXX_Size() int { + return xxx_messageInfo_SlaveWasPromotedResponse.Size(m) +} +func (m *SlaveWasPromotedResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SlaveWasPromotedResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_SlaveWasPromotedResponse proto.InternalMessageInfo type SetMasterRequest struct { - Parent *topodata.TabletAlias `protobuf:"bytes,1,opt,name=parent" json:"parent,omitempty"` - TimeCreatedNs int64 `protobuf:"varint,2,opt,name=time_created_ns,json=timeCreatedNs" json:"time_created_ns,omitempty"` - ForceStartSlave bool `protobuf:"varint,3,opt,name=force_start_slave,json=forceStartSlave" json:"force_start_slave,omitempty"` + Parent *topodata.TabletAlias `protobuf:"bytes,1,opt,name=parent" json:"parent,omitempty"` + TimeCreatedNs int64 `protobuf:"varint,2,opt,name=time_created_ns,json=timeCreatedNs" json:"time_created_ns,omitempty"` + ForceStartSlave bool `protobuf:"varint,3,opt,name=force_start_slave,json=forceStartSlave" json:"force_start_slave,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SetMasterRequest) Reset() { *m = SetMasterRequest{} } +func (m *SetMasterRequest) String() string { return proto.CompactTextString(m) } +func (*SetMasterRequest) ProtoMessage() {} +func (*SetMasterRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{79} +} +func (m *SetMasterRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SetMasterRequest.Unmarshal(m, b) +} +func (m *SetMasterRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SetMasterRequest.Marshal(b, m, deterministic) +} +func (dst *SetMasterRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SetMasterRequest.Merge(dst, src) +} +func (m *SetMasterRequest) XXX_Size() int { + return xxx_messageInfo_SetMasterRequest.Size(m) +} +func (m *SetMasterRequest) XXX_DiscardUnknown() { + xxx_messageInfo_SetMasterRequest.DiscardUnknown(m) } -func (m *SetMasterRequest) Reset() { *m = SetMasterRequest{} } -func (m *SetMasterRequest) String() string { return proto.CompactTextString(m) } -func (*SetMasterRequest) ProtoMessage() {} -func (*SetMasterRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{79} } +var xxx_messageInfo_SetMasterRequest proto.InternalMessageInfo func (m *SetMasterRequest) GetParent() *topodata.TabletAlias { if m != nil { @@ -1528,22 +3177,66 @@ func (m *SetMasterRequest) GetForceStartSlave() bool { } type SetMasterResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *SetMasterResponse) Reset() { *m = SetMasterResponse{} } -func (m *SetMasterResponse) String() string { return proto.CompactTextString(m) } -func (*SetMasterResponse) ProtoMessage() {} -func (*SetMasterResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{80} } +func (m *SetMasterResponse) Reset() { *m = SetMasterResponse{} } +func (m *SetMasterResponse) String() string { return proto.CompactTextString(m) } +func (*SetMasterResponse) ProtoMessage() {} +func (*SetMasterResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{80} +} +func (m *SetMasterResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SetMasterResponse.Unmarshal(m, b) +} +func (m *SetMasterResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SetMasterResponse.Marshal(b, m, deterministic) +} +func (dst *SetMasterResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SetMasterResponse.Merge(dst, src) +} +func (m *SetMasterResponse) XXX_Size() int { + return xxx_messageInfo_SetMasterResponse.Size(m) +} +func (m *SetMasterResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SetMasterResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_SetMasterResponse proto.InternalMessageInfo type SlaveWasRestartedRequest struct { // the parent alias the tablet should have - Parent *topodata.TabletAlias `protobuf:"bytes,1,opt,name=parent" json:"parent,omitempty"` + Parent *topodata.TabletAlias `protobuf:"bytes,1,opt,name=parent" json:"parent,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SlaveWasRestartedRequest) Reset() { *m = SlaveWasRestartedRequest{} } +func (m *SlaveWasRestartedRequest) String() string { return proto.CompactTextString(m) } +func (*SlaveWasRestartedRequest) ProtoMessage() {} +func (*SlaveWasRestartedRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{81} +} +func (m *SlaveWasRestartedRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SlaveWasRestartedRequest.Unmarshal(m, b) +} +func (m *SlaveWasRestartedRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SlaveWasRestartedRequest.Marshal(b, m, deterministic) +} +func (dst *SlaveWasRestartedRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SlaveWasRestartedRequest.Merge(dst, src) +} +func (m *SlaveWasRestartedRequest) XXX_Size() int { + return xxx_messageInfo_SlaveWasRestartedRequest.Size(m) +} +func (m *SlaveWasRestartedRequest) XXX_DiscardUnknown() { + xxx_messageInfo_SlaveWasRestartedRequest.DiscardUnknown(m) } -func (m *SlaveWasRestartedRequest) Reset() { *m = SlaveWasRestartedRequest{} } -func (m *SlaveWasRestartedRequest) String() string { return proto.CompactTextString(m) } -func (*SlaveWasRestartedRequest) ProtoMessage() {} -func (*SlaveWasRestartedRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{81} } +var xxx_messageInfo_SlaveWasRestartedRequest proto.InternalMessageInfo func (m *SlaveWasRestartedRequest) GetParent() *topodata.TabletAlias { if m != nil { @@ -1553,34 +3246,96 @@ func (m *SlaveWasRestartedRequest) GetParent() *topodata.TabletAlias { } type SlaveWasRestartedResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SlaveWasRestartedResponse) Reset() { *m = SlaveWasRestartedResponse{} } +func (m *SlaveWasRestartedResponse) String() string { return proto.CompactTextString(m) } +func (*SlaveWasRestartedResponse) ProtoMessage() {} +func (*SlaveWasRestartedResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{82} +} +func (m *SlaveWasRestartedResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SlaveWasRestartedResponse.Unmarshal(m, b) +} +func (m *SlaveWasRestartedResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SlaveWasRestartedResponse.Marshal(b, m, deterministic) +} +func (dst *SlaveWasRestartedResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SlaveWasRestartedResponse.Merge(dst, src) +} +func (m *SlaveWasRestartedResponse) XXX_Size() int { + return xxx_messageInfo_SlaveWasRestartedResponse.Size(m) +} +func (m *SlaveWasRestartedResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SlaveWasRestartedResponse.DiscardUnknown(m) } -func (m *SlaveWasRestartedResponse) Reset() { *m = SlaveWasRestartedResponse{} } -func (m *SlaveWasRestartedResponse) String() string { return proto.CompactTextString(m) } -func (*SlaveWasRestartedResponse) ProtoMessage() {} -func (*SlaveWasRestartedResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{82} } +var xxx_messageInfo_SlaveWasRestartedResponse proto.InternalMessageInfo type StopReplicationAndGetStatusRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *StopReplicationAndGetStatusRequest) Reset() { *m = StopReplicationAndGetStatusRequest{} } func (m *StopReplicationAndGetStatusRequest) String() string { return proto.CompactTextString(m) } func (*StopReplicationAndGetStatusRequest) ProtoMessage() {} func (*StopReplicationAndGetStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{83} + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{83} +} +func (m *StopReplicationAndGetStatusRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StopReplicationAndGetStatusRequest.Unmarshal(m, b) } +func (m *StopReplicationAndGetStatusRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StopReplicationAndGetStatusRequest.Marshal(b, m, deterministic) +} +func (dst *StopReplicationAndGetStatusRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StopReplicationAndGetStatusRequest.Merge(dst, src) +} +func (m *StopReplicationAndGetStatusRequest) XXX_Size() int { + return xxx_messageInfo_StopReplicationAndGetStatusRequest.Size(m) +} +func (m *StopReplicationAndGetStatusRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StopReplicationAndGetStatusRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_StopReplicationAndGetStatusRequest proto.InternalMessageInfo type StopReplicationAndGetStatusResponse struct { - Status *replicationdata.Status `protobuf:"bytes,1,opt,name=status" json:"status,omitempty"` + Status *replicationdata.Status `protobuf:"bytes,1,opt,name=status" json:"status,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *StopReplicationAndGetStatusResponse) Reset() { *m = StopReplicationAndGetStatusResponse{} } func (m *StopReplicationAndGetStatusResponse) String() string { return proto.CompactTextString(m) } func (*StopReplicationAndGetStatusResponse) ProtoMessage() {} func (*StopReplicationAndGetStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{84} + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{84} +} +func (m *StopReplicationAndGetStatusResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StopReplicationAndGetStatusResponse.Unmarshal(m, b) +} +func (m *StopReplicationAndGetStatusResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StopReplicationAndGetStatusResponse.Marshal(b, m, deterministic) +} +func (dst *StopReplicationAndGetStatusResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StopReplicationAndGetStatusResponse.Merge(dst, src) +} +func (m *StopReplicationAndGetStatusResponse) XXX_Size() int { + return xxx_messageInfo_StopReplicationAndGetStatusResponse.Size(m) +} +func (m *StopReplicationAndGetStatusResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StopReplicationAndGetStatusResponse.DiscardUnknown(m) } +var xxx_messageInfo_StopReplicationAndGetStatusResponse proto.InternalMessageInfo + func (m *StopReplicationAndGetStatusResponse) GetStatus() *replicationdata.Status { if m != nil { return m.Status @@ -1589,21 +3344,65 @@ func (m *StopReplicationAndGetStatusResponse) GetStatus() *replicationdata.Statu } type PromoteSlaveRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *PromoteSlaveRequest) Reset() { *m = PromoteSlaveRequest{} } -func (m *PromoteSlaveRequest) String() string { return proto.CompactTextString(m) } -func (*PromoteSlaveRequest) ProtoMessage() {} -func (*PromoteSlaveRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{85} } +func (m *PromoteSlaveRequest) Reset() { *m = PromoteSlaveRequest{} } +func (m *PromoteSlaveRequest) String() string { return proto.CompactTextString(m) } +func (*PromoteSlaveRequest) ProtoMessage() {} +func (*PromoteSlaveRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{85} +} +func (m *PromoteSlaveRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PromoteSlaveRequest.Unmarshal(m, b) +} +func (m *PromoteSlaveRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PromoteSlaveRequest.Marshal(b, m, deterministic) +} +func (dst *PromoteSlaveRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_PromoteSlaveRequest.Merge(dst, src) +} +func (m *PromoteSlaveRequest) XXX_Size() int { + return xxx_messageInfo_PromoteSlaveRequest.Size(m) +} +func (m *PromoteSlaveRequest) XXX_DiscardUnknown() { + xxx_messageInfo_PromoteSlaveRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_PromoteSlaveRequest proto.InternalMessageInfo type PromoteSlaveResponse struct { - Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + Position string `protobuf:"bytes,1,opt,name=position" json:"position,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *PromoteSlaveResponse) Reset() { *m = PromoteSlaveResponse{} } -func (m *PromoteSlaveResponse) String() string { return proto.CompactTextString(m) } -func (*PromoteSlaveResponse) ProtoMessage() {} -func (*PromoteSlaveResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{86} } +func (m *PromoteSlaveResponse) Reset() { *m = PromoteSlaveResponse{} } +func (m *PromoteSlaveResponse) String() string { return proto.CompactTextString(m) } +func (*PromoteSlaveResponse) ProtoMessage() {} +func (*PromoteSlaveResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{86} +} +func (m *PromoteSlaveResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_PromoteSlaveResponse.Unmarshal(m, b) +} +func (m *PromoteSlaveResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_PromoteSlaveResponse.Marshal(b, m, deterministic) +} +func (dst *PromoteSlaveResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_PromoteSlaveResponse.Merge(dst, src) +} +func (m *PromoteSlaveResponse) XXX_Size() int { + return xxx_messageInfo_PromoteSlaveResponse.Size(m) +} +func (m *PromoteSlaveResponse) XXX_DiscardUnknown() { + xxx_messageInfo_PromoteSlaveResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_PromoteSlaveResponse proto.InternalMessageInfo func (m *PromoteSlaveResponse) GetPosition() string { if m != nil { @@ -1613,13 +3412,35 @@ func (m *PromoteSlaveResponse) GetPosition() string { } type BackupRequest struct { - Concurrency int64 `protobuf:"varint,1,opt,name=concurrency" json:"concurrency,omitempty"` + Concurrency int64 `protobuf:"varint,1,opt,name=concurrency" json:"concurrency,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *BackupRequest) Reset() { *m = BackupRequest{} } -func (m *BackupRequest) String() string { return proto.CompactTextString(m) } -func (*BackupRequest) ProtoMessage() {} -func (*BackupRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{87} } +func (m *BackupRequest) Reset() { *m = BackupRequest{} } +func (m *BackupRequest) String() string { return proto.CompactTextString(m) } +func (*BackupRequest) ProtoMessage() {} +func (*BackupRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{87} +} +func (m *BackupRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BackupRequest.Unmarshal(m, b) +} +func (m *BackupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BackupRequest.Marshal(b, m, deterministic) +} +func (dst *BackupRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_BackupRequest.Merge(dst, src) +} +func (m *BackupRequest) XXX_Size() int { + return xxx_messageInfo_BackupRequest.Size(m) +} +func (m *BackupRequest) XXX_DiscardUnknown() { + xxx_messageInfo_BackupRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_BackupRequest proto.InternalMessageInfo func (m *BackupRequest) GetConcurrency() int64 { if m != nil { @@ -1629,13 +3450,35 @@ func (m *BackupRequest) GetConcurrency() int64 { } type BackupResponse struct { - Event *logutil.Event `protobuf:"bytes,1,opt,name=event" json:"event,omitempty"` + Event *logutil.Event `protobuf:"bytes,1,opt,name=event" json:"event,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *BackupResponse) Reset() { *m = BackupResponse{} } +func (m *BackupResponse) String() string { return proto.CompactTextString(m) } +func (*BackupResponse) ProtoMessage() {} +func (*BackupResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{88} +} +func (m *BackupResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BackupResponse.Unmarshal(m, b) +} +func (m *BackupResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BackupResponse.Marshal(b, m, deterministic) +} +func (dst *BackupResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_BackupResponse.Merge(dst, src) +} +func (m *BackupResponse) XXX_Size() int { + return xxx_messageInfo_BackupResponse.Size(m) +} +func (m *BackupResponse) XXX_DiscardUnknown() { + xxx_messageInfo_BackupResponse.DiscardUnknown(m) } -func (m *BackupResponse) Reset() { *m = BackupResponse{} } -func (m *BackupResponse) String() string { return proto.CompactTextString(m) } -func (*BackupResponse) ProtoMessage() {} -func (*BackupResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{88} } +var xxx_messageInfo_BackupResponse proto.InternalMessageInfo func (m *BackupResponse) GetEvent() *logutil.Event { if m != nil { @@ -1645,21 +3488,65 @@ func (m *BackupResponse) GetEvent() *logutil.Event { } type RestoreFromBackupRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RestoreFromBackupRequest) Reset() { *m = RestoreFromBackupRequest{} } +func (m *RestoreFromBackupRequest) String() string { return proto.CompactTextString(m) } +func (*RestoreFromBackupRequest) ProtoMessage() {} +func (*RestoreFromBackupRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{89} +} +func (m *RestoreFromBackupRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RestoreFromBackupRequest.Unmarshal(m, b) +} +func (m *RestoreFromBackupRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RestoreFromBackupRequest.Marshal(b, m, deterministic) +} +func (dst *RestoreFromBackupRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_RestoreFromBackupRequest.Merge(dst, src) +} +func (m *RestoreFromBackupRequest) XXX_Size() int { + return xxx_messageInfo_RestoreFromBackupRequest.Size(m) +} +func (m *RestoreFromBackupRequest) XXX_DiscardUnknown() { + xxx_messageInfo_RestoreFromBackupRequest.DiscardUnknown(m) } -func (m *RestoreFromBackupRequest) Reset() { *m = RestoreFromBackupRequest{} } -func (m *RestoreFromBackupRequest) String() string { return proto.CompactTextString(m) } -func (*RestoreFromBackupRequest) ProtoMessage() {} -func (*RestoreFromBackupRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{89} } +var xxx_messageInfo_RestoreFromBackupRequest proto.InternalMessageInfo type RestoreFromBackupResponse struct { - Event *logutil.Event `protobuf:"bytes,1,opt,name=event" json:"event,omitempty"` + Event *logutil.Event `protobuf:"bytes,1,opt,name=event" json:"event,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RestoreFromBackupResponse) Reset() { *m = RestoreFromBackupResponse{} } +func (m *RestoreFromBackupResponse) String() string { return proto.CompactTextString(m) } +func (*RestoreFromBackupResponse) ProtoMessage() {} +func (*RestoreFromBackupResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_tabletmanagerdata_87488b4d5ae092d8, []int{90} +} +func (m *RestoreFromBackupResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RestoreFromBackupResponse.Unmarshal(m, b) +} +func (m *RestoreFromBackupResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RestoreFromBackupResponse.Marshal(b, m, deterministic) +} +func (dst *RestoreFromBackupResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_RestoreFromBackupResponse.Merge(dst, src) +} +func (m *RestoreFromBackupResponse) XXX_Size() int { + return xxx_messageInfo_RestoreFromBackupResponse.Size(m) +} +func (m *RestoreFromBackupResponse) XXX_DiscardUnknown() { + xxx_messageInfo_RestoreFromBackupResponse.DiscardUnknown(m) } -func (m *RestoreFromBackupResponse) Reset() { *m = RestoreFromBackupResponse{} } -func (m *RestoreFromBackupResponse) String() string { return proto.CompactTextString(m) } -func (*RestoreFromBackupResponse) ProtoMessage() {} -func (*RestoreFromBackupResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{90} } +var xxx_messageInfo_RestoreFromBackupResponse proto.InternalMessageInfo func (m *RestoreFromBackupResponse) GetEvent() *logutil.Event { if m != nil { @@ -1673,7 +3560,9 @@ func init() { proto.RegisterType((*SchemaDefinition)(nil), "tabletmanagerdata.SchemaDefinition") proto.RegisterType((*SchemaChangeResult)(nil), "tabletmanagerdata.SchemaChangeResult") proto.RegisterType((*UserPermission)(nil), "tabletmanagerdata.UserPermission") + proto.RegisterMapType((map[string]string)(nil), "tabletmanagerdata.UserPermission.PrivilegesEntry") proto.RegisterType((*DbPermission)(nil), "tabletmanagerdata.DbPermission") + proto.RegisterMapType((map[string]string)(nil), "tabletmanagerdata.DbPermission.PrivilegesEntry") proto.RegisterType((*Permissions)(nil), "tabletmanagerdata.Permissions") proto.RegisterType((*BlpPosition)(nil), "tabletmanagerdata.BlpPosition") proto.RegisterType((*PingRequest)(nil), "tabletmanagerdata.PingRequest") @@ -1681,6 +3570,7 @@ func init() { proto.RegisterType((*SleepRequest)(nil), "tabletmanagerdata.SleepRequest") proto.RegisterType((*SleepResponse)(nil), "tabletmanagerdata.SleepResponse") proto.RegisterType((*ExecuteHookRequest)(nil), "tabletmanagerdata.ExecuteHookRequest") + proto.RegisterMapType((map[string]string)(nil), "tabletmanagerdata.ExecuteHookRequest.ExtraEnvEntry") proto.RegisterType((*ExecuteHookResponse)(nil), "tabletmanagerdata.ExecuteHookResponse") proto.RegisterType((*GetSchemaRequest)(nil), "tabletmanagerdata.GetSchemaRequest") proto.RegisterType((*GetSchemaResponse)(nil), "tabletmanagerdata.GetSchemaResponse") @@ -1762,137 +3652,140 @@ func init() { proto.RegisterType((*RestoreFromBackupResponse)(nil), "tabletmanagerdata.RestoreFromBackupResponse") } -func init() { proto.RegisterFile("tabletmanagerdata.proto", fileDescriptor0) } +func init() { + proto.RegisterFile("tabletmanagerdata.proto", fileDescriptor_tabletmanagerdata_87488b4d5ae092d8) +} -var fileDescriptor0 = []byte{ - // 2049 bytes of a gzipped FileDescriptorProto +var fileDescriptor_tabletmanagerdata_87488b4d5ae092d8 = []byte{ + // 2074 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x59, 0x5b, 0x6f, 0x1b, 0xc7, - 0xf5, 0x07, 0x45, 0x49, 0x96, 0x0e, 0x2f, 0x22, 0x97, 0xba, 0x50, 0x0a, 0xfe, 0xba, 0xac, 0x9d, - 0x7f, 0x54, 0x17, 0x55, 0x6a, 0x25, 0x0d, 0x82, 0x04, 0x29, 0xaa, 0xab, 0xed, 0xc4, 0x89, 0x95, - 0x95, 0x2f, 0x45, 0x5f, 0x16, 0x43, 0xee, 0x11, 0xb9, 0xd0, 0x72, 0x77, 0x3d, 0x33, 0x2b, 0x89, - 0x40, 0xd1, 0x8f, 0xd0, 0xb7, 0xbe, 0xf5, 0xad, 0x40, 0xfb, 0xde, 0x0f, 0x93, 0xa2, 0x9f, 0xa4, - 0x0f, 0x7d, 0x29, 0xe6, 0x46, 0xce, 0x92, 0x94, 0x4d, 0x19, 0x2e, 0xd0, 0x17, 0x81, 0xe7, 0x37, - 0xe7, 0x3e, 0x67, 0xce, 0x39, 0x0b, 0xc1, 0x1a, 0x27, 0xad, 0x08, 0x79, 0x8f, 0xc4, 0xa4, 0x83, - 0x34, 0x20, 0x9c, 0xec, 0xa5, 0x34, 0xe1, 0x89, 0x53, 0x1f, 0x3b, 0xd8, 0x28, 0xbd, 0xc9, 0x90, - 0xf6, 0xd5, 0xf9, 0x46, 0x95, 0x27, 0x69, 0x32, 0xe4, 0xdf, 0x58, 0xa1, 0x98, 0x46, 0x61, 0x9b, - 0xf0, 0x30, 0x89, 0x2d, 0xb8, 0x12, 0x25, 0x9d, 0x8c, 0x87, 0x91, 0x22, 0xdd, 0x7f, 0x16, 0x60, - 0xe9, 0x85, 0x50, 0x7c, 0x8c, 0x17, 0x61, 0x1c, 0x0a, 0x66, 0xc7, 0x81, 0xd9, 0x98, 0xf4, 0xb0, - 0x59, 0xd8, 0x2e, 0xec, 0x2e, 0x7a, 0xf2, 0xb7, 0xb3, 0x0a, 0xf3, 0xac, 0xdd, 0xc5, 0x1e, 0x69, - 0xce, 0x48, 0x54, 0x53, 0x4e, 0x13, 0xee, 0xb5, 0x93, 0x28, 0xeb, 0xc5, 0xac, 0x59, 0xdc, 0x2e, - 0xee, 0x2e, 0x7a, 0x86, 0x74, 0xf6, 0xa0, 0x91, 0xd2, 0xb0, 0x47, 0x68, 0xdf, 0xbf, 0xc4, 0xbe, - 0x6f, 0xb8, 0x66, 0x25, 0x57, 0x5d, 0x1f, 0x7d, 0x87, 0xfd, 0x23, 0xcd, 0xef, 0xc0, 0x2c, 0xef, - 0xa7, 0xd8, 0x9c, 0x53, 0x56, 0xc5, 0x6f, 0x67, 0x0b, 0x4a, 0xc2, 0x75, 0x3f, 0xc2, 0xb8, 0xc3, - 0xbb, 0xcd, 0xf9, 0xed, 0xc2, 0xee, 0xac, 0x07, 0x02, 0x7a, 0x26, 0x11, 0xe7, 0x23, 0x58, 0xa4, - 0xc9, 0xb5, 0xdf, 0x4e, 0xb2, 0x98, 0x37, 0xef, 0xc9, 0xe3, 0x05, 0x9a, 0x5c, 0x1f, 0x09, 0xda, - 0xfd, 0x6b, 0x01, 0x6a, 0xe7, 0xd2, 0x4d, 0x2b, 0xb8, 0x4f, 0x60, 0x49, 0xc8, 0xb7, 0x08, 0x43, - 0x5f, 0x47, 0xa4, 0xe2, 0xac, 0x1a, 0x58, 0x89, 0x38, 0xcf, 0x41, 0x65, 0xdc, 0x0f, 0x06, 0xc2, - 0xac, 0x39, 0xb3, 0x5d, 0xdc, 0x2d, 0xed, 0xbb, 0x7b, 0xe3, 0x97, 0x34, 0x92, 0x44, 0xaf, 0xc6, - 0xf3, 0x00, 0x13, 0xa9, 0xba, 0x42, 0xca, 0xc2, 0x24, 0x6e, 0x16, 0xa5, 0x45, 0x43, 0x0a, 0x47, - 0x1d, 0x65, 0xf5, 0xa8, 0x4b, 0xe2, 0x0e, 0x7a, 0xc8, 0xb2, 0x88, 0x3b, 0x4f, 0xa0, 0xd2, 0xc2, - 0x8b, 0x84, 0xe6, 0x1c, 0x2d, 0xed, 0xdf, 0x9f, 0x60, 0x7d, 0x34, 0x4c, 0xaf, 0xac, 0x24, 0x75, - 0x2c, 0xa7, 0x50, 0x26, 0x17, 0x1c, 0xa9, 0x6f, 0xdd, 0xe1, 0x94, 0x8a, 0x4a, 0x52, 0x50, 0xc1, - 0xee, 0xbf, 0x0a, 0x50, 0x7d, 0xc9, 0x90, 0x9e, 0x21, 0xed, 0x85, 0x8c, 0xe9, 0x62, 0xe9, 0x26, - 0x8c, 0x9b, 0x62, 0x11, 0xbf, 0x05, 0x96, 0x31, 0xa4, 0xba, 0x54, 0xe4, 0x6f, 0xe7, 0xe7, 0x50, - 0x4f, 0x09, 0x63, 0xd7, 0x09, 0x0d, 0xfc, 0x76, 0x17, 0xdb, 0x97, 0x2c, 0xeb, 0xc9, 0x3c, 0xcc, - 0x7a, 0x35, 0x73, 0x70, 0xa4, 0x71, 0xe7, 0x47, 0x80, 0x94, 0x86, 0x57, 0x61, 0x84, 0x1d, 0x54, - 0x25, 0x53, 0xda, 0x7f, 0x34, 0xc1, 0xdb, 0xbc, 0x2f, 0x7b, 0x67, 0x03, 0x99, 0x93, 0x98, 0xd3, - 0xbe, 0x67, 0x29, 0xd9, 0xf8, 0x06, 0x96, 0x46, 0x8e, 0x9d, 0x1a, 0x14, 0x2f, 0xb1, 0xaf, 0x3d, - 0x17, 0x3f, 0x9d, 0x65, 0x98, 0xbb, 0x22, 0x51, 0x86, 0xda, 0x73, 0x45, 0x7c, 0x35, 0xf3, 0x65, - 0xc1, 0xfd, 0xa9, 0x00, 0xe5, 0xe3, 0xd6, 0x3b, 0xe2, 0xae, 0xc2, 0x4c, 0xd0, 0xd2, 0xb2, 0x33, - 0x41, 0x6b, 0x90, 0x87, 0xa2, 0x95, 0x87, 0xe7, 0x13, 0x42, 0xfb, 0x74, 0x42, 0x68, 0xb6, 0xb1, - 0xff, 0x66, 0x60, 0x7f, 0x29, 0x40, 0x69, 0x68, 0x89, 0x39, 0xcf, 0xa0, 0x26, 0xfc, 0xf4, 0xd3, - 0x21, 0xd6, 0x2c, 0x48, 0x2f, 0x77, 0xde, 0x79, 0x01, 0xde, 0x52, 0x96, 0xa3, 0x99, 0x73, 0x0a, - 0xd5, 0xa0, 0x95, 0xd3, 0xa5, 0x5e, 0xd0, 0xd6, 0x3b, 0x22, 0xf6, 0x2a, 0x81, 0x45, 0x31, 0xf7, - 0x6b, 0x28, 0x1d, 0x46, 0xe9, 0x59, 0xc2, 0xd4, 0x23, 0xae, 0x41, 0x31, 0x0b, 0x03, 0x19, 0x60, - 0xc5, 0x13, 0x3f, 0x9d, 0x0d, 0x58, 0x48, 0xf5, 0xa9, 0x8e, 0x71, 0x40, 0xbb, 0x9f, 0x40, 0xe9, - 0x2c, 0x8c, 0x3b, 0x1e, 0xbe, 0xc9, 0x90, 0x71, 0xf1, 0x0e, 0x53, 0xd2, 0x8f, 0x12, 0x12, 0xe8, - 0x0c, 0x19, 0xd2, 0xdd, 0x85, 0xb2, 0x62, 0x64, 0x69, 0x12, 0x33, 0x7c, 0x0b, 0xe7, 0x43, 0x28, - 0x9f, 0x47, 0x88, 0xa9, 0xd1, 0xb9, 0x01, 0x0b, 0x41, 0x46, 0x65, 0xaf, 0x95, 0xac, 0x45, 0x6f, - 0x40, 0xbb, 0x4b, 0x50, 0xd1, 0xbc, 0x4a, 0xad, 0xfb, 0x8f, 0x02, 0x38, 0x27, 0x37, 0xd8, 0xce, - 0x38, 0x3e, 0x49, 0x92, 0x4b, 0xa3, 0x63, 0x52, 0xdb, 0xdd, 0x04, 0x48, 0x09, 0x25, 0x3d, 0xe4, - 0x48, 0x55, 0xee, 0x16, 0x3d, 0x0b, 0x71, 0xce, 0x60, 0x11, 0x6f, 0x38, 0x25, 0x3e, 0xc6, 0x57, - 0xb2, 0x01, 0x97, 0xf6, 0x3f, 0x9b, 0x90, 0xda, 0x71, 0x6b, 0x7b, 0x27, 0x42, 0xec, 0x24, 0xbe, - 0x52, 0x05, 0xb5, 0x80, 0x9a, 0xdc, 0xf8, 0x1a, 0x2a, 0xb9, 0xa3, 0x3b, 0x15, 0xd3, 0x05, 0x34, - 0x72, 0xa6, 0x74, 0x1e, 0xb7, 0xa0, 0x84, 0x37, 0x21, 0xf7, 0x19, 0x27, 0x3c, 0x63, 0x3a, 0x41, - 0x20, 0xa0, 0x73, 0x89, 0xc8, 0xe9, 0xc2, 0x83, 0x24, 0xe3, 0x83, 0xe9, 0x22, 0x29, 0x8d, 0x23, - 0x35, 0x4f, 0x48, 0x53, 0xee, 0x15, 0xd4, 0x1e, 0x23, 0x57, 0x4d, 0xc9, 0xa4, 0x6f, 0x15, 0xe6, - 0x65, 0xe0, 0xaa, 0x5c, 0x17, 0x3d, 0x4d, 0x39, 0xf7, 0xa1, 0x12, 0xc6, 0xed, 0x28, 0x0b, 0xd0, - 0xbf, 0x0a, 0xf1, 0x9a, 0x49, 0x13, 0x0b, 0x5e, 0x59, 0x83, 0xaf, 0x04, 0xe6, 0x7c, 0x0c, 0x55, - 0xbc, 0x51, 0x4c, 0x5a, 0x89, 0x9a, 0x66, 0x15, 0x8d, 0xca, 0xee, 0xce, 0x5c, 0x84, 0xba, 0x65, - 0x57, 0x47, 0x77, 0x06, 0x75, 0xd5, 0x56, 0xad, 0x49, 0x71, 0x97, 0x56, 0x5d, 0x63, 0x23, 0x88, - 0xbb, 0x06, 0x2b, 0x8f, 0x91, 0x5b, 0xf5, 0xaf, 0x63, 0x74, 0x7f, 0x07, 0xab, 0xa3, 0x07, 0xda, - 0x89, 0xdf, 0x40, 0x29, 0xff, 0x62, 0x85, 0xf9, 0xcd, 0x09, 0xe6, 0x6d, 0x61, 0x5b, 0xc4, 0x5d, - 0x06, 0xe7, 0x1c, 0xb9, 0x87, 0x24, 0x78, 0x1e, 0x47, 0x7d, 0x63, 0x71, 0x05, 0x1a, 0x39, 0x54, - 0x97, 0xf0, 0x10, 0x7e, 0x4d, 0x43, 0x8e, 0x86, 0x7b, 0x15, 0x96, 0xf3, 0xb0, 0x66, 0xff, 0x16, - 0xea, 0x6a, 0xb2, 0xbd, 0xe8, 0xa7, 0x86, 0xd9, 0xf9, 0x15, 0x94, 0x94, 0x7b, 0xbe, 0x9c, 0xfb, - 0xc2, 0xe5, 0xea, 0xfe, 0xf2, 0xde, 0x60, 0x8d, 0x91, 0x39, 0xe7, 0x52, 0x02, 0xf8, 0xe0, 0xb7, - 0xf0, 0xd3, 0xd6, 0x35, 0x74, 0xc8, 0xc3, 0x0b, 0x8a, 0xac, 0x2b, 0x4a, 0xca, 0x76, 0x28, 0x0f, - 0x6b, 0xf6, 0x35, 0x58, 0xf1, 0xb2, 0xf8, 0x09, 0x92, 0x88, 0x77, 0xe5, 0xd4, 0x31, 0x02, 0x4d, - 0x58, 0x1d, 0x3d, 0xd0, 0x22, 0x9f, 0x43, 0xf3, 0x69, 0x27, 0x4e, 0x28, 0xaa, 0xc3, 0x13, 0x4a, - 0x13, 0x9a, 0x6b, 0x29, 0x9c, 0x23, 0x8d, 0x87, 0x8d, 0x42, 0x92, 0xee, 0x47, 0xb0, 0x3e, 0x41, - 0x4a, 0xab, 0xfc, 0x4a, 0x38, 0x2d, 0xfa, 0x49, 0xbe, 0x92, 0xef, 0x43, 0xe5, 0x9a, 0x84, 0xdc, - 0x1f, 0x34, 0x34, 0xa5, 0xb3, 0x2c, 0x40, 0xd3, 0x02, 0x55, 0x64, 0xb6, 0xac, 0xd6, 0xb9, 0x0f, - 0xab, 0x67, 0x14, 0x2f, 0xa2, 0xb0, 0xd3, 0x1d, 0x79, 0x20, 0x62, 0x55, 0x93, 0x89, 0x33, 0x2f, - 0xc4, 0x90, 0x6e, 0x07, 0xd6, 0xc6, 0x64, 0x74, 0x5d, 0x3d, 0x83, 0xaa, 0xe2, 0xf2, 0xa9, 0x5c, - 0x4a, 0xcc, 0x30, 0xf8, 0xf8, 0xd6, 0xca, 0xb6, 0x57, 0x18, 0xaf, 0xd2, 0xb6, 0x28, 0xe6, 0xfe, - 0xbb, 0x00, 0xce, 0x41, 0x9a, 0x46, 0xfd, 0xbc, 0x67, 0x35, 0x28, 0xb2, 0x37, 0x91, 0x69, 0x31, - 0xec, 0x4d, 0x24, 0x5a, 0xcc, 0x45, 0x42, 0xdb, 0xa8, 0x1f, 0xab, 0x22, 0xc4, 0x0e, 0x41, 0xa2, - 0x28, 0xb9, 0xf6, 0xad, 0xd5, 0x56, 0x76, 0x86, 0x05, 0xaf, 0x26, 0x0f, 0xbc, 0x21, 0x3e, 0xbe, - 0x3d, 0xcd, 0x7e, 0xa8, 0xed, 0x69, 0xee, 0x3d, 0xb7, 0xa7, 0xbf, 0x15, 0xa0, 0x91, 0x8b, 0x5e, - 0xe7, 0xf8, 0x7f, 0x6f, 0xcf, 0xfb, 0x7b, 0x01, 0x9a, 0xba, 0x91, 0x9f, 0x22, 0x6f, 0x77, 0x0f, - 0xd8, 0x71, 0x6b, 0x70, 0x5b, 0xcb, 0x30, 0x27, 0xbf, 0x3b, 0xa4, 0x9b, 0x65, 0x4f, 0x11, 0xce, - 0x1a, 0xdc, 0x0b, 0x5a, 0xbe, 0x1c, 0x60, 0xba, 0x87, 0x07, 0xad, 0x1f, 0xc4, 0x08, 0x5b, 0x87, - 0x85, 0x1e, 0xb9, 0xf1, 0x69, 0x72, 0xcd, 0xf4, 0xbe, 0x77, 0xaf, 0x47, 0x6e, 0xbc, 0xe4, 0x9a, - 0xc9, 0x5d, 0x3c, 0x64, 0x72, 0xc9, 0x6e, 0x85, 0x71, 0x94, 0x74, 0x98, 0xbc, 0xa4, 0x05, 0xaf, - 0xaa, 0xe1, 0x43, 0x85, 0x8a, 0x17, 0x41, 0x65, 0xb1, 0xdb, 0x57, 0xb0, 0xe0, 0x95, 0xa9, 0xf5, - 0x02, 0xdc, 0xc7, 0xb0, 0x3e, 0xc1, 0x67, 0x9d, 0xe3, 0x87, 0x30, 0xaf, 0x0a, 0x58, 0x27, 0xd7, - 0xd9, 0x53, 0xdf, 0x4e, 0x3f, 0x8a, 0xbf, 0xba, 0x58, 0x35, 0x87, 0xfb, 0xc7, 0x02, 0xfc, 0x5f, - 0x5e, 0xd3, 0x41, 0x14, 0x89, 0x1d, 0x8b, 0x7d, 0xf8, 0x14, 0x8c, 0x45, 0x36, 0x3b, 0x21, 0xb2, - 0x67, 0xb0, 0x79, 0x9b, 0x3f, 0xef, 0x11, 0xde, 0x77, 0xa3, 0x77, 0x7b, 0x90, 0xa6, 0x6f, 0x0f, - 0xcc, 0xf6, 0x7f, 0x26, 0xe7, 0xff, 0x78, 0xd2, 0xa5, 0xb2, 0xf7, 0xf0, 0x4a, 0x8c, 0x9f, 0x88, - 0x5c, 0xa1, 0xda, 0x08, 0x4c, 0x3b, 0x3e, 0x85, 0x46, 0x0e, 0xd5, 0x8a, 0x3f, 0x15, 0x7b, 0xc1, - 0x60, 0x97, 0x28, 0xed, 0xaf, 0xed, 0x8d, 0x7e, 0xec, 0x6a, 0x01, 0xcd, 0x26, 0xfa, 0xfd, 0xf7, - 0x84, 0x71, 0xa4, 0xa6, 0x7f, 0x1a, 0x03, 0x9f, 0xc3, 0xea, 0xe8, 0x81, 0xb6, 0x61, 0x6f, 0x94, - 0x85, 0x91, 0x8d, 0xd2, 0x81, 0xda, 0x39, 0x4f, 0x52, 0xe9, 0x9a, 0xd1, 0xd4, 0x80, 0xba, 0x85, - 0xe9, 0x6e, 0xfc, 0x5b, 0x58, 0x1b, 0x80, 0xdf, 0x87, 0x71, 0xd8, 0xcb, 0x7a, 0xd6, 0xca, 0x78, - 0x9b, 0x7e, 0x67, 0x07, 0x64, 0xb3, 0xf7, 0x79, 0xd8, 0x43, 0xb3, 0x15, 0x15, 0xbd, 0x92, 0xc0, - 0x5e, 0x28, 0xc8, 0xfd, 0x02, 0x9a, 0xe3, 0x9a, 0xa7, 0x70, 0x5d, 0xba, 0x49, 0x28, 0xcf, 0xf9, - 0x2e, 0x92, 0x6f, 0x81, 0xda, 0xf9, 0x63, 0xd8, 0x51, 0x33, 0xf8, 0xe4, 0x46, 0xcc, 0x32, 0x12, - 0x89, 0x05, 0x20, 0x25, 0x14, 0x63, 0x8e, 0x81, 0x09, 0x43, 0xee, 0x76, 0xea, 0xd8, 0x0f, 0xcd, - 0x9e, 0x0c, 0x06, 0x7a, 0x1a, 0xb8, 0x0f, 0xc0, 0x7d, 0x9b, 0x16, 0x6d, 0x6b, 0x1b, 0x36, 0x47, - 0xb9, 0x4e, 0x22, 0x6c, 0x0f, 0x0d, 0xb9, 0x3b, 0xb0, 0x75, 0x2b, 0x87, 0x56, 0xe2, 0xa8, 0xb5, - 0x50, 0x04, 0x31, 0xa8, 0xa0, 0x9f, 0xa9, 0x95, 0x4d, 0x63, 0x3a, 0x41, 0xcb, 0x30, 0x47, 0x82, - 0x80, 0x9a, 0x41, 0xa8, 0x08, 0xf7, 0x0f, 0xb0, 0xfa, 0x9a, 0x84, 0xdc, 0xfa, 0xd0, 0x30, 0x41, - 0x1e, 0x40, 0xb9, 0x15, 0xa5, 0xf9, 0x81, 0x3c, 0x79, 0xbd, 0xb2, 0x85, 0x4b, 0x2d, 0xeb, 0x93, - 0x65, 0x8a, 0x2b, 0x5d, 0x87, 0xb5, 0x31, 0xfb, 0x3a, 0xb2, 0x1a, 0x54, 0xc5, 0x6d, 0x1f, 0x46, - 0xe6, 0xa5, 0xba, 0xaf, 0x60, 0x69, 0x80, 0xe8, 0xa8, 0x8e, 0xa0, 0x62, 0x7b, 0x69, 0x46, 0xf5, - 0xbb, 0xdc, 0x2c, 0x5b, 0x6e, 0x32, 0xb7, 0x2e, 0xf4, 0x12, 0xca, 0x2d, 0x53, 0xb2, 0xda, 0x0d, - 0xa4, 0x1d, 0xfa, 0x3d, 0x38, 0x5e, 0x16, 0x1f, 0x46, 0xe9, 0xcb, 0x98, 0x87, 0x91, 0xc9, 0xd3, - 0x87, 0xf0, 0x60, 0x9a, 0x4c, 0x3d, 0x82, 0x46, 0xce, 0xfa, 0x14, 0x75, 0xbf, 0x0e, 0x6b, 0x1e, - 0x32, 0xb1, 0x9c, 0x0e, 0x1a, 0x85, 0x89, 0x6f, 0x03, 0x9a, 0xe3, 0x47, 0x3a, 0xce, 0x06, 0xd4, - 0x9f, 0xc6, 0x21, 0x57, 0x3d, 0xc2, 0x08, 0xfc, 0x12, 0x1c, 0x1b, 0x9c, 0xc2, 0xfa, 0x4f, 0x05, - 0xd8, 0x3c, 0x4b, 0xd2, 0x2c, 0x92, 0x4b, 0xa8, 0xaa, 0xfe, 0x6f, 0x93, 0x4c, 0x94, 0xb1, 0xc9, - 0xdd, 0xff, 0xc3, 0x92, 0x88, 0xd8, 0x6f, 0x53, 0x24, 0x1c, 0x03, 0x3f, 0x36, 0x1f, 0x4a, 0x15, - 0x01, 0x1f, 0x29, 0xf4, 0x07, 0x26, 0x1e, 0x1c, 0x69, 0x0b, 0xa5, 0xf6, 0xa4, 0x01, 0x05, 0xc9, - 0x69, 0xf3, 0x25, 0x94, 0x7b, 0xd2, 0x33, 0x9f, 0x44, 0x21, 0x51, 0x13, 0xa7, 0xb4, 0xbf, 0x32, - 0xba, 0x58, 0x1f, 0x88, 0x43, 0xaf, 0xa4, 0x58, 0x25, 0xe1, 0x3c, 0x82, 0x65, 0xab, 0x8f, 0x0e, - 0xcb, 0x7d, 0x56, 0xda, 0x68, 0x58, 0x67, 0x83, 0x35, 0x74, 0x07, 0xb6, 0x6e, 0x8d, 0x4b, 0xa7, - 0xf0, 0xcf, 0x05, 0xa8, 0x89, 0x74, 0xd9, 0x1d, 0xc7, 0xf9, 0x05, 0xcc, 0x2b, 0x6e, 0xfd, 0x96, - 0x6e, 0x71, 0x4f, 0x33, 0xdd, 0xea, 0xd9, 0xcc, 0xad, 0x9e, 0x4d, 0xca, 0x67, 0x71, 0x42, 0x3e, - 0xcd, 0x0d, 0xe7, 0x5b, 0xdf, 0x0a, 0x34, 0x8e, 0xb1, 0x97, 0x70, 0xcc, 0x5f, 0xfc, 0x3e, 0x2c, - 0xe7, 0xe1, 0x29, 0xae, 0xfe, 0x1b, 0xd8, 0x3a, 0xa3, 0x89, 0x10, 0x92, 0x26, 0x5e, 0x77, 0x31, - 0x3e, 0x22, 0x59, 0xa7, 0xcb, 0x5f, 0xa6, 0x53, 0x8c, 0x02, 0xf7, 0xd7, 0xb0, 0x7d, 0xbb, 0xf8, - 0x74, 0x75, 0xaf, 0x04, 0x09, 0xd3, 0x7a, 0x02, 0xab, 0xee, 0xc7, 0x8f, 0x74, 0x02, 0xfe, 0x54, - 0x80, 0xda, 0x39, 0xe6, 0xeb, 0xfe, 0xae, 0x97, 0x36, 0xe1, 0x06, 0x66, 0x26, 0x55, 0xf4, 0x43, - 0xa8, 0xcb, 0xfd, 0xde, 0x67, 0xa2, 0xcb, 0xf8, 0x4c, 0xf8, 0xa4, 0xd7, 0xfa, 0x25, 0x79, 0x30, - 0x9c, 0x4d, 0x72, 0x7c, 0xe1, 0xc8, 0xcb, 0x73, 0x9f, 0x0e, 0x03, 0xf1, 0x50, 0x2a, 0x19, 0xce, - 0xa7, 0xbb, 0xf9, 0x2c, 0xbe, 0xd7, 0x26, 0xa8, 0xd2, 0x76, 0x1e, 0x80, 0x2b, 0x7a, 0xae, 0xd5, - 0x27, 0x0e, 0xe2, 0x40, 0x4c, 0x97, 0xdc, 0xce, 0xf2, 0x0a, 0xee, 0xbf, 0x95, 0xeb, 0x7d, 0x77, - 0x98, 0x15, 0x68, 0xd8, 0x95, 0x60, 0xd5, 0x64, 0x1e, 0x9e, 0xa2, 0x28, 0x1e, 0x41, 0xe5, 0x90, - 0xb4, 0x2f, 0xb3, 0x41, 0x05, 0x6e, 0x43, 0xa9, 0x9d, 0xc4, 0xed, 0x8c, 0x52, 0x8c, 0xdb, 0x7d, - 0xdd, 0x78, 0x6c, 0xc8, 0xfd, 0x02, 0xaa, 0x46, 0x44, 0x1b, 0x78, 0x00, 0x73, 0x78, 0x35, 0x4c, - 0x6c, 0x75, 0xcf, 0xfc, 0x67, 0xe1, 0x44, 0xa0, 0x9e, 0x3a, 0xd4, 0xcd, 0x95, 0x27, 0x14, 0x4f, - 0x69, 0xd2, 0xcb, 0x59, 0x75, 0x0f, 0x60, 0x7d, 0xc2, 0xd9, 0x5d, 0xd4, 0xb7, 0xe6, 0xe5, 0xbf, - 0x31, 0x3e, 0xfb, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe5, 0x67, 0xfd, 0x4a, 0x37, 0x19, 0x00, - 0x00, + 0xf5, 0xc7, 0x8a, 0x92, 0x2c, 0x9d, 0x25, 0x29, 0x72, 0xa9, 0x0b, 0xa5, 0xe0, 0xaf, 0xcb, 0xda, + 0xf9, 0x47, 0x75, 0x51, 0x2a, 0x56, 0xd2, 0x20, 0x48, 0x90, 0xa2, 0xba, 0xda, 0x4e, 0x9c, 0x58, + 0x59, 0xf9, 0x52, 0xe4, 0x65, 0x31, 0xe4, 0x8e, 0xc8, 0x85, 0x96, 0xbb, 0xeb, 0x99, 0x59, 0x4a, + 0x04, 0x8a, 0x7e, 0x84, 0xbe, 0xf5, 0xad, 0x6f, 0x05, 0xda, 0xf7, 0x7e, 0x98, 0x14, 0xfd, 0x24, + 0x7d, 0xe8, 0x4b, 0x31, 0x37, 0x72, 0x96, 0x17, 0x9b, 0x32, 0x5c, 0xa0, 0x2f, 0xc2, 0xce, 0xef, + 0xdc, 0xcf, 0x9c, 0x39, 0xe7, 0x10, 0x82, 0x0d, 0x86, 0x9a, 0x11, 0x66, 0x5d, 0x14, 0xa3, 0x36, + 0x26, 0x01, 0x62, 0xa8, 0x91, 0x92, 0x84, 0x25, 0x4e, 0x75, 0x8c, 0xb0, 0x65, 0xbf, 0xc9, 0x30, + 0xe9, 0x4b, 0xfa, 0x56, 0x99, 0x25, 0x69, 0x32, 0xe4, 0xdf, 0x5a, 0x23, 0x38, 0x8d, 0xc2, 0x16, + 0x62, 0x61, 0x12, 0x1b, 0x70, 0x29, 0x4a, 0xda, 0x19, 0x0b, 0x23, 0x79, 0x74, 0xff, 0x69, 0xc1, + 0xca, 0x0b, 0xae, 0xf8, 0x14, 0x5f, 0x85, 0x71, 0xc8, 0x99, 0x1d, 0x07, 0xe6, 0x63, 0xd4, 0xc5, + 0x75, 0x6b, 0xd7, 0xda, 0x5f, 0xf6, 0xc4, 0xb7, 0xb3, 0x0e, 0x8b, 0xb4, 0xd5, 0xc1, 0x5d, 0x54, + 0x9f, 0x13, 0xa8, 0x3a, 0x39, 0x75, 0xb8, 0xd7, 0x4a, 0xa2, 0xac, 0x1b, 0xd3, 0x7a, 0x61, 0xb7, + 0xb0, 0xbf, 0xec, 0xe9, 0xa3, 0xd3, 0x80, 0x5a, 0x4a, 0xc2, 0x2e, 0x22, 0x7d, 0xff, 0x1a, 0xf7, + 0x7d, 0xcd, 0x35, 0x2f, 0xb8, 0xaa, 0x8a, 0xf4, 0x1d, 0xee, 0x9f, 0x28, 0x7e, 0x07, 0xe6, 0x59, + 0x3f, 0xc5, 0xf5, 0x05, 0x69, 0x95, 0x7f, 0x3b, 0x3b, 0x60, 0x73, 0xd7, 0xfd, 0x08, 0xc7, 0x6d, + 0xd6, 0xa9, 0x2f, 0xee, 0x5a, 0xfb, 0xf3, 0x1e, 0x70, 0xe8, 0x99, 0x40, 0x9c, 0x8f, 0x60, 0x99, + 0x24, 0x37, 0x7e, 0x2b, 0xc9, 0x62, 0x56, 0xbf, 0x27, 0xc8, 0x4b, 0x24, 0xb9, 0x39, 0xe1, 0x67, + 0xf7, 0xaf, 0x16, 0x54, 0x2e, 0x85, 0x9b, 0x46, 0x70, 0x9f, 0xc0, 0x0a, 0x97, 0x6f, 0x22, 0x8a, + 0x7d, 0x15, 0x91, 0x8c, 0xb3, 0xac, 0x61, 0x29, 0xe2, 0x3c, 0x07, 0x99, 0x71, 0x3f, 0x18, 0x08, + 0xd3, 0xfa, 0xdc, 0x6e, 0x61, 0xdf, 0x3e, 0x74, 0x1b, 0xe3, 0x97, 0x34, 0x92, 0x44, 0xaf, 0xc2, + 0xf2, 0x00, 0xe5, 0xa9, 0xea, 0x61, 0x42, 0xc3, 0x24, 0xae, 0x17, 0x84, 0x45, 0x7d, 0xe4, 0x8e, + 0x3a, 0xd2, 0xea, 0x49, 0x07, 0xc5, 0x6d, 0xec, 0x61, 0x9a, 0x45, 0xcc, 0x79, 0x02, 0xa5, 0x26, + 0xbe, 0x4a, 0x48, 0xce, 0x51, 0xfb, 0xf0, 0xfe, 0x04, 0xeb, 0xa3, 0x61, 0x7a, 0x45, 0x29, 0xa9, + 0x62, 0x39, 0x87, 0x22, 0xba, 0x62, 0x98, 0xf8, 0xc6, 0x1d, 0xce, 0xa8, 0xc8, 0x16, 0x82, 0x12, + 0x76, 0xff, 0x65, 0x41, 0xf9, 0x25, 0xc5, 0xe4, 0x02, 0x93, 0x6e, 0x48, 0xa9, 0x2a, 0x96, 0x4e, + 0x42, 0x99, 0x2e, 0x16, 0xfe, 0xcd, 0xb1, 0x8c, 0x62, 0xa2, 0x4a, 0x45, 0x7c, 0x3b, 0xbf, 0x84, + 0x6a, 0x8a, 0x28, 0xbd, 0x49, 0x48, 0xe0, 0xb7, 0x3a, 0xb8, 0x75, 0x4d, 0xb3, 0xae, 0xc8, 0xc3, + 0xbc, 0x57, 0xd1, 0x84, 0x13, 0x85, 0x3b, 0x3f, 0x02, 0xa4, 0x24, 0xec, 0x85, 0x11, 0x6e, 0x63, + 0x59, 0x32, 0xf6, 0xe1, 0xa3, 0x09, 0xde, 0xe6, 0x7d, 0x69, 0x5c, 0x0c, 0x64, 0xce, 0x62, 0x46, + 0xfa, 0x9e, 0xa1, 0x64, 0xeb, 0x1b, 0x58, 0x19, 0x21, 0x3b, 0x15, 0x28, 0x5c, 0xe3, 0xbe, 0xf2, + 0x9c, 0x7f, 0x3a, 0xab, 0xb0, 0xd0, 0x43, 0x51, 0x86, 0x95, 0xe7, 0xf2, 0xf0, 0xd5, 0xdc, 0x97, + 0x96, 0xfb, 0xb3, 0x05, 0xc5, 0xd3, 0xe6, 0x3b, 0xe2, 0x2e, 0xc3, 0x5c, 0xd0, 0x54, 0xb2, 0x73, + 0x41, 0x73, 0x90, 0x87, 0x82, 0x91, 0x87, 0xe7, 0x13, 0x42, 0x3b, 0x98, 0x10, 0x9a, 0x69, 0xec, + 0xbf, 0x19, 0xd8, 0x5f, 0x2c, 0xb0, 0x87, 0x96, 0xa8, 0xf3, 0x0c, 0x2a, 0xdc, 0x4f, 0x3f, 0x1d, + 0x62, 0x75, 0x4b, 0x78, 0xb9, 0xf7, 0xce, 0x0b, 0xf0, 0x56, 0xb2, 0xdc, 0x99, 0x3a, 0xe7, 0x50, + 0x0e, 0x9a, 0x39, 0x5d, 0xf2, 0x05, 0xed, 0xbc, 0x23, 0x62, 0xaf, 0x14, 0x18, 0x27, 0xea, 0x7e, + 0x0d, 0xf6, 0x71, 0x94, 0x5e, 0x24, 0x54, 0x3e, 0xe2, 0x0a, 0x14, 0xb2, 0x30, 0x10, 0x01, 0x96, + 0x3c, 0xfe, 0xe9, 0x6c, 0xc1, 0x52, 0xaa, 0xa8, 0x2a, 0xc6, 0xc1, 0xd9, 0xfd, 0x04, 0xec, 0x8b, + 0x30, 0x6e, 0x7b, 0xf8, 0x4d, 0x86, 0x29, 0xe3, 0xef, 0x30, 0x45, 0xfd, 0x28, 0x41, 0x81, 0xca, + 0x90, 0x3e, 0xba, 0xfb, 0x50, 0x94, 0x8c, 0x34, 0x4d, 0x62, 0x8a, 0xdf, 0xc2, 0xf9, 0x10, 0x8a, + 0x97, 0x11, 0xc6, 0xa9, 0xd6, 0xb9, 0x05, 0x4b, 0x41, 0x46, 0x44, 0xaf, 0x15, 0xac, 0x05, 0x6f, + 0x70, 0x76, 0x57, 0xa0, 0xa4, 0x78, 0xa5, 0x5a, 0xf7, 0x1f, 0x16, 0x38, 0x67, 0xb7, 0xb8, 0x95, + 0x31, 0xfc, 0x24, 0x49, 0xae, 0xb5, 0x8e, 0x49, 0x6d, 0x77, 0x1b, 0x20, 0x45, 0x04, 0x75, 0x31, + 0xc3, 0x44, 0xe6, 0x6e, 0xd9, 0x33, 0x10, 0xe7, 0x02, 0x96, 0xf1, 0x2d, 0x23, 0xc8, 0xc7, 0x71, + 0x4f, 0x34, 0x60, 0xfb, 0xf0, 0xb3, 0x09, 0xa9, 0x1d, 0xb7, 0xd6, 0x38, 0xe3, 0x62, 0x67, 0x71, + 0x4f, 0x16, 0xd4, 0x12, 0x56, 0xc7, 0xad, 0xaf, 0xa1, 0x94, 0x23, 0xdd, 0xa9, 0x98, 0xae, 0xa0, + 0x96, 0x33, 0xa5, 0xf2, 0xb8, 0x03, 0x36, 0xbe, 0x0d, 0x99, 0x4f, 0x19, 0x62, 0x19, 0x55, 0x09, + 0x02, 0x0e, 0x5d, 0x0a, 0x44, 0x4c, 0x17, 0x16, 0x24, 0x19, 0x1b, 0x4c, 0x17, 0x71, 0x52, 0x38, + 0x26, 0xfa, 0x09, 0xa9, 0x93, 0xdb, 0x83, 0xca, 0x63, 0xcc, 0x64, 0x53, 0xd2, 0xe9, 0x5b, 0x87, + 0x45, 0x11, 0xb8, 0x2c, 0xd7, 0x65, 0x4f, 0x9d, 0x9c, 0xfb, 0x50, 0x0a, 0xe3, 0x56, 0x94, 0x05, + 0xd8, 0xef, 0x85, 0xf8, 0x86, 0x0a, 0x13, 0x4b, 0x5e, 0x51, 0x81, 0xaf, 0x38, 0xe6, 0x7c, 0x0c, + 0x65, 0x7c, 0x2b, 0x99, 0x94, 0x12, 0x39, 0xcd, 0x4a, 0x0a, 0x15, 0xdd, 0x9d, 0xba, 0x18, 0xaa, + 0x86, 0x5d, 0x15, 0xdd, 0x05, 0x54, 0x65, 0x5b, 0x35, 0x26, 0xc5, 0x5d, 0x5a, 0x75, 0x85, 0x8e, + 0x20, 0xee, 0x06, 0xac, 0x3d, 0xc6, 0xcc, 0xa8, 0x7f, 0x15, 0xa3, 0xfb, 0x13, 0xac, 0x8f, 0x12, + 0x94, 0x13, 0xbf, 0x05, 0x3b, 0xff, 0x62, 0xb9, 0xf9, 0xed, 0x09, 0xe6, 0x4d, 0x61, 0x53, 0xc4, + 0x5d, 0x05, 0xe7, 0x12, 0x33, 0x0f, 0xa3, 0xe0, 0x79, 0x1c, 0xf5, 0xb5, 0xc5, 0x35, 0xa8, 0xe5, + 0x50, 0x55, 0xc2, 0x43, 0xf8, 0x35, 0x09, 0x19, 0xd6, 0xdc, 0xeb, 0xb0, 0x9a, 0x87, 0x15, 0xfb, + 0xb7, 0x50, 0x95, 0x93, 0xed, 0x45, 0x3f, 0xd5, 0xcc, 0xce, 0xaf, 0xc1, 0x96, 0xee, 0xf9, 0x62, + 0xee, 0x73, 0x97, 0xcb, 0x87, 0xab, 0x8d, 0xc1, 0x1a, 0x23, 0x72, 0xce, 0x84, 0x04, 0xb0, 0xc1, + 0x37, 0xf7, 0xd3, 0xd4, 0x35, 0x74, 0xc8, 0xc3, 0x57, 0x04, 0xd3, 0x0e, 0x2f, 0x29, 0xd3, 0xa1, + 0x3c, 0xac, 0xd8, 0x37, 0x60, 0xcd, 0xcb, 0xe2, 0x27, 0x18, 0x45, 0xac, 0x23, 0xa6, 0x8e, 0x16, + 0xa8, 0xc3, 0xfa, 0x28, 0x41, 0x89, 0x7c, 0x0e, 0xf5, 0xa7, 0xed, 0x38, 0x21, 0x58, 0x12, 0xcf, + 0x08, 0x49, 0x48, 0xae, 0xa5, 0x30, 0x86, 0x49, 0x3c, 0x6c, 0x14, 0xe2, 0xe8, 0x7e, 0x04, 0x9b, + 0x13, 0xa4, 0x94, 0xca, 0xaf, 0xb8, 0xd3, 0xbc, 0x9f, 0xe4, 0x2b, 0xf9, 0x3e, 0x94, 0x6e, 0x50, + 0xc8, 0xfc, 0x41, 0x43, 0x93, 0x3a, 0x8b, 0x1c, 0xd4, 0x2d, 0x50, 0x46, 0x66, 0xca, 0x2a, 0x9d, + 0x87, 0xb0, 0x7e, 0x41, 0xf0, 0x55, 0x14, 0xb6, 0x3b, 0x23, 0x0f, 0x84, 0xaf, 0x6a, 0x22, 0x71, + 0xfa, 0x85, 0xe8, 0xa3, 0xdb, 0x86, 0x8d, 0x31, 0x19, 0x55, 0x57, 0xcf, 0xa0, 0x2c, 0xb9, 0x7c, + 0x22, 0x96, 0x12, 0x3d, 0x0c, 0x3e, 0x9e, 0x5a, 0xd9, 0xe6, 0x0a, 0xe3, 0x95, 0x5a, 0xc6, 0x89, + 0xba, 0xff, 0xb6, 0xc0, 0x39, 0x4a, 0xd3, 0xa8, 0x9f, 0xf7, 0xac, 0x02, 0x05, 0xfa, 0x26, 0xd2, + 0x2d, 0x86, 0xbe, 0x89, 0x78, 0x8b, 0xb9, 0x4a, 0x48, 0x0b, 0xab, 0xc7, 0x2a, 0x0f, 0x7c, 0x87, + 0x40, 0x51, 0x94, 0xdc, 0xf8, 0xc6, 0x6a, 0x2b, 0x3a, 0xc3, 0x92, 0x57, 0x11, 0x04, 0x6f, 0x88, + 0x8f, 0x6f, 0x4f, 0xf3, 0x1f, 0x6a, 0x7b, 0x5a, 0x78, 0xcf, 0xed, 0xe9, 0x6f, 0x16, 0xd4, 0x72, + 0xd1, 0xab, 0x1c, 0xff, 0xef, 0xed, 0x79, 0x7f, 0xb7, 0xa0, 0xae, 0x1a, 0xf9, 0x39, 0x66, 0xad, + 0xce, 0x11, 0x3d, 0x6d, 0x0e, 0x6e, 0x6b, 0x15, 0x16, 0xc4, 0xef, 0x0e, 0xe1, 0x66, 0xd1, 0x93, + 0x07, 0x67, 0x03, 0xee, 0x05, 0x4d, 0x5f, 0x0c, 0x30, 0xd5, 0xc3, 0x83, 0xe6, 0x0f, 0x7c, 0x84, + 0x6d, 0xc2, 0x52, 0x17, 0xdd, 0xfa, 0x24, 0xb9, 0xa1, 0x6a, 0xdf, 0xbb, 0xd7, 0x45, 0xb7, 0x5e, + 0x72, 0x43, 0xc5, 0x2e, 0x1e, 0x52, 0xb1, 0x64, 0x37, 0xc3, 0x38, 0x4a, 0xda, 0x54, 0x5c, 0xd2, + 0x92, 0x57, 0x56, 0xf0, 0xb1, 0x44, 0xf9, 0x8b, 0x20, 0xa2, 0xd8, 0xcd, 0x2b, 0x58, 0xf2, 0x8a, + 0xc4, 0x78, 0x01, 0xee, 0x63, 0xd8, 0x9c, 0xe0, 0xb3, 0xca, 0xf1, 0x43, 0x58, 0x94, 0x05, 0xac, + 0x92, 0xeb, 0x34, 0xe4, 0x6f, 0xa7, 0x1f, 0xf9, 0x5f, 0x55, 0xac, 0x8a, 0xc3, 0xfd, 0xa3, 0x05, + 0xff, 0x97, 0xd7, 0x74, 0x14, 0x45, 0x7c, 0xc7, 0xa2, 0x1f, 0x3e, 0x05, 0x63, 0x91, 0xcd, 0x4f, + 0x88, 0xec, 0x19, 0x6c, 0x4f, 0xf3, 0xe7, 0x3d, 0xc2, 0xfb, 0x6e, 0xf4, 0x6e, 0x8f, 0xd2, 0xf4, + 0xed, 0x81, 0x99, 0xfe, 0xcf, 0xe5, 0xfc, 0x1f, 0x4f, 0xba, 0x50, 0xf6, 0x1e, 0x5e, 0xf1, 0xf1, + 0x13, 0xa1, 0x1e, 0x96, 0x1b, 0x81, 0x6e, 0xc7, 0xe7, 0x50, 0xcb, 0xa1, 0x4a, 0xf1, 0x01, 0xdf, + 0x0b, 0x06, 0xbb, 0x84, 0x7d, 0xb8, 0xd1, 0x18, 0xfd, 0xb1, 0xab, 0x04, 0x14, 0x1b, 0xef, 0xf7, + 0xdf, 0x23, 0xca, 0x30, 0xd1, 0xfd, 0x53, 0x1b, 0xf8, 0x1c, 0xd6, 0x47, 0x09, 0xca, 0x86, 0xb9, + 0x51, 0x5a, 0x23, 0x1b, 0xa5, 0x03, 0x95, 0x4b, 0x96, 0xa4, 0xc2, 0x35, 0xad, 0xa9, 0x06, 0x55, + 0x03, 0x53, 0xdd, 0xf8, 0x77, 0xb0, 0x31, 0x00, 0xbf, 0x0f, 0xe3, 0xb0, 0x9b, 0x75, 0x8d, 0x95, + 0x71, 0x9a, 0x7e, 0x67, 0x0f, 0x44, 0xb3, 0xf7, 0x59, 0xd8, 0xc5, 0x7a, 0x2b, 0x2a, 0x78, 0x36, + 0xc7, 0x5e, 0x48, 0xc8, 0xfd, 0x02, 0xea, 0xe3, 0x9a, 0x67, 0x70, 0x5d, 0xb8, 0x89, 0x08, 0xcb, + 0xf9, 0xce, 0x93, 0x6f, 0x80, 0xca, 0xf9, 0x53, 0xd8, 0x93, 0x33, 0xf8, 0xec, 0x96, 0xcf, 0x32, + 0x14, 0xf1, 0x05, 0x20, 0x45, 0x04, 0xc7, 0x0c, 0x07, 0x3a, 0x0c, 0xb1, 0xdb, 0x49, 0xb2, 0x1f, + 0xea, 0x3d, 0x19, 0x34, 0xf4, 0x34, 0x70, 0x1f, 0x80, 0xfb, 0x36, 0x2d, 0xca, 0xd6, 0x2e, 0x6c, + 0x8f, 0x72, 0x9d, 0x45, 0xb8, 0x35, 0x34, 0xe4, 0xee, 0xc1, 0xce, 0x54, 0x0e, 0xa5, 0xc4, 0x91, + 0x6b, 0x21, 0x0f, 0x62, 0x50, 0x41, 0xbf, 0x90, 0x2b, 0x9b, 0xc2, 0x54, 0x82, 0x56, 0x61, 0x01, + 0x05, 0x01, 0xd1, 0x83, 0x50, 0x1e, 0xdc, 0x3f, 0xc0, 0xfa, 0x6b, 0x14, 0x32, 0xe3, 0x87, 0x86, + 0x0e, 0xf2, 0x08, 0x8a, 0xcd, 0x28, 0xcd, 0x0f, 0xe4, 0xc9, 0xeb, 0x95, 0x29, 0x6c, 0x37, 0x8d, + 0x9f, 0x2c, 0x33, 0x5c, 0xe9, 0x26, 0x6c, 0x8c, 0xd9, 0x57, 0x91, 0x55, 0xa0, 0xcc, 0x6f, 0xfb, + 0x38, 0xd2, 0x2f, 0xd5, 0x7d, 0x05, 0x2b, 0x03, 0x44, 0x45, 0x75, 0x02, 0x25, 0xd3, 0x4b, 0x3d, + 0xaa, 0xdf, 0xe5, 0x66, 0xd1, 0x70, 0x93, 0xba, 0x55, 0xae, 0x17, 0x11, 0x66, 0x98, 0x12, 0xd5, + 0xae, 0x21, 0xe5, 0xd0, 0xef, 0xc1, 0xf1, 0xb2, 0xf8, 0x38, 0x4a, 0x5f, 0xc6, 0x2c, 0x8c, 0x74, + 0x9e, 0x3e, 0x84, 0x07, 0xb3, 0x64, 0xea, 0x11, 0xd4, 0x72, 0xd6, 0x67, 0xa8, 0xfb, 0x4d, 0xd8, + 0xf0, 0x30, 0xe5, 0xcb, 0xe9, 0xa0, 0x51, 0xe8, 0xf8, 0xb6, 0xa0, 0x3e, 0x4e, 0x52, 0x71, 0xd6, + 0xa0, 0xfa, 0x34, 0x0e, 0x99, 0xec, 0x11, 0x5a, 0xe0, 0x53, 0x70, 0x4c, 0x70, 0x06, 0xeb, 0x3f, + 0x5b, 0xb0, 0x7d, 0x91, 0xa4, 0x59, 0x24, 0x96, 0x50, 0x59, 0xfd, 0xdf, 0x26, 0x19, 0x2f, 0x63, + 0x9d, 0xbb, 0xff, 0x87, 0x15, 0x1e, 0xb1, 0xdf, 0x22, 0x18, 0x31, 0x1c, 0xf8, 0xb1, 0xfe, 0xa1, + 0x54, 0xe2, 0xf0, 0x89, 0x44, 0x7f, 0xa0, 0xfc, 0xc1, 0xa1, 0x16, 0x57, 0x6a, 0x4e, 0x1a, 0x90, + 0x90, 0x98, 0x36, 0x5f, 0x42, 0xb1, 0x2b, 0x3c, 0xf3, 0x51, 0x14, 0x22, 0x39, 0x71, 0xec, 0xc3, + 0xb5, 0xd1, 0xc5, 0xfa, 0x88, 0x13, 0x3d, 0x5b, 0xb2, 0x8a, 0x83, 0xf3, 0x08, 0x56, 0x8d, 0x3e, + 0x3a, 0x2c, 0xf7, 0x79, 0x61, 0xa3, 0x66, 0xd0, 0x06, 0x6b, 0xe8, 0x1e, 0xec, 0x4c, 0x8d, 0x4b, + 0xa5, 0xf0, 0xcf, 0x16, 0x54, 0x78, 0xba, 0xcc, 0x8e, 0xe3, 0xfc, 0x0a, 0x16, 0x25, 0xb7, 0x7a, + 0x4b, 0x53, 0xdc, 0x53, 0x4c, 0x53, 0x3d, 0x9b, 0x9b, 0xea, 0xd9, 0xa4, 0x7c, 0x16, 0x26, 0xe4, + 0x53, 0xdf, 0x70, 0xbe, 0xf5, 0xad, 0x41, 0xed, 0x14, 0x77, 0x13, 0x86, 0xf3, 0x17, 0x7f, 0x08, + 0xab, 0x79, 0x78, 0x86, 0xab, 0xff, 0x06, 0x76, 0x2e, 0x48, 0xc2, 0x85, 0x84, 0x89, 0xd7, 0x1d, + 0x1c, 0x9f, 0xa0, 0xac, 0xdd, 0x61, 0x2f, 0xd3, 0x19, 0x46, 0x81, 0xfb, 0x1b, 0xd8, 0x9d, 0x2e, + 0x3e, 0x5b, 0xdd, 0x4b, 0x41, 0x44, 0x95, 0x9e, 0xc0, 0xa8, 0xfb, 0x71, 0x92, 0x4a, 0xc0, 0x9f, + 0x2c, 0xa8, 0x5c, 0xe2, 0x7c, 0xdd, 0xdf, 0xf5, 0xd2, 0x26, 0xdc, 0xc0, 0xdc, 0xa4, 0x8a, 0x7e, + 0x08, 0x55, 0xb1, 0xdf, 0xfb, 0x94, 0x77, 0x19, 0x9f, 0x72, 0x9f, 0xd4, 0x5a, 0xbf, 0x22, 0x08, + 0xc3, 0xd9, 0x24, 0xc6, 0x17, 0x1e, 0x79, 0x79, 0xee, 0xd3, 0x61, 0x20, 0x1e, 0x16, 0x4a, 0x86, + 0xf3, 0xe9, 0x6e, 0x3e, 0xf3, 0xdf, 0x6b, 0x13, 0x54, 0x29, 0x3b, 0x0f, 0xc0, 0xe5, 0x3d, 0xd7, + 0xe8, 0x13, 0x47, 0x71, 0xc0, 0xa7, 0x4b, 0x6e, 0x67, 0x79, 0x05, 0xf7, 0xdf, 0xca, 0xf5, 0xbe, + 0x3b, 0xcc, 0x1a, 0xd4, 0xcc, 0x4a, 0x30, 0x6a, 0x32, 0x0f, 0xcf, 0x50, 0x14, 0x8f, 0xa0, 0x74, + 0x8c, 0x5a, 0xd7, 0xd9, 0xa0, 0x02, 0x77, 0xc1, 0x6e, 0x25, 0x71, 0x2b, 0x23, 0x04, 0xc7, 0xad, + 0xbe, 0x6a, 0x3c, 0x26, 0xe4, 0x7e, 0x01, 0x65, 0x2d, 0xa2, 0x0c, 0x3c, 0x80, 0x05, 0xdc, 0x1b, + 0x26, 0xb6, 0xdc, 0xd0, 0xff, 0x59, 0x38, 0xe3, 0xa8, 0x27, 0x89, 0xaa, 0xb9, 0xb2, 0x84, 0xe0, + 0x73, 0x92, 0x74, 0x73, 0x56, 0xdd, 0x23, 0xd8, 0x9c, 0x40, 0xbb, 0x8b, 0xfa, 0xe3, 0x4f, 0x7f, + 0x6a, 0xf4, 0x42, 0x86, 0x29, 0x6d, 0x84, 0xc9, 0x81, 0xfc, 0x3a, 0x68, 0x27, 0x07, 0x3d, 0x76, + 0x20, 0xfe, 0xbf, 0x71, 0x30, 0x36, 0x78, 0x9a, 0x8b, 0x82, 0xf0, 0xd9, 0x7f, 0x02, 0x00, 0x00, + 0xff, 0xff, 0xc0, 0x7c, 0x4c, 0x9e, 0x69, 0x19, 0x00, 0x00, } diff --git a/go/vt/proto/tabletmanagerservice/tabletmanagerservice.pb.go b/go/vt/proto/tabletmanagerservice/tabletmanagerservice.pb.go index f792852a176..f26652a1f22 100644 --- a/go/vt/proto/tabletmanagerservice/tabletmanagerservice.pb.go +++ b/go/vt/proto/tabletmanagerservice/tabletmanagerservice.pb.go @@ -1,15 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: tabletmanagerservice.proto -/* -Package tabletmanagerservice is a generated protocol buffer package. - -It is generated from these files: - tabletmanagerservice.proto - -It has these top-level messages: -*/ -package tabletmanagerservice +package tabletmanagerservice // import "vitess.io/vitess/go/vt/proto/tabletmanagerservice" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -1628,69 +1620,73 @@ var _TabletManager_serviceDesc = grpc.ServiceDesc{ Metadata: "tabletmanagerservice.proto", } -func init() { proto.RegisterFile("tabletmanagerservice.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 969 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x98, 0x6d, 0x6f, 0x1c, 0x35, - 0x10, 0xc7, 0x39, 0x09, 0x0a, 0x98, 0xc7, 0x5a, 0x88, 0xa2, 0x20, 0x01, 0x4d, 0x5a, 0x1e, 0x52, - 0x54, 0xf5, 0x81, 0xf2, 0xfe, 0x2e, 0xbd, 0xb6, 0x41, 0x44, 0x1c, 0x77, 0x8d, 0x82, 0x84, 0x84, - 0xe4, 0xec, 0x4d, 0x6f, 0x97, 0x78, 0x6d, 0x63, 0x7b, 0xa3, 0xe4, 0x15, 0x12, 0x12, 0xaf, 0x90, - 0xf8, 0x04, 0x7c, 0x58, 0xb4, 0x0f, 0xf6, 0x8d, 0xef, 0xbc, 0xbe, 0xbb, 0xb7, 0xf9, 0xff, 0x66, - 0xc6, 0x3b, 0x9e, 0x19, 0xcf, 0x85, 0xec, 0x59, 0x76, 0xce, 0xc1, 0x96, 0x4c, 0xb0, 0x05, 0x68, - 0x03, 0xfa, 0xb2, 0xc8, 0xe0, 0xbe, 0xd2, 0xd2, 0x4a, 0xfa, 0x51, 0x4c, 0xdb, 0xbb, 0x15, 0xfc, - 0x75, 0xce, 0x2c, 0x6b, 0xf1, 0x47, 0xff, 0xed, 0x93, 0xf7, 0x5e, 0x36, 0xda, 0x49, 0xab, 0xd1, - 0x63, 0xf2, 0xfa, 0xa4, 0x10, 0x0b, 0xfa, 0xd9, 0xfd, 0x75, 0x9b, 0x5a, 0x98, 0xc2, 0x1f, 0x15, - 0x18, 0xbb, 0xf7, 0x79, 0xaf, 0x6e, 0x94, 0x14, 0x06, 0xf6, 0x5f, 0xa3, 0x3f, 0x92, 0x37, 0x66, - 0x1c, 0x40, 0xd1, 0x18, 0xdb, 0x28, 0xce, 0xd9, 0x17, 0xfd, 0x80, 0xf7, 0xf6, 0x1b, 0x79, 0x67, - 0x7c, 0x05, 0x59, 0x65, 0xe1, 0x85, 0x94, 0x17, 0xf4, 0x6e, 0xc4, 0x04, 0xe9, 0xce, 0xf3, 0x97, - 0x9b, 0x30, 0xef, 0xff, 0x17, 0xf2, 0xf6, 0x73, 0xb0, 0xb3, 0x2c, 0x87, 0x92, 0xd1, 0x83, 0x88, - 0x99, 0x57, 0x9d, 0xef, 0x3b, 0x69, 0xc8, 0x7b, 0x5e, 0x90, 0xf7, 0x9f, 0x83, 0x9d, 0x80, 0x2e, - 0x0b, 0x63, 0x0a, 0x29, 0x0c, 0xfd, 0x3a, 0x6e, 0x89, 0x10, 0x17, 0xe3, 0x9b, 0x2d, 0x48, 0x9c, - 0xa2, 0x19, 0xd8, 0x29, 0xb0, 0xf9, 0x4f, 0x82, 0x5f, 0x47, 0x53, 0x84, 0xf4, 0x54, 0x8a, 0x02, - 0xcc, 0xfb, 0x67, 0xe4, 0xdd, 0x4e, 0x38, 0xd3, 0x85, 0x05, 0x9a, 0xb0, 0x6c, 0x00, 0x17, 0xe1, - 0xab, 0x8d, 0x9c, 0x0f, 0xf1, 0x2b, 0x21, 0x47, 0x39, 0x13, 0x0b, 0x78, 0x79, 0xad, 0x80, 0xc6, - 0x32, 0xbc, 0x94, 0x9d, 0xfb, 0xbb, 0x1b, 0x28, 0x7c, 0xfe, 0x29, 0xbc, 0xd2, 0x60, 0xf2, 0x99, - 0x65, 0x3d, 0xe7, 0xc7, 0x40, 0xea, 0xfc, 0x21, 0x87, 0xef, 0x7a, 0x5a, 0x89, 0x17, 0xc0, 0xb8, - 0xcd, 0x8f, 0x72, 0xc8, 0x2e, 0xa2, 0x77, 0x1d, 0x22, 0xa9, 0xbb, 0x5e, 0x25, 0x7d, 0x20, 0x45, - 0x6e, 0x1e, 0x2f, 0x84, 0xd4, 0xd0, 0xca, 0x63, 0xad, 0xa5, 0xa6, 0xf7, 0x22, 0x1e, 0xd6, 0x28, - 0x17, 0xee, 0xdb, 0xed, 0xe0, 0x30, 0x7b, 0x5c, 0xb2, 0x79, 0xd7, 0x23, 0xf1, 0xec, 0x2d, 0x81, - 0x74, 0xf6, 0x30, 0xe7, 0x43, 0xfc, 0x4e, 0x3e, 0x98, 0x68, 0x78, 0xc5, 0x8b, 0x45, 0xee, 0x3a, - 0x31, 0x96, 0x94, 0x15, 0xc6, 0x05, 0x3a, 0xdc, 0x06, 0xc5, 0xcd, 0x32, 0x54, 0x8a, 0x5f, 0x77, - 0x71, 0x62, 0x45, 0x84, 0xf4, 0x54, 0xb3, 0x04, 0x18, 0xbe, 0xa0, 0x6e, 0xd0, 0x3c, 0x03, 0x9b, - 0xe5, 0x43, 0xf3, 0xf4, 0x9c, 0x45, 0x2f, 0x68, 0x8d, 0x4a, 0x5d, 0x50, 0x04, 0xf6, 0x11, 0xff, - 0x24, 0x1f, 0x87, 0xf2, 0x90, 0xf3, 0x89, 0x2e, 0x2e, 0x0d, 0x7d, 0xb0, 0xd1, 0x93, 0x43, 0x5d, - 0xec, 0x87, 0x3b, 0x58, 0xf4, 0x7f, 0xf2, 0x50, 0xa9, 0x2d, 0x3e, 0x79, 0xa8, 0xd4, 0xf6, 0x9f, - 0xdc, 0xc0, 0xc1, 0xc4, 0xe3, 0xec, 0x12, 0xea, 0x36, 0xac, 0x4c, 0x7c, 0xe2, 0x2d, 0xf5, 0xe4, - 0xc4, 0xc3, 0x18, 0x6e, 0xe7, 0x13, 0x66, 0x2c, 0xe8, 0x89, 0x34, 0x85, 0x2d, 0xa4, 0x88, 0xb6, - 0x73, 0x88, 0xa4, 0xda, 0x79, 0x95, 0xc4, 0xaf, 0xcf, 0xcc, 0x4a, 0xd5, 0x9c, 0x22, 0xfa, 0xfa, - 0x78, 0x35, 0xf5, 0xfa, 0x20, 0xc8, 0x7b, 0x2e, 0xc9, 0x87, 0xfe, 0xcf, 0x27, 0x85, 0x28, 0xca, - 0xaa, 0xa4, 0x87, 0x29, 0xdb, 0x0e, 0x72, 0x71, 0xee, 0x6d, 0xc5, 0xe2, 0x01, 0x3e, 0xb3, 0x4c, - 0xdb, 0xf6, 0x4b, 0xe2, 0x87, 0x74, 0x72, 0x6a, 0x80, 0x63, 0xca, 0x3b, 0xff, 0x67, 0x40, 0xf6, - 0xda, 0x75, 0x65, 0x7c, 0x65, 0x41, 0x0b, 0xc6, 0xeb, 0xf7, 0x49, 0x31, 0x0d, 0xc2, 0xc2, 0x9c, - 0x7e, 0x17, 0xf1, 0xd3, 0x8f, 0xbb, 0xe8, 0x4f, 0x76, 0xb4, 0xf2, 0xa7, 0xf9, 0x6b, 0x40, 0x6e, - 0xad, 0x82, 0x63, 0x0e, 0x59, 0x7d, 0x94, 0x87, 0x5b, 0x38, 0xed, 0x58, 0x77, 0x8e, 0x47, 0xbb, - 0x98, 0xac, 0xae, 0x2d, 0x75, 0xa2, 0x4c, 0xef, 0xda, 0xd2, 0xa8, 0x9b, 0xd6, 0x96, 0x0e, 0xc2, - 0xc3, 0xf8, 0x8c, 0x15, 0x76, 0xc4, 0x95, 0x2f, 0xfe, 0x58, 0x49, 0xaf, 0x30, 0xa9, 0x61, 0xbc, - 0x86, 0xfa, 0x58, 0x53, 0xf2, 0x66, 0x5d, 0x53, 0x23, 0xae, 0xe8, 0xed, 0x9e, 0x7a, 0x1b, 0x71, - 0x3f, 0x25, 0xf6, 0x53, 0x88, 0xf7, 0x79, 0x4a, 0xde, 0x6a, 0x8a, 0xa8, 0x76, 0xba, 0xdf, 0x57, - 0x61, 0xc8, 0xeb, 0x41, 0x92, 0xc1, 0x23, 0x67, 0x5a, 0x89, 0x11, 0x57, 0xa7, 0xc2, 0x16, 0x3c, - 0x3a, 0x72, 0x90, 0x9e, 0x1a, 0x39, 0x01, 0x86, 0xfb, 0x75, 0x0a, 0xa6, 0xde, 0x8e, 0x14, 0x2f, - 0x32, 0xd6, 0xe4, 0xfd, 0x30, 0xfa, 0x84, 0x86, 0x50, 0xaa, 0x5f, 0xd7, 0x59, 0xdc, 0xaf, 0xc7, - 0xa2, 0xb0, 0xed, 0x60, 0x8a, 0xf6, 0xeb, 0x52, 0x4e, 0xf5, 0x2b, 0xa6, 0x82, 0x0e, 0x99, 0x48, - 0x55, 0xf1, 0x66, 0x49, 0x6a, 0x5b, 0xe8, 0x07, 0x59, 0xd5, 0xb5, 0x1c, 0xed, 0x90, 0x1e, 0x36, - 0xd5, 0x21, 0xbd, 0x26, 0xb8, 0x43, 0xea, 0xc3, 0xf5, 0x8f, 0x56, 0xaf, 0xa6, 0x3a, 0x04, 0x41, - 0x78, 0x23, 0x7a, 0x0a, 0xa5, 0xb4, 0xd0, 0x65, 0x2f, 0x76, 0xc9, 0x18, 0x48, 0x6d, 0x44, 0x21, - 0xe7, 0x43, 0xfc, 0x3d, 0x20, 0x9f, 0x4c, 0xb4, 0xac, 0xb5, 0x26, 0xfa, 0x59, 0x0e, 0xe2, 0x88, - 0x55, 0x8b, 0xdc, 0x9e, 0x2a, 0x1a, 0xcd, 0x47, 0x0f, 0xec, 0x62, 0x3f, 0xde, 0xc9, 0x26, 0x78, - 0x45, 0x1a, 0x99, 0x99, 0x8e, 0x9e, 0xc7, 0x5f, 0x91, 0x15, 0x28, 0xf9, 0x8a, 0xac, 0xb1, 0xc1, - 0x73, 0x08, 0xae, 0x28, 0x0f, 0xe2, 0x3f, 0x1f, 0xc2, 0x9c, 0xde, 0x49, 0x43, 0x78, 0x47, 0x71, - 0x71, 0xa7, 0x60, 0xea, 0xf6, 0x86, 0x39, 0x4d, 0x9d, 0xce, 0x53, 0xa9, 0x1d, 0x25, 0x02, 0xfb, - 0x88, 0xff, 0x0e, 0xc8, 0xa7, 0xf5, 0x74, 0x42, 0xfd, 0x37, 0x14, 0xf3, 0x7a, 0xe2, 0xb6, 0x4b, - 0xcb, 0x93, 0x9e, 0x69, 0xd6, 0xc3, 0xbb, 0x63, 0x7c, 0xbf, 0xab, 0x19, 0x2e, 0x5b, 0x7c, 0xe3, - 0xd1, 0xb2, 0xc5, 0x40, 0xaa, 0x6c, 0x43, 0xce, 0x87, 0xf8, 0x99, 0xdc, 0x18, 0xb1, 0xec, 0xa2, - 0x52, 0x34, 0xf6, 0xd3, 0xbe, 0x95, 0x9c, 0xdb, 0xdb, 0x09, 0xc2, 0x39, 0x7c, 0x30, 0xa0, 0x9a, - 0xdc, 0xac, 0xb3, 0x2b, 0x35, 0x3c, 0xd3, 0xb2, 0xec, 0xbc, 0xf7, 0x0c, 0xbb, 0x90, 0x4a, 0x5d, - 0x5c, 0x04, 0x5e, 0xc6, 0x3c, 0xbf, 0xd1, 0xfc, 0x97, 0xe4, 0xf1, 0xff, 0x01, 0x00, 0x00, 0xff, - 0xff, 0xa7, 0xa6, 0x78, 0xaf, 0x72, 0x11, 0x00, 0x00, +func init() { + proto.RegisterFile("tabletmanagerservice.proto", fileDescriptor_tabletmanagerservice_699086f6f76bf731) +} + +var fileDescriptor_tabletmanagerservice_699086f6f76bf731 = []byte{ + // 996 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x98, 0x6d, 0x6f, 0x5b, 0x35, + 0x14, 0xc7, 0x89, 0x04, 0x03, 0xcc, 0xe3, 0x2c, 0xc4, 0x50, 0x91, 0x80, 0xb5, 0x1b, 0x0f, 0x1d, + 0x6a, 0xd6, 0x95, 0xf1, 0x3e, 0xe9, 0xba, 0xad, 0x88, 0x8a, 0x90, 0xac, 0x2a, 0x02, 0x09, 0xc9, + 0x4d, 0xce, 0x72, 0x2f, 0x75, 0x6c, 0x63, 0xfb, 0x46, 0xed, 0x2b, 0x24, 0x24, 0x5e, 0x21, 0xf1, + 0x09, 0xf8, 0xb0, 0xd3, 0x7d, 0xb0, 0x63, 0x27, 0xe7, 0x3a, 0xc9, 0xbb, 0xaa, 0xff, 0xdf, 0x39, + 0xc7, 0xf7, 0xf8, 0x9c, 0xe3, 0xd3, 0x92, 0x1d, 0xcb, 0x2e, 0x39, 0xd8, 0x19, 0x13, 0x6c, 0x0a, + 0xda, 0x80, 0x9e, 0xe7, 0x63, 0x38, 0x50, 0x5a, 0x5a, 0x49, 0x3f, 0xc2, 0xb4, 0x9d, 0x3b, 0xd1, + 0x6f, 0x27, 0xcc, 0xb2, 0x1a, 0x7f, 0xf4, 0xff, 0x2e, 0x79, 0xef, 0x45, 0xa5, 0x9d, 0xd5, 0x1a, + 0x3d, 0x25, 0xaf, 0x0f, 0x72, 0x31, 0xa5, 0x9f, 0x1d, 0xac, 0xda, 0x94, 0xc2, 0x10, 0xfe, 0x2c, + 0xc0, 0xd8, 0x9d, 0xcf, 0x5b, 0x75, 0xa3, 0xa4, 0x30, 0xb0, 0xfb, 0x1a, 0xfd, 0x91, 0xbc, 0x31, + 0xe2, 0x00, 0x8a, 0x62, 0x6c, 0xa5, 0x38, 0x67, 0x5f, 0xb4, 0x03, 0xde, 0xdb, 0xef, 0xe4, 0x9d, + 0x93, 0x6b, 0x18, 0x17, 0x16, 0x9e, 0x4b, 0x79, 0x45, 0xef, 0x23, 0x26, 0x81, 0xee, 0x3c, 0x7f, + 0xb9, 0x0e, 0xf3, 0xfe, 0x7f, 0x21, 0x6f, 0x3f, 0x03, 0x3b, 0x1a, 0x67, 0x30, 0x63, 0x74, 0x0f, + 0x31, 0xf3, 0xaa, 0xf3, 0x7d, 0x2f, 0x0d, 0x79, 0xcf, 0x53, 0xf2, 0xfe, 0x33, 0xb0, 0x03, 0xd0, + 0xb3, 0xdc, 0x98, 0x5c, 0x0a, 0x43, 0xbf, 0xc6, 0x2d, 0x03, 0xc4, 0xc5, 0xf8, 0x66, 0x03, 0x32, + 0x4c, 0xd1, 0x08, 0xec, 0x10, 0xd8, 0xe4, 0x27, 0xc1, 0x6f, 0xd0, 0x14, 0x05, 0x7a, 0x2a, 0x45, + 0x11, 0xe6, 0xfd, 0x33, 0xf2, 0x6e, 0x23, 0x5c, 0xe8, 0xdc, 0x02, 0x4d, 0x58, 0x56, 0x80, 0x8b, + 0xf0, 0xd5, 0x5a, 0xce, 0x87, 0xf8, 0x8d, 0x90, 0xe3, 0x8c, 0x89, 0x29, 0xbc, 0xb8, 0x51, 0x40, + 0xb1, 0x0c, 0x2f, 0x64, 0xe7, 0xfe, 0xfe, 0x1a, 0x2a, 0x3c, 0xff, 0x10, 0x5e, 0x6a, 0x30, 0xd9, + 0xc8, 0xb2, 0x96, 0xf3, 0x87, 0x40, 0xea, 0xfc, 0x31, 0x17, 0xde, 0xf5, 0xb0, 0x10, 0xcf, 0x81, + 0x71, 0x9b, 0x1d, 0x67, 0x30, 0xbe, 0x42, 0xef, 0x3a, 0x46, 0x52, 0x77, 0xbd, 0x4c, 0xfa, 0x40, + 0x8a, 0xdc, 0x3e, 0x9d, 0x0a, 0xa9, 0xa1, 0x96, 0x4f, 0xb4, 0x96, 0x9a, 0x3e, 0x40, 0x3c, 0xac, + 0x50, 0x2e, 0xdc, 0xb7, 0x9b, 0xc1, 0x71, 0xf6, 0xb8, 0x64, 0x93, 0xa6, 0x47, 0xf0, 0xec, 0x2d, + 0x80, 0x74, 0xf6, 0x42, 0xce, 0x87, 0xf8, 0x83, 0x7c, 0x30, 0xd0, 0xf0, 0x92, 0xe7, 0xd3, 0xcc, + 0x75, 0x22, 0x96, 0x94, 0x25, 0xc6, 0x05, 0xda, 0xdf, 0x04, 0x0d, 0x9b, 0xa5, 0xa7, 0x14, 0xbf, + 0x69, 0xe2, 0x60, 0x45, 0x14, 0xe8, 0xa9, 0x66, 0x89, 0xb0, 0xf0, 0x82, 0x9a, 0x41, 0xf3, 0x14, + 0xec, 0x38, 0xeb, 0x99, 0x27, 0x97, 0x0c, 0xbd, 0xa0, 0x15, 0x2a, 0x75, 0x41, 0x08, 0xec, 0x23, + 0xfe, 0x45, 0x3e, 0x8e, 0xe5, 0x1e, 0xe7, 0x03, 0x9d, 0xcf, 0x0d, 0x7d, 0xb8, 0xd6, 0x93, 0x43, + 0x5d, 0xec, 0xc3, 0x2d, 0x2c, 0xda, 0x3f, 0xb9, 0xa7, 0xd4, 0x06, 0x9f, 0xdc, 0x53, 0x6a, 0xf3, + 0x4f, 0xae, 0xe0, 0x68, 0xe2, 0x71, 0x36, 0x87, 0xb2, 0x0d, 0x0b, 0x83, 0x4f, 0xbc, 0x85, 0x9e, + 0x9c, 0x78, 0x21, 0x16, 0xb6, 0xf3, 0x19, 0x33, 0x16, 0xf4, 0x40, 0x9a, 0xdc, 0xe6, 0x52, 0xa0, + 0xed, 0x1c, 0x23, 0xa9, 0x76, 0x5e, 0x26, 0xc3, 0xd7, 0x67, 0x64, 0xa5, 0xaa, 0x4e, 0x81, 0xbe, + 0x3e, 0x5e, 0x4d, 0xbd, 0x3e, 0x01, 0xe4, 0x3d, 0xcf, 0xc8, 0x87, 0xfe, 0xd7, 0x67, 0xb9, 0xc8, + 0x67, 0xc5, 0x8c, 0xee, 0xa7, 0x6c, 0x1b, 0xc8, 0xc5, 0x79, 0xb0, 0x11, 0x1b, 0x0e, 0xf0, 0x91, + 0x65, 0xda, 0xd6, 0x5f, 0x82, 0x1f, 0xd2, 0xc9, 0xa9, 0x01, 0x1e, 0x52, 0xde, 0xf9, 0xbf, 0x1d, + 0xb2, 0x53, 0xaf, 0x2b, 0x27, 0xd7, 0x16, 0xb4, 0x60, 0xbc, 0x7c, 0x9f, 0x14, 0xd3, 0x20, 0x2c, + 0x4c, 0xe8, 0x77, 0x88, 0x9f, 0x76, 0xdc, 0x45, 0x7f, 0xbc, 0xa5, 0x95, 0x3f, 0xcd, 0xdf, 0x1d, + 0x72, 0x67, 0x19, 0x3c, 0xe1, 0x30, 0x2e, 0x8f, 0x72, 0xb8, 0x81, 0xd3, 0x86, 0x75, 0xe7, 0x78, + 0xb4, 0x8d, 0xc9, 0xf2, 0xda, 0x52, 0x26, 0xca, 0xb4, 0xae, 0x2d, 0x95, 0xba, 0x6e, 0x6d, 0x69, + 0xa0, 0x70, 0x18, 0x5f, 0xb0, 0xdc, 0xf6, 0xb9, 0xf2, 0xc5, 0x8f, 0x95, 0xf4, 0x12, 0x93, 0x1a, + 0xc6, 0x2b, 0xa8, 0x8f, 0x35, 0x24, 0x6f, 0x96, 0x35, 0xd5, 0xe7, 0x8a, 0xde, 0x6d, 0xa9, 0xb7, + 0x3e, 0xf7, 0x53, 0x62, 0x37, 0x85, 0x78, 0x9f, 0xe7, 0xe4, 0xad, 0xaa, 0x88, 0x4a, 0xa7, 0xbb, + 0x6d, 0x15, 0x16, 0x78, 0xdd, 0x4b, 0x32, 0xe1, 0xc8, 0x19, 0x16, 0xa2, 0xcf, 0xd5, 0xb9, 0xb0, + 0x39, 0x47, 0x47, 0x4e, 0xa0, 0xa7, 0x46, 0x4e, 0x84, 0x85, 0xfd, 0x3a, 0x04, 0x53, 0x6e, 0x47, + 0x8a, 0xe7, 0x63, 0x56, 0xe5, 0x7d, 0x1f, 0x7d, 0x42, 0x63, 0x28, 0xd5, 0xaf, 0xab, 0x6c, 0xd8, + 0xaf, 0xa7, 0x22, 0xb7, 0xf5, 0x60, 0x42, 0xfb, 0x75, 0x21, 0xa7, 0xfa, 0x35, 0xa4, 0xa2, 0x0e, + 0x19, 0x48, 0x55, 0xf0, 0x6a, 0x49, 0xaa, 0x5b, 0xe8, 0x07, 0x59, 0x94, 0xb5, 0x8c, 0x76, 0x48, + 0x0b, 0x9b, 0xea, 0x90, 0x56, 0x93, 0xb0, 0x43, 0xca, 0xc3, 0xb5, 0x8f, 0x56, 0xaf, 0xa6, 0x3a, + 0x24, 0x80, 0xc2, 0x8d, 0xe8, 0x09, 0xcc, 0xa4, 0x85, 0x26, 0x7b, 0xd8, 0x25, 0x87, 0x40, 0x6a, + 0x23, 0x8a, 0x39, 0x1f, 0xe2, 0x9f, 0x0e, 0xf9, 0x64, 0xa0, 0x65, 0xa9, 0x55, 0xd1, 0x2f, 0x32, + 0x10, 0xc7, 0xac, 0x98, 0x66, 0xf6, 0x5c, 0x51, 0x34, 0x1f, 0x2d, 0xb0, 0x8b, 0x7d, 0xb4, 0x95, + 0x4d, 0xf4, 0x8a, 0x54, 0x32, 0x33, 0x0d, 0x3d, 0xc1, 0x5f, 0x91, 0x25, 0x28, 0xf9, 0x8a, 0xac, + 0xb0, 0xd1, 0x73, 0x08, 0xae, 0x28, 0xf7, 0xf0, 0x3f, 0x1f, 0xe2, 0x9c, 0xde, 0x4b, 0x43, 0xe1, + 0x8e, 0xe2, 0xe2, 0x0e, 0xc1, 0x94, 0xed, 0x0d, 0x13, 0x9a, 0x3a, 0x9d, 0xa7, 0x52, 0x3b, 0x0a, + 0x02, 0xfb, 0x88, 0xff, 0x75, 0xc8, 0xa7, 0xe5, 0x74, 0x0a, 0xfa, 0xaf, 0x27, 0x26, 0xe5, 0xc4, + 0xad, 0x97, 0x96, 0xc7, 0x2d, 0xd3, 0xac, 0x85, 0x77, 0xc7, 0xf8, 0x7e, 0x5b, 0xb3, 0xb0, 0x6c, + 0xc3, 0x1b, 0x47, 0xcb, 0x36, 0x04, 0x52, 0x65, 0x1b, 0x73, 0x3e, 0xc4, 0xcf, 0xe4, 0x56, 0x9f, + 0x8d, 0xaf, 0x0a, 0x45, 0xb1, 0x3f, 0xed, 0x6b, 0xc9, 0xb9, 0xbd, 0x9b, 0x20, 0x9c, 0xc3, 0x87, + 0x1d, 0xaa, 0xc9, 0xed, 0x32, 0xbb, 0x52, 0xc3, 0x53, 0x2d, 0x67, 0x8d, 0xf7, 0x96, 0x61, 0x17, + 0x53, 0xa9, 0x8b, 0x43, 0xe0, 0x45, 0xcc, 0xfe, 0xd1, 0xaf, 0x87, 0xf3, 0xdc, 0x82, 0x31, 0x07, + 0xb9, 0xec, 0xd6, 0x3f, 0x75, 0xa7, 0xb2, 0x3b, 0xb7, 0xdd, 0xea, 0xdf, 0x27, 0x5d, 0xec, 0x9f, + 0x2d, 0x97, 0xb7, 0x2a, 0xed, 0xe8, 0x55, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc3, 0x82, 0xa2, 0xe2, + 0xa7, 0x11, 0x00, 0x00, } diff --git a/go/vt/proto/throttlerdata/throttlerdata.pb.go b/go/vt/proto/throttlerdata/throttlerdata.pb.go index f4e6f2d1b79..812a34836c5 100644 --- a/go/vt/proto/throttlerdata/throttlerdata.pb.go +++ b/go/vt/proto/throttlerdata/throttlerdata.pb.go @@ -1,26 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: throttlerdata.proto -/* -Package throttlerdata is a generated protocol buffer package. - -It is generated from these files: - throttlerdata.proto - -It has these top-level messages: - MaxRatesRequest - MaxRatesResponse - SetMaxRateRequest - SetMaxRateResponse - Configuration - GetConfigurationRequest - GetConfigurationResponse - UpdateConfigurationRequest - UpdateConfigurationResponse - ResetConfigurationRequest - ResetConfigurationResponse -*/ -package throttlerdata +package throttlerdata // import "vitess.io/vitess/go/vt/proto/throttlerdata" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -39,24 +20,68 @@ const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package // MaxRatesRequest is the payload for the MaxRates RPC. type MaxRatesRequest struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *MaxRatesRequest) Reset() { *m = MaxRatesRequest{} } -func (m *MaxRatesRequest) String() string { return proto.CompactTextString(m) } -func (*MaxRatesRequest) ProtoMessage() {} -func (*MaxRatesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (m *MaxRatesRequest) Reset() { *m = MaxRatesRequest{} } +func (m *MaxRatesRequest) String() string { return proto.CompactTextString(m) } +func (*MaxRatesRequest) ProtoMessage() {} +func (*MaxRatesRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_throttlerdata_7d084fd3a7704c85, []int{0} +} +func (m *MaxRatesRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_MaxRatesRequest.Unmarshal(m, b) +} +func (m *MaxRatesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_MaxRatesRequest.Marshal(b, m, deterministic) +} +func (dst *MaxRatesRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_MaxRatesRequest.Merge(dst, src) +} +func (m *MaxRatesRequest) XXX_Size() int { + return xxx_messageInfo_MaxRatesRequest.Size(m) +} +func (m *MaxRatesRequest) XXX_DiscardUnknown() { + xxx_messageInfo_MaxRatesRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_MaxRatesRequest proto.InternalMessageInfo // MaxRatesResponse is returned by the MaxRates RPC. type MaxRatesResponse struct { // max_rates returns the max rate for each throttler. It's keyed by the // throttler name. - Rates map[string]int64 `protobuf:"bytes,1,rep,name=rates" json:"rates,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` + Rates map[string]int64 `protobuf:"bytes,1,rep,name=rates" json:"rates,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *MaxRatesResponse) Reset() { *m = MaxRatesResponse{} } +func (m *MaxRatesResponse) String() string { return proto.CompactTextString(m) } +func (*MaxRatesResponse) ProtoMessage() {} +func (*MaxRatesResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_throttlerdata_7d084fd3a7704c85, []int{1} +} +func (m *MaxRatesResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_MaxRatesResponse.Unmarshal(m, b) +} +func (m *MaxRatesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_MaxRatesResponse.Marshal(b, m, deterministic) +} +func (dst *MaxRatesResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_MaxRatesResponse.Merge(dst, src) +} +func (m *MaxRatesResponse) XXX_Size() int { + return xxx_messageInfo_MaxRatesResponse.Size(m) +} +func (m *MaxRatesResponse) XXX_DiscardUnknown() { + xxx_messageInfo_MaxRatesResponse.DiscardUnknown(m) } -func (m *MaxRatesResponse) Reset() { *m = MaxRatesResponse{} } -func (m *MaxRatesResponse) String() string { return proto.CompactTextString(m) } -func (*MaxRatesResponse) ProtoMessage() {} -func (*MaxRatesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +var xxx_messageInfo_MaxRatesResponse proto.InternalMessageInfo func (m *MaxRatesResponse) GetRates() map[string]int64 { if m != nil { @@ -67,13 +92,35 @@ func (m *MaxRatesResponse) GetRates() map[string]int64 { // SetMaxRateRequest is the payload for the SetMaxRate RPC. type SetMaxRateRequest struct { - Rate int64 `protobuf:"varint,1,opt,name=rate" json:"rate,omitempty"` + Rate int64 `protobuf:"varint,1,opt,name=rate" json:"rate,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SetMaxRateRequest) Reset() { *m = SetMaxRateRequest{} } +func (m *SetMaxRateRequest) String() string { return proto.CompactTextString(m) } +func (*SetMaxRateRequest) ProtoMessage() {} +func (*SetMaxRateRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_throttlerdata_7d084fd3a7704c85, []int{2} +} +func (m *SetMaxRateRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SetMaxRateRequest.Unmarshal(m, b) +} +func (m *SetMaxRateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SetMaxRateRequest.Marshal(b, m, deterministic) +} +func (dst *SetMaxRateRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SetMaxRateRequest.Merge(dst, src) +} +func (m *SetMaxRateRequest) XXX_Size() int { + return xxx_messageInfo_SetMaxRateRequest.Size(m) +} +func (m *SetMaxRateRequest) XXX_DiscardUnknown() { + xxx_messageInfo_SetMaxRateRequest.DiscardUnknown(m) } -func (m *SetMaxRateRequest) Reset() { *m = SetMaxRateRequest{} } -func (m *SetMaxRateRequest) String() string { return proto.CompactTextString(m) } -func (*SetMaxRateRequest) ProtoMessage() {} -func (*SetMaxRateRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } +var xxx_messageInfo_SetMaxRateRequest proto.InternalMessageInfo func (m *SetMaxRateRequest) GetRate() int64 { if m != nil { @@ -85,13 +132,35 @@ func (m *SetMaxRateRequest) GetRate() int64 { // SetMaxRateResponse is returned by the SetMaxRate RPC. type SetMaxRateResponse struct { // names is the list of throttler names which were updated. - Names []string `protobuf:"bytes,1,rep,name=names" json:"names,omitempty"` + Names []string `protobuf:"bytes,1,rep,name=names" json:"names,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SetMaxRateResponse) Reset() { *m = SetMaxRateResponse{} } +func (m *SetMaxRateResponse) String() string { return proto.CompactTextString(m) } +func (*SetMaxRateResponse) ProtoMessage() {} +func (*SetMaxRateResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_throttlerdata_7d084fd3a7704c85, []int{3} +} +func (m *SetMaxRateResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SetMaxRateResponse.Unmarshal(m, b) +} +func (m *SetMaxRateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SetMaxRateResponse.Marshal(b, m, deterministic) +} +func (dst *SetMaxRateResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SetMaxRateResponse.Merge(dst, src) +} +func (m *SetMaxRateResponse) XXX_Size() int { + return xxx_messageInfo_SetMaxRateResponse.Size(m) +} +func (m *SetMaxRateResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SetMaxRateResponse.DiscardUnknown(m) } -func (m *SetMaxRateResponse) Reset() { *m = SetMaxRateResponse{} } -func (m *SetMaxRateResponse) String() string { return proto.CompactTextString(m) } -func (*SetMaxRateResponse) ProtoMessage() {} -func (*SetMaxRateResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } +var xxx_messageInfo_SetMaxRateResponse proto.InternalMessageInfo func (m *SetMaxRateResponse) GetNames() []string { if m != nil { @@ -180,13 +249,35 @@ type Configuration struct { // is below target_replication_lag_sec, if the current rate limit is 100, then the actual // rate must exceed 100*max_rate_approach_threshold for the throttler to increase the current // limit. - MaxRateApproachThreshold float64 `protobuf:"fixed64,14,opt,name=max_rate_approach_threshold,json=maxRateApproachThreshold" json:"max_rate_approach_threshold,omitempty"` + MaxRateApproachThreshold float64 `protobuf:"fixed64,14,opt,name=max_rate_approach_threshold,json=maxRateApproachThreshold" json:"max_rate_approach_threshold,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Configuration) Reset() { *m = Configuration{} } +func (m *Configuration) String() string { return proto.CompactTextString(m) } +func (*Configuration) ProtoMessage() {} +func (*Configuration) Descriptor() ([]byte, []int) { + return fileDescriptor_throttlerdata_7d084fd3a7704c85, []int{4} +} +func (m *Configuration) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Configuration.Unmarshal(m, b) +} +func (m *Configuration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Configuration.Marshal(b, m, deterministic) +} +func (dst *Configuration) XXX_Merge(src proto.Message) { + xxx_messageInfo_Configuration.Merge(dst, src) +} +func (m *Configuration) XXX_Size() int { + return xxx_messageInfo_Configuration.Size(m) +} +func (m *Configuration) XXX_DiscardUnknown() { + xxx_messageInfo_Configuration.DiscardUnknown(m) } -func (m *Configuration) Reset() { *m = Configuration{} } -func (m *Configuration) String() string { return proto.CompactTextString(m) } -func (*Configuration) ProtoMessage() {} -func (*Configuration) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} } +var xxx_messageInfo_Configuration proto.InternalMessageInfo func (m *Configuration) GetTargetReplicationLagSec() int64 { if m != nil { @@ -290,13 +381,35 @@ func (m *Configuration) GetMaxRateApproachThreshold() float64 { type GetConfigurationRequest struct { // throttler_name specifies which throttler to select. If empty, all active // throttlers will be selected. - ThrottlerName string `protobuf:"bytes,1,opt,name=throttler_name,json=throttlerName" json:"throttler_name,omitempty"` + ThrottlerName string `protobuf:"bytes,1,opt,name=throttler_name,json=throttlerName" json:"throttler_name,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *GetConfigurationRequest) Reset() { *m = GetConfigurationRequest{} } -func (m *GetConfigurationRequest) String() string { return proto.CompactTextString(m) } -func (*GetConfigurationRequest) ProtoMessage() {} -func (*GetConfigurationRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } +func (m *GetConfigurationRequest) Reset() { *m = GetConfigurationRequest{} } +func (m *GetConfigurationRequest) String() string { return proto.CompactTextString(m) } +func (*GetConfigurationRequest) ProtoMessage() {} +func (*GetConfigurationRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_throttlerdata_7d084fd3a7704c85, []int{5} +} +func (m *GetConfigurationRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetConfigurationRequest.Unmarshal(m, b) +} +func (m *GetConfigurationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetConfigurationRequest.Marshal(b, m, deterministic) +} +func (dst *GetConfigurationRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetConfigurationRequest.Merge(dst, src) +} +func (m *GetConfigurationRequest) XXX_Size() int { + return xxx_messageInfo_GetConfigurationRequest.Size(m) +} +func (m *GetConfigurationRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GetConfigurationRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_GetConfigurationRequest proto.InternalMessageInfo func (m *GetConfigurationRequest) GetThrottlerName() string { if m != nil { @@ -309,13 +422,35 @@ func (m *GetConfigurationRequest) GetThrottlerName() string { type GetConfigurationResponse struct { // max_rates returns the configurations for each throttler. // It's keyed by the throttler name. - Configurations map[string]*Configuration `protobuf:"bytes,1,rep,name=configurations" json:"configurations,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + Configurations map[string]*Configuration `protobuf:"bytes,1,rep,name=configurations" json:"configurations,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetConfigurationResponse) Reset() { *m = GetConfigurationResponse{} } +func (m *GetConfigurationResponse) String() string { return proto.CompactTextString(m) } +func (*GetConfigurationResponse) ProtoMessage() {} +func (*GetConfigurationResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_throttlerdata_7d084fd3a7704c85, []int{6} +} +func (m *GetConfigurationResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetConfigurationResponse.Unmarshal(m, b) +} +func (m *GetConfigurationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetConfigurationResponse.Marshal(b, m, deterministic) +} +func (dst *GetConfigurationResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetConfigurationResponse.Merge(dst, src) +} +func (m *GetConfigurationResponse) XXX_Size() int { + return xxx_messageInfo_GetConfigurationResponse.Size(m) +} +func (m *GetConfigurationResponse) XXX_DiscardUnknown() { + xxx_messageInfo_GetConfigurationResponse.DiscardUnknown(m) } -func (m *GetConfigurationResponse) Reset() { *m = GetConfigurationResponse{} } -func (m *GetConfigurationResponse) String() string { return proto.CompactTextString(m) } -func (*GetConfigurationResponse) ProtoMessage() {} -func (*GetConfigurationResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} } +var xxx_messageInfo_GetConfigurationResponse proto.InternalMessageInfo func (m *GetConfigurationResponse) GetConfigurations() map[string]*Configuration { if m != nil { @@ -333,13 +468,35 @@ type UpdateConfigurationRequest struct { Configuration *Configuration `protobuf:"bytes,2,opt,name=configuration" json:"configuration,omitempty"` // copy_zero_values specifies whether fields with zero values should be copied // as well. - CopyZeroValues bool `protobuf:"varint,3,opt,name=copy_zero_values,json=copyZeroValues" json:"copy_zero_values,omitempty"` + CopyZeroValues bool `protobuf:"varint,3,opt,name=copy_zero_values,json=copyZeroValues" json:"copy_zero_values,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *UpdateConfigurationRequest) Reset() { *m = UpdateConfigurationRequest{} } -func (m *UpdateConfigurationRequest) String() string { return proto.CompactTextString(m) } -func (*UpdateConfigurationRequest) ProtoMessage() {} -func (*UpdateConfigurationRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} } +func (m *UpdateConfigurationRequest) Reset() { *m = UpdateConfigurationRequest{} } +func (m *UpdateConfigurationRequest) String() string { return proto.CompactTextString(m) } +func (*UpdateConfigurationRequest) ProtoMessage() {} +func (*UpdateConfigurationRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_throttlerdata_7d084fd3a7704c85, []int{7} +} +func (m *UpdateConfigurationRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_UpdateConfigurationRequest.Unmarshal(m, b) +} +func (m *UpdateConfigurationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_UpdateConfigurationRequest.Marshal(b, m, deterministic) +} +func (dst *UpdateConfigurationRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_UpdateConfigurationRequest.Merge(dst, src) +} +func (m *UpdateConfigurationRequest) XXX_Size() int { + return xxx_messageInfo_UpdateConfigurationRequest.Size(m) +} +func (m *UpdateConfigurationRequest) XXX_DiscardUnknown() { + xxx_messageInfo_UpdateConfigurationRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_UpdateConfigurationRequest proto.InternalMessageInfo func (m *UpdateConfigurationRequest) GetThrottlerName() string { if m != nil { @@ -365,13 +522,35 @@ func (m *UpdateConfigurationRequest) GetCopyZeroValues() bool { // UpdateConfigurationResponse is returned by the UpdateConfiguration RPC. type UpdateConfigurationResponse struct { // names is the list of throttler names which were updated. - Names []string `protobuf:"bytes,1,rep,name=names" json:"names,omitempty"` + Names []string `protobuf:"bytes,1,rep,name=names" json:"names,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *UpdateConfigurationResponse) Reset() { *m = UpdateConfigurationResponse{} } -func (m *UpdateConfigurationResponse) String() string { return proto.CompactTextString(m) } -func (*UpdateConfigurationResponse) ProtoMessage() {} -func (*UpdateConfigurationResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} } +func (m *UpdateConfigurationResponse) Reset() { *m = UpdateConfigurationResponse{} } +func (m *UpdateConfigurationResponse) String() string { return proto.CompactTextString(m) } +func (*UpdateConfigurationResponse) ProtoMessage() {} +func (*UpdateConfigurationResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_throttlerdata_7d084fd3a7704c85, []int{8} +} +func (m *UpdateConfigurationResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_UpdateConfigurationResponse.Unmarshal(m, b) +} +func (m *UpdateConfigurationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_UpdateConfigurationResponse.Marshal(b, m, deterministic) +} +func (dst *UpdateConfigurationResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_UpdateConfigurationResponse.Merge(dst, src) +} +func (m *UpdateConfigurationResponse) XXX_Size() int { + return xxx_messageInfo_UpdateConfigurationResponse.Size(m) +} +func (m *UpdateConfigurationResponse) XXX_DiscardUnknown() { + xxx_messageInfo_UpdateConfigurationResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_UpdateConfigurationResponse proto.InternalMessageInfo func (m *UpdateConfigurationResponse) GetNames() []string { if m != nil { @@ -384,13 +563,35 @@ func (m *UpdateConfigurationResponse) GetNames() []string { type ResetConfigurationRequest struct { // throttler_name specifies which throttler to reset. If empty, all active // throttlers will be reset. - ThrottlerName string `protobuf:"bytes,1,opt,name=throttler_name,json=throttlerName" json:"throttler_name,omitempty"` + ThrottlerName string `protobuf:"bytes,1,opt,name=throttler_name,json=throttlerName" json:"throttler_name,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ResetConfigurationRequest) Reset() { *m = ResetConfigurationRequest{} } -func (m *ResetConfigurationRequest) String() string { return proto.CompactTextString(m) } -func (*ResetConfigurationRequest) ProtoMessage() {} -func (*ResetConfigurationRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} } +func (m *ResetConfigurationRequest) Reset() { *m = ResetConfigurationRequest{} } +func (m *ResetConfigurationRequest) String() string { return proto.CompactTextString(m) } +func (*ResetConfigurationRequest) ProtoMessage() {} +func (*ResetConfigurationRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_throttlerdata_7d084fd3a7704c85, []int{9} +} +func (m *ResetConfigurationRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ResetConfigurationRequest.Unmarshal(m, b) +} +func (m *ResetConfigurationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ResetConfigurationRequest.Marshal(b, m, deterministic) +} +func (dst *ResetConfigurationRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResetConfigurationRequest.Merge(dst, src) +} +func (m *ResetConfigurationRequest) XXX_Size() int { + return xxx_messageInfo_ResetConfigurationRequest.Size(m) +} +func (m *ResetConfigurationRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ResetConfigurationRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ResetConfigurationRequest proto.InternalMessageInfo func (m *ResetConfigurationRequest) GetThrottlerName() string { if m != nil { @@ -402,13 +603,35 @@ func (m *ResetConfigurationRequest) GetThrottlerName() string { // ResetConfigurationResponse is returned by the ResetConfiguration RPC. type ResetConfigurationResponse struct { // names is the list of throttler names which were updated. - Names []string `protobuf:"bytes,1,rep,name=names" json:"names,omitempty"` + Names []string `protobuf:"bytes,1,rep,name=names" json:"names,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ResetConfigurationResponse) Reset() { *m = ResetConfigurationResponse{} } +func (m *ResetConfigurationResponse) String() string { return proto.CompactTextString(m) } +func (*ResetConfigurationResponse) ProtoMessage() {} +func (*ResetConfigurationResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_throttlerdata_7d084fd3a7704c85, []int{10} +} +func (m *ResetConfigurationResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ResetConfigurationResponse.Unmarshal(m, b) +} +func (m *ResetConfigurationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ResetConfigurationResponse.Marshal(b, m, deterministic) +} +func (dst *ResetConfigurationResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResetConfigurationResponse.Merge(dst, src) +} +func (m *ResetConfigurationResponse) XXX_Size() int { + return xxx_messageInfo_ResetConfigurationResponse.Size(m) +} +func (m *ResetConfigurationResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ResetConfigurationResponse.DiscardUnknown(m) } -func (m *ResetConfigurationResponse) Reset() { *m = ResetConfigurationResponse{} } -func (m *ResetConfigurationResponse) String() string { return proto.CompactTextString(m) } -func (*ResetConfigurationResponse) ProtoMessage() {} -func (*ResetConfigurationResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} } +var xxx_messageInfo_ResetConfigurationResponse proto.InternalMessageInfo func (m *ResetConfigurationResponse) GetNames() []string { if m != nil { @@ -420,64 +643,67 @@ func (m *ResetConfigurationResponse) GetNames() []string { func init() { proto.RegisterType((*MaxRatesRequest)(nil), "throttlerdata.MaxRatesRequest") proto.RegisterType((*MaxRatesResponse)(nil), "throttlerdata.MaxRatesResponse") + proto.RegisterMapType((map[string]int64)(nil), "throttlerdata.MaxRatesResponse.RatesEntry") proto.RegisterType((*SetMaxRateRequest)(nil), "throttlerdata.SetMaxRateRequest") proto.RegisterType((*SetMaxRateResponse)(nil), "throttlerdata.SetMaxRateResponse") proto.RegisterType((*Configuration)(nil), "throttlerdata.Configuration") proto.RegisterType((*GetConfigurationRequest)(nil), "throttlerdata.GetConfigurationRequest") proto.RegisterType((*GetConfigurationResponse)(nil), "throttlerdata.GetConfigurationResponse") + proto.RegisterMapType((map[string]*Configuration)(nil), "throttlerdata.GetConfigurationResponse.ConfigurationsEntry") proto.RegisterType((*UpdateConfigurationRequest)(nil), "throttlerdata.UpdateConfigurationRequest") proto.RegisterType((*UpdateConfigurationResponse)(nil), "throttlerdata.UpdateConfigurationResponse") proto.RegisterType((*ResetConfigurationRequest)(nil), "throttlerdata.ResetConfigurationRequest") proto.RegisterType((*ResetConfigurationResponse)(nil), "throttlerdata.ResetConfigurationResponse") } -func init() { proto.RegisterFile("throttlerdata.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 711 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0xdd, 0x4e, 0xdb, 0x4a, - 0x10, 0x96, 0x09, 0xe1, 0xc0, 0x84, 0x00, 0x59, 0x38, 0x60, 0xc2, 0xd1, 0x51, 0x8e, 0xa5, 0xa3, - 0x46, 0x48, 0xcd, 0x45, 0x50, 0x55, 0x5a, 0x54, 0x09, 0x52, 0xaa, 0xaa, 0x55, 0xcb, 0x85, 0x69, - 0x7b, 0xd1, 0x9b, 0xd5, 0xc6, 0x1e, 0x1c, 0x0b, 0xdb, 0xeb, 0xee, 0x2e, 0x25, 0xe9, 0x43, 0xf4, - 0x41, 0x7a, 0xd7, 0x37, 0xea, 0xa3, 0x54, 0xde, 0xdd, 0xfc, 0x12, 0xa0, 0x12, 0x77, 0xde, 0x99, - 0x6f, 0xbe, 0xfd, 0xc6, 0x9e, 0xf9, 0x0c, 0x9b, 0xaa, 0x27, 0xb8, 0x52, 0x09, 0x8a, 0x90, 0x29, - 0xd6, 0xca, 0x05, 0x57, 0x9c, 0x54, 0xa7, 0x82, 0x5e, 0x0d, 0xd6, 0xdf, 0xb3, 0xbe, 0xcf, 0x14, - 0x4a, 0x1f, 0xbf, 0x5c, 0xa1, 0x54, 0xde, 0x77, 0x07, 0x36, 0xc6, 0x31, 0x99, 0xf3, 0x4c, 0x22, - 0x39, 0x86, 0xb2, 0x28, 0x02, 0xae, 0xd3, 0x28, 0x35, 0x2b, 0xed, 0xfd, 0xd6, 0x34, 0xf7, 0x2c, - 0xbe, 0xa5, 0x4f, 0xaf, 0x32, 0x25, 0x06, 0xbe, 0x29, 0xac, 0x1f, 0x02, 0x8c, 0x83, 0x64, 0x03, - 0x4a, 0x97, 0x38, 0x70, 0x9d, 0x86, 0xd3, 0x5c, 0xf1, 0x8b, 0x47, 0xb2, 0x05, 0xe5, 0xaf, 0x2c, - 0xb9, 0x42, 0x77, 0xa1, 0xe1, 0x34, 0x4b, 0xbe, 0x39, 0x3c, 0x5f, 0x38, 0x74, 0xbc, 0x47, 0x50, - 0x3b, 0x47, 0x65, 0xaf, 0xb0, 0x2a, 0x09, 0x81, 0xc5, 0x82, 0x57, 0x33, 0x94, 0x7c, 0xfd, 0xec, - 0xed, 0x03, 0x99, 0x04, 0x5a, 0xe9, 0x5b, 0x50, 0xce, 0x58, 0x6a, 0xa5, 0xaf, 0xf8, 0xe6, 0xe0, - 0xfd, 0x58, 0x82, 0xea, 0x4b, 0x9e, 0x5d, 0xc4, 0xd1, 0x95, 0x60, 0x2a, 0xe6, 0x19, 0x39, 0x82, - 0xba, 0x62, 0x22, 0x42, 0x45, 0x05, 0xe6, 0x49, 0x1c, 0xe8, 0x28, 0x4d, 0x58, 0x44, 0x25, 0x06, - 0xf6, 0x9e, 0x1d, 0x83, 0xf0, 0xc7, 0x80, 0x77, 0x2c, 0x3a, 0xc7, 0x80, 0x3c, 0x81, 0x9d, 0x94, - 0xf5, 0xe7, 0x56, 0x9a, 0x7e, 0xb6, 0x52, 0xd6, 0xbf, 0x59, 0xf6, 0x1f, 0xac, 0xc6, 0x59, 0xac, - 0x62, 0x96, 0x50, 0xdd, 0x4d, 0x49, 0x63, 0x2b, 0x36, 0x56, 0xb4, 0x51, 0x40, 0x0a, 0xe6, 0x38, - 0x0b, 0x04, 0x32, 0x89, 0xee, 0x62, 0xc3, 0x69, 0x3a, 0x7e, 0x25, 0x65, 0xfd, 0x37, 0x36, 0x44, - 0x1e, 0x03, 0xc1, 0x14, 0x45, 0x84, 0x59, 0x30, 0xa0, 0x21, 0x5a, 0x60, 0x59, 0x03, 0x6b, 0xa3, - 0xcc, 0xa9, 0x4d, 0x90, 0xb7, 0xe0, 0xa5, 0x71, 0x46, 0x43, 0xdb, 0x38, 0xed, 0xa2, 0xba, 0x46, - 0xcc, 0x46, 0x57, 0x48, 0x2d, 0x7b, 0x49, 0x4b, 0xf9, 0x37, 0x8d, 0xb3, 0x53, 0x0b, 0xec, 0x18, - 0xdc, 0xf0, 0x5a, 0x59, 0x34, 0x50, 0x70, 0xb1, 0xfe, 0x7d, 0x5c, 0x7f, 0x59, 0x2e, 0xd6, 0xbf, - 0x8f, 0x6b, 0x9e, 0xae, 0x61, 0x47, 0x86, 0x6b, 0xf9, 0x36, 0x5d, 0xc3, 0xfe, 0x34, 0xd7, 0x33, - 0xd8, 0x95, 0xb9, 0x40, 0x16, 0xd2, 0x2e, 0x0b, 0x2e, 0x13, 0x1e, 0x51, 0x16, 0x08, 0x2e, 0x0d, - 0xc5, 0x8a, 0xa6, 0xd8, 0x36, 0x80, 0x8e, 0xc9, 0x9f, 0xe8, 0xb4, 0x2d, 0x8d, 0xa3, 0x8c, 0x0b, - 0xa4, 0x19, 0x95, 0x09, 0xbf, 0x46, 0x39, 0x9a, 0x08, 0xe9, 0x42, 0xc3, 0x69, 0x96, 0xfd, 0x6d, - 0x03, 0x38, 0x3b, 0x37, 0x69, 0xfb, 0x5d, 0x25, 0x79, 0x0a, 0xee, 0xcd, 0xd2, 0x90, 0x67, 0xc9, - 0x40, 0xba, 0x15, 0x5d, 0xf9, 0xf7, 0x4c, 0xa5, 0x49, 0x92, 0x36, 0x6c, 0xb3, 0x08, 0x69, 0x97, - 0x85, 0x7a, 0x0e, 0x28, 0xbb, 0x50, 0x28, 0xb4, 0xd6, 0x55, 0xad, 0x95, 0xb0, 0x08, 0x3b, 0x2c, - 0x2c, 0x06, 0xe2, 0xa4, 0x48, 0x15, 0x3a, 0xf7, 0xa1, 0x36, 0xc2, 0x8f, 0xa6, 0xa3, 0xaa, 0x3f, - 0xfa, 0x7a, 0xd7, 0x60, 0x47, 0x13, 0xf2, 0x02, 0xf6, 0xf4, 0x78, 0x6a, 0xee, 0x3c, 0x17, 0x9c, - 0x05, 0x3d, 0xaa, 0x7a, 0x02, 0x65, 0x8f, 0x27, 0xa1, 0xbb, 0xa6, 0xab, 0xdc, 0xd4, 0x6c, 0xce, - 0x89, 0x05, 0x7c, 0x18, 0xe6, 0xbd, 0x63, 0xd8, 0x79, 0x8d, 0x6a, 0x6a, 0x5d, 0x86, 0x7b, 0xf8, - 0x3f, 0xac, 0x8d, 0xac, 0x80, 0x16, 0xab, 0x65, 0x77, 0x7a, 0xec, 0x33, 0x67, 0x2c, 0x45, 0xef, - 0x97, 0x03, 0xee, 0x4d, 0x0a, 0xbb, 0xa1, 0x01, 0xac, 0x05, 0x93, 0x89, 0xa1, 0xcb, 0x1c, 0xcd, - 0xb8, 0xcc, 0x6d, 0x04, 0xad, 0xa9, 0xa8, 0xb5, 0x9d, 0x19, 0xca, 0x3a, 0x85, 0xcd, 0x39, 0xb0, - 0x39, 0x46, 0xd4, 0x9e, 0x34, 0xa2, 0x4a, 0xfb, 0x9f, 0x19, 0x11, 0xd3, 0x0a, 0x26, 0x6c, 0xea, - 0xa7, 0x03, 0xf5, 0x8f, 0x79, 0xc8, 0x14, 0x3e, 0xe0, 0x45, 0x91, 0x0e, 0x54, 0xa7, 0x84, 0xff, - 0x91, 0x8a, 0xe9, 0x12, 0xd2, 0x84, 0x8d, 0x80, 0xe7, 0x03, 0xfa, 0x0d, 0x05, 0xa7, 0x5a, 0xa0, - 0xd4, 0xce, 0xb2, 0x5c, 0xbc, 0x94, 0x7c, 0xf0, 0x19, 0x05, 0xff, 0xa4, 0xa3, 0xde, 0x01, 0xec, - 0xcd, 0x95, 0x7c, 0xa7, 0x75, 0x76, 0x60, 0xd7, 0x47, 0xf9, 0xb0, 0x79, 0x68, 0x43, 0x7d, 0x1e, - 0xc7, 0x5d, 0xf7, 0x76, 0x97, 0xf4, 0x1f, 0xec, 0xe0, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xad, - 0x29, 0x6c, 0x04, 0xd8, 0x06, 0x00, 0x00, +func init() { proto.RegisterFile("throttlerdata.proto", fileDescriptor_throttlerdata_7d084fd3a7704c85) } + +var fileDescriptor_throttlerdata_7d084fd3a7704c85 = []byte{ + // 734 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x55, 0x5f, 0x4f, 0x03, 0x45, + 0x10, 0xcf, 0x51, 0x8a, 0x30, 0xa5, 0x40, 0x17, 0x84, 0xa3, 0x18, 0x53, 0x2f, 0x31, 0x36, 0x8d, + 0xb6, 0x49, 0x89, 0x11, 0x25, 0x26, 0x50, 0x31, 0x46, 0xa3, 0x3c, 0x1c, 0xea, 0x03, 0x2f, 0x9b, + 0xed, 0xdd, 0x70, 0xbd, 0x70, 0x77, 0x7b, 0xee, 0x2e, 0xd0, 0xfa, 0x21, 0xfc, 0x20, 0xbe, 0xf9, + 0x8d, 0xfc, 0x28, 0xe6, 0x76, 0xb7, 0x7f, 0xae, 0x14, 0x30, 0xe1, 0x6d, 0x77, 0xe6, 0x37, 0xbf, + 0xf9, 0xcd, 0xde, 0xcc, 0x1c, 0xec, 0xab, 0x91, 0xe0, 0x4a, 0x25, 0x28, 0x42, 0xa6, 0x58, 0x37, + 0x17, 0x5c, 0x71, 0x52, 0x2f, 0x19, 0xbd, 0x06, 0xec, 0xfe, 0xc2, 0xc6, 0x3e, 0x53, 0x28, 0x7d, + 0xfc, 0xe3, 0x01, 0xa5, 0xf2, 0xfe, 0x72, 0x60, 0x6f, 0x6e, 0x93, 0x39, 0xcf, 0x24, 0x92, 0x0b, + 0xa8, 0x8a, 0xc2, 0xe0, 0x3a, 0xad, 0x4a, 0xbb, 0xd6, 0xef, 0x74, 0xcb, 0xdc, 0xcb, 0xf8, 0xae, + 0xbe, 0x7d, 0x9f, 0x29, 0x31, 0xf1, 0x4d, 0x60, 0xf3, 0x0c, 0x60, 0x6e, 0x24, 0x7b, 0x50, 0xb9, + 0xc7, 0x89, 0xeb, 0xb4, 0x9c, 0xf6, 0x96, 0x5f, 0x1c, 0xc9, 0x01, 0x54, 0x1f, 0x59, 0xf2, 0x80, + 0xee, 0x5a, 0xcb, 0x69, 0x57, 0x7c, 0x73, 0xf9, 0x66, 0xed, 0xcc, 0xf1, 0x3e, 0x83, 0xc6, 0x0d, + 0x2a, 0x9b, 0xc2, 0xaa, 0x24, 0x04, 0xd6, 0x0b, 0x5e, 0xcd, 0x50, 0xf1, 0xf5, 0xd9, 0xeb, 0x00, + 0x59, 0x04, 0x5a, 0xe9, 0x07, 0x50, 0xcd, 0x58, 0x6a, 0xa5, 0x6f, 0xf9, 0xe6, 0xe2, 0xfd, 0xbd, + 0x01, 0xf5, 0xef, 0x78, 0x76, 0x17, 0x47, 0x0f, 0x82, 0xa9, 0x98, 0x67, 0xe4, 0x1c, 0x9a, 0x8a, + 0x89, 0x08, 0x15, 0x15, 0x98, 0x27, 0x71, 0xa0, 0xad, 0x34, 0x61, 0x11, 0x95, 0x18, 0xd8, 0x3c, + 0x47, 0x06, 0xe1, 0xcf, 0x01, 0x3f, 0xb3, 0xe8, 0x06, 0x03, 0xf2, 0x25, 0x1c, 0xa5, 0x6c, 0xbc, + 0x32, 0xd2, 0xd4, 0x73, 0x90, 0xb2, 0xf1, 0xf3, 0xb0, 0x4f, 0x60, 0x3b, 0xce, 0x62, 0x15, 0xb3, + 0x84, 0xea, 0x6a, 0x2a, 0x1a, 0x5b, 0xb3, 0xb6, 0xa2, 0x8c, 0x02, 0x52, 0x30, 0xc7, 0x59, 0x20, + 0x90, 0x49, 0x74, 0xd7, 0x5b, 0x4e, 0xdb, 0xf1, 0x6b, 0x29, 0x1b, 0xff, 0x68, 0x4d, 0xe4, 0x0b, + 0x20, 0x98, 0xa2, 0x88, 0x30, 0x0b, 0x26, 0x34, 0x44, 0x0b, 0xac, 0x6a, 0x60, 0x63, 0xe6, 0xb9, + 0xb2, 0x0e, 0xf2, 0x13, 0x78, 0x69, 0x9c, 0xd1, 0xd0, 0x16, 0x4e, 0x87, 0xa8, 0x9e, 0x10, 0xb3, + 0x59, 0x0a, 0xa9, 0x65, 0x6f, 0x68, 0x29, 0x1f, 0xa7, 0x71, 0x76, 0x65, 0x81, 0x03, 0x83, 0x9b, + 0xa6, 0x95, 0x45, 0x01, 0x05, 0x17, 0x1b, 0xbf, 0xc5, 0xf5, 0x81, 0xe5, 0x62, 0xe3, 0xb7, 0xb8, + 0x56, 0xe9, 0x9a, 0x56, 0x64, 0xb8, 0x36, 0x5f, 0xd2, 0x35, 0xad, 0x4f, 0x73, 0x7d, 0x0d, 0xc7, + 0x32, 0x17, 0xc8, 0x42, 0x3a, 0x64, 0xc1, 0x7d, 0xc2, 0x23, 0xca, 0x02, 0xc1, 0xa5, 0xa1, 0xd8, + 0xd2, 0x14, 0x87, 0x06, 0x30, 0x30, 0xfe, 0x4b, 0xed, 0xb6, 0xa1, 0x71, 0x94, 0x71, 0x81, 0x34, + 0xa3, 0x32, 0xe1, 0x4f, 0x28, 0x67, 0x1d, 0x21, 0x5d, 0x68, 0x39, 0xed, 0xaa, 0x7f, 0x68, 0x00, + 0xd7, 0x37, 0xc6, 0x6d, 0xbf, 0xab, 0x24, 0x5f, 0x81, 0xfb, 0x3c, 0x34, 0xe4, 0x59, 0x32, 0x91, + 0x6e, 0x4d, 0x47, 0x7e, 0xb8, 0x14, 0x69, 0x9c, 0xa4, 0x0f, 0x87, 0x2c, 0x42, 0x3a, 0x64, 0xa1, + 0xee, 0x03, 0xca, 0xee, 0x14, 0x0a, 0xad, 0x75, 0x5b, 0x6b, 0x25, 0x2c, 0xc2, 0x01, 0x0b, 0x8b, + 0x86, 0xb8, 0x2c, 0x5c, 0x85, 0xce, 0x0e, 0x34, 0x66, 0xf8, 0x59, 0x77, 0xd4, 0xf5, 0x47, 0xdf, + 0x1d, 0x1a, 0xec, 0xac, 0x43, 0xbe, 0x85, 0x13, 0xdd, 0x9e, 0x9a, 0x3b, 0xcf, 0x05, 0x67, 0xc1, + 0x88, 0xaa, 0x91, 0x40, 0x39, 0xe2, 0x49, 0xe8, 0xee, 0xe8, 0x28, 0x37, 0x35, 0x93, 0x73, 0x69, + 0x01, 0xbf, 0x4e, 0xfd, 0xde, 0x05, 0x1c, 0xfd, 0x80, 0xaa, 0x34, 0x2e, 0xd3, 0x39, 0xfc, 0x14, + 0x76, 0x66, 0xab, 0x80, 0x16, 0xa3, 0x65, 0x67, 0x7a, 0xbe, 0x67, 0xae, 0x59, 0x8a, 0xde, 0xbf, + 0x0e, 0xb8, 0xcf, 0x29, 0xec, 0x84, 0x06, 0xb0, 0x13, 0x2c, 0x3a, 0xa6, 0x5b, 0xe6, 0x7c, 0x69, + 0xcb, 0xbc, 0x44, 0xd0, 0x2d, 0x59, 0xed, 0xda, 0x59, 0xa2, 0x6c, 0x52, 0xd8, 0x5f, 0x01, 0x5b, + 0xb1, 0x88, 0xfa, 0x8b, 0x8b, 0xa8, 0xd6, 0xff, 0x68, 0x49, 0x44, 0x59, 0xc1, 0xc2, 0x9a, 0xfa, + 0xc7, 0x81, 0xe6, 0x6f, 0x79, 0xc8, 0x14, 0xbe, 0xe3, 0xa1, 0xc8, 0x00, 0xea, 0x25, 0xe1, 0xff, + 0x4b, 0x45, 0x39, 0x84, 0xb4, 0x61, 0x2f, 0xe0, 0xf9, 0x84, 0xfe, 0x89, 0x82, 0x53, 0x2d, 0x50, + 0xea, 0xcd, 0xb2, 0x59, 0x3c, 0x4a, 0x3e, 0xb9, 0x45, 0xc1, 0x7f, 0xd7, 0x56, 0xef, 0x14, 0x4e, + 0x56, 0x4a, 0x7e, 0x75, 0x75, 0x0e, 0xe0, 0xd8, 0x47, 0xf9, 0xbe, 0x7e, 0xe8, 0x43, 0x73, 0x15, + 0xc7, 0x6b, 0x79, 0x07, 0x9f, 0xdf, 0x76, 0x1e, 0x63, 0x85, 0x52, 0x76, 0x63, 0xde, 0x33, 0xa7, + 0x5e, 0xc4, 0x7b, 0x8f, 0xaa, 0xa7, 0x7f, 0x6d, 0xbd, 0xd2, 0x0b, 0x0d, 0x37, 0xb4, 0xf1, 0xf4, + 0xbf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6c, 0xe5, 0x12, 0x96, 0x06, 0x07, 0x00, 0x00, } diff --git a/go/vt/proto/throttlerservice/throttlerservice.pb.go b/go/vt/proto/throttlerservice/throttlerservice.pb.go index 3190ad246a3..b5537799e0a 100644 --- a/go/vt/proto/throttlerservice/throttlerservice.pb.go +++ b/go/vt/proto/throttlerservice/throttlerservice.pb.go @@ -1,15 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: throttlerservice.proto -/* -Package throttlerservice is a generated protocol buffer package. - -It is generated from these files: - throttlerservice.proto - -It has these top-level messages: -*/ -package throttlerservice +package throttlerservice // import "vitess.io/vitess/go/vt/proto/throttlerservice" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -262,22 +254,26 @@ var _Throttler_serviceDesc = grpc.ServiceDesc{ Metadata: "throttlerservice.proto", } -func init() { proto.RegisterFile("throttlerservice.proto", fileDescriptor0) } +func init() { + proto.RegisterFile("throttlerservice.proto", fileDescriptor_throttlerservice_151ce3faa7ac0b15) +} -var fileDescriptor0 = []byte{ - // 214 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2b, 0xc9, 0x28, 0xca, - 0x2f, 0x29, 0xc9, 0x49, 0x2d, 0x2a, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2b, 0x28, 0xca, - 0x2f, 0xc9, 0x17, 0x12, 0x40, 0x17, 0x97, 0x12, 0x86, 0x8b, 0xa4, 0x24, 0x96, 0x24, 0x42, 0x94, - 0x19, 0x7d, 0x66, 0xe6, 0xe2, 0x0c, 0x81, 0x89, 0x0b, 0xf9, 0x72, 0x71, 0xf8, 0x26, 0x56, 0x04, - 0x25, 0x96, 0xa4, 0x16, 0x0b, 0xc9, 0xe9, 0xa1, 0xaa, 0x87, 0x49, 0x04, 0xa5, 0x16, 0x96, 0xa6, - 0x16, 0x97, 0x48, 0xc9, 0xe3, 0x94, 0x2f, 0x2e, 0xc8, 0xcf, 0x2b, 0x4e, 0x55, 0x62, 0x10, 0x0a, - 0xe6, 0xe2, 0x0a, 0x4e, 0x2d, 0x81, 0x4a, 0x08, 0x29, 0xa0, 0x69, 0x40, 0x48, 0xc1, 0x8c, 0x54, - 0xc4, 0xa3, 0x02, 0x6e, 0x68, 0x2a, 0x97, 0x80, 0x7b, 0x6a, 0x89, 0x73, 0x7e, 0x5e, 0x5a, 0x66, - 0x7a, 0x69, 0x51, 0x62, 0x49, 0x66, 0x7e, 0x9e, 0x90, 0x1a, 0x9a, 0x46, 0x74, 0x05, 0x30, 0x0b, - 0xd4, 0x09, 0xaa, 0x83, 0x5b, 0x93, 0xc7, 0x25, 0x1c, 0x5a, 0x90, 0x92, 0x58, 0x92, 0x8a, 0x6a, - 0x93, 0x26, 0x9a, 0x09, 0x58, 0xd4, 0xc0, 0x2c, 0xd3, 0x22, 0x46, 0x29, 0xdc, 0xbe, 0x6c, 0x2e, - 0xa1, 0xa0, 0xd4, 0x62, 0x74, 0x8f, 0x69, 0xa0, 0x99, 0x81, 0xa9, 0x04, 0x66, 0x9b, 0x26, 0x11, - 0x2a, 0x61, 0x96, 0x25, 0xb1, 0x81, 0x23, 0xdf, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x86, 0xea, - 0x23, 0xff, 0x3d, 0x02, 0x00, 0x00, +var fileDescriptor_throttlerservice_151ce3faa7ac0b15 = []byte{ + // 241 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0x3d, 0x4b, 0xc4, 0x40, + 0x10, 0x86, 0x05, 0x41, 0x74, 0xaa, 0x63, 0x0f, 0x2c, 0xae, 0xf0, 0xab, 0x50, 0x4f, 0x30, 0x0b, + 0xfa, 0x0f, 0xb4, 0xb0, 0xba, 0x26, 0xa7, 0x8d, 0xdd, 0xea, 0x8d, 0x71, 0x51, 0x76, 0xe2, 0xce, + 0x24, 0xf8, 0xbf, 0xfd, 0x03, 0x42, 0xe2, 0xae, 0x64, 0xfc, 0xb8, 0x74, 0xe1, 0x7d, 0x9f, 0x7d, + 0x1f, 0x02, 0x03, 0xbb, 0xf2, 0x1c, 0x49, 0xe4, 0x15, 0x23, 0x63, 0x6c, 0xfd, 0x23, 0x16, 0x75, + 0x24, 0x21, 0x33, 0xd1, 0xf9, 0x6c, 0x9a, 0x93, 0x95, 0x13, 0xd7, 0x63, 0x17, 0x1f, 0x9b, 0xb0, + 0x73, 0x9b, 0x72, 0xb3, 0x80, 0xed, 0x85, 0x7b, 0x2f, 0x9d, 0x20, 0x9b, 0xbd, 0x62, 0xc8, 0xa7, + 0xa2, 0xc4, 0xb7, 0x06, 0x59, 0x66, 0xfb, 0x7f, 0xf6, 0x5c, 0x53, 0x60, 0x3c, 0xda, 0x30, 0x4b, + 0x80, 0x25, 0xca, 0x57, 0x61, 0x0e, 0xd4, 0x83, 0xef, 0x2a, 0x4d, 0x1e, 0xfe, 0x43, 0xe4, 0x51, + 0x84, 0xc9, 0x0d, 0xca, 0x35, 0x85, 0x27, 0x5f, 0x35, 0xd1, 0x89, 0xa7, 0x60, 0x8e, 0xd5, 0x43, + 0x0d, 0x24, 0xc1, 0xc9, 0x5a, 0x2e, 0x6b, 0x02, 0x4c, 0xef, 0xea, 0x95, 0x13, 0x1c, 0x9a, 0xe6, + 0x6a, 0xe1, 0x17, 0x26, 0xc9, 0xce, 0xc6, 0xa0, 0xd9, 0xf7, 0x02, 0xa6, 0x44, 0xd6, 0x3f, 0x76, + 0xaa, 0x36, 0x7e, 0x22, 0xc9, 0x36, 0x1f, 0x41, 0x26, 0xd9, 0x95, 0xbd, 0x3f, 0x6f, 0xbd, 0x20, + 0x73, 0xe1, 0xc9, 0xf6, 0x5f, 0xb6, 0x22, 0xdb, 0x8a, 0xed, 0xae, 0xc2, 0xea, 0xdb, 0x79, 0xd8, + 0xea, 0xf2, 0xcb, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x49, 0x64, 0xc0, 0xd9, 0x6e, 0x02, 0x00, + 0x00, } diff --git a/go/vt/proto/topodata/topodata.pb.go b/go/vt/proto/topodata/topodata.pb.go index ac0d572c309..a9743090119 100644 --- a/go/vt/proto/topodata/topodata.pb.go +++ b/go/vt/proto/topodata/topodata.pb.go @@ -1,24 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: topodata.proto -/* -Package topodata is a generated protocol buffer package. - -It is generated from these files: - topodata.proto - -It has these top-level messages: - KeyRange - TabletAlias - Tablet - Shard - Keyspace - ShardReplication - ShardReference - SrvKeyspace - CellInfo -*/ -package topodata +package topodata // import "vitess.io/vitess/go/vt/proto/topodata" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -64,7 +47,9 @@ var KeyspaceIdType_value = map[string]int32{ func (x KeyspaceIdType) String() string { return proto.EnumName(KeyspaceIdType_name, int32(x)) } -func (KeyspaceIdType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (KeyspaceIdType) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{0} +} // TabletType represents the type of a given tablet. type TabletType int32 @@ -131,19 +116,43 @@ var TabletType_value = map[string]int32{ func (x TabletType) String() string { return proto.EnumName(TabletType_name, int32(x)) } -func (TabletType) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +func (TabletType) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{1} +} // KeyRange describes a range of sharding keys, when range-based // sharding is used. type KeyRange struct { - Start []byte `protobuf:"bytes,1,opt,name=start,proto3" json:"start,omitempty"` - End []byte `protobuf:"bytes,2,opt,name=end,proto3" json:"end,omitempty"` + Start []byte `protobuf:"bytes,1,opt,name=start,proto3" json:"start,omitempty"` + End []byte `protobuf:"bytes,2,opt,name=end,proto3" json:"end,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *KeyRange) Reset() { *m = KeyRange{} } -func (m *KeyRange) String() string { return proto.CompactTextString(m) } -func (*KeyRange) ProtoMessage() {} -func (*KeyRange) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (m *KeyRange) Reset() { *m = KeyRange{} } +func (m *KeyRange) String() string { return proto.CompactTextString(m) } +func (*KeyRange) ProtoMessage() {} +func (*KeyRange) Descriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{0} +} +func (m *KeyRange) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_KeyRange.Unmarshal(m, b) +} +func (m *KeyRange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_KeyRange.Marshal(b, m, deterministic) +} +func (dst *KeyRange) XXX_Merge(src proto.Message) { + xxx_messageInfo_KeyRange.Merge(dst, src) +} +func (m *KeyRange) XXX_Size() int { + return xxx_messageInfo_KeyRange.Size(m) +} +func (m *KeyRange) XXX_DiscardUnknown() { + xxx_messageInfo_KeyRange.DiscardUnknown(m) +} + +var xxx_messageInfo_KeyRange proto.InternalMessageInfo func (m *KeyRange) GetStart() []byte { if m != nil { @@ -165,13 +174,35 @@ type TabletAlias struct { Cell string `protobuf:"bytes,1,opt,name=cell" json:"cell,omitempty"` // uid is a unique id for this tablet within the shard // (this is the MySQL server id as well). - Uid uint32 `protobuf:"varint,2,opt,name=uid" json:"uid,omitempty"` + Uid uint32 `protobuf:"varint,2,opt,name=uid" json:"uid,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *TabletAlias) Reset() { *m = TabletAlias{} } +func (m *TabletAlias) String() string { return proto.CompactTextString(m) } +func (*TabletAlias) ProtoMessage() {} +func (*TabletAlias) Descriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{1} +} +func (m *TabletAlias) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_TabletAlias.Unmarshal(m, b) +} +func (m *TabletAlias) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_TabletAlias.Marshal(b, m, deterministic) +} +func (dst *TabletAlias) XXX_Merge(src proto.Message) { + xxx_messageInfo_TabletAlias.Merge(dst, src) +} +func (m *TabletAlias) XXX_Size() int { + return xxx_messageInfo_TabletAlias.Size(m) +} +func (m *TabletAlias) XXX_DiscardUnknown() { + xxx_messageInfo_TabletAlias.DiscardUnknown(m) } -func (m *TabletAlias) Reset() { *m = TabletAlias{} } -func (m *TabletAlias) String() string { return proto.CompactTextString(m) } -func (*TabletAlias) ProtoMessage() {} -func (*TabletAlias) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +var xxx_messageInfo_TabletAlias proto.InternalMessageInfo func (m *TabletAlias) GetCell() string { if m != nil { @@ -219,13 +250,35 @@ type Tablet struct { // MySQL port. Use topoproto.MysqlPort and topoproto.SetMysqlPort // to access this variable. The functions provide support // for legacy behavior. - MysqlPort int32 `protobuf:"varint,13,opt,name=mysql_port,json=mysqlPort" json:"mysql_port,omitempty"` + MysqlPort int32 `protobuf:"varint,13,opt,name=mysql_port,json=mysqlPort" json:"mysql_port,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Tablet) Reset() { *m = Tablet{} } +func (m *Tablet) String() string { return proto.CompactTextString(m) } +func (*Tablet) ProtoMessage() {} +func (*Tablet) Descriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{2} +} +func (m *Tablet) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Tablet.Unmarshal(m, b) +} +func (m *Tablet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Tablet.Marshal(b, m, deterministic) +} +func (dst *Tablet) XXX_Merge(src proto.Message) { + xxx_messageInfo_Tablet.Merge(dst, src) +} +func (m *Tablet) XXX_Size() int { + return xxx_messageInfo_Tablet.Size(m) +} +func (m *Tablet) XXX_DiscardUnknown() { + xxx_messageInfo_Tablet.DiscardUnknown(m) } -func (m *Tablet) Reset() { *m = Tablet{} } -func (m *Tablet) String() string { return proto.CompactTextString(m) } -func (*Tablet) ProtoMessage() {} -func (*Tablet) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } +var xxx_messageInfo_Tablet proto.InternalMessageInfo func (m *Tablet) GetAlias() *TabletAlias { if m != nil { @@ -331,13 +384,35 @@ type Shard struct { Cells []string `protobuf:"bytes,5,rep,name=cells" json:"cells,omitempty"` // tablet_controls has at most one entry per TabletType. // The keyspace lock is always taken when changing this. - TabletControls []*Shard_TabletControl `protobuf:"bytes,6,rep,name=tablet_controls,json=tabletControls" json:"tablet_controls,omitempty"` + TabletControls []*Shard_TabletControl `protobuf:"bytes,6,rep,name=tablet_controls,json=tabletControls" json:"tablet_controls,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Shard) Reset() { *m = Shard{} } +func (m *Shard) String() string { return proto.CompactTextString(m) } +func (*Shard) ProtoMessage() {} +func (*Shard) Descriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{3} +} +func (m *Shard) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Shard.Unmarshal(m, b) +} +func (m *Shard) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Shard.Marshal(b, m, deterministic) +} +func (dst *Shard) XXX_Merge(src proto.Message) { + xxx_messageInfo_Shard.Merge(dst, src) +} +func (m *Shard) XXX_Size() int { + return xxx_messageInfo_Shard.Size(m) +} +func (m *Shard) XXX_DiscardUnknown() { + xxx_messageInfo_Shard.DiscardUnknown(m) } -func (m *Shard) Reset() { *m = Shard{} } -func (m *Shard) String() string { return proto.CompactTextString(m) } -func (*Shard) ProtoMessage() {} -func (*Shard) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } +var xxx_messageInfo_Shard proto.InternalMessageInfo func (m *Shard) GetMasterAlias() *TabletAlias { if m != nil { @@ -383,14 +458,36 @@ func (m *Shard) GetTabletControls() []*Shard_TabletControl { // ServedType is an entry in the served_types type Shard_ServedType struct { - TabletType TabletType `protobuf:"varint,1,opt,name=tablet_type,json=tabletType,enum=topodata.TabletType" json:"tablet_type,omitempty"` - Cells []string `protobuf:"bytes,2,rep,name=cells" json:"cells,omitempty"` + TabletType TabletType `protobuf:"varint,1,opt,name=tablet_type,json=tabletType,enum=topodata.TabletType" json:"tablet_type,omitempty"` + Cells []string `protobuf:"bytes,2,rep,name=cells" json:"cells,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *Shard_ServedType) Reset() { *m = Shard_ServedType{} } -func (m *Shard_ServedType) String() string { return proto.CompactTextString(m) } -func (*Shard_ServedType) ProtoMessage() {} -func (*Shard_ServedType) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3, 0} } +func (m *Shard_ServedType) Reset() { *m = Shard_ServedType{} } +func (m *Shard_ServedType) String() string { return proto.CompactTextString(m) } +func (*Shard_ServedType) ProtoMessage() {} +func (*Shard_ServedType) Descriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{3, 0} +} +func (m *Shard_ServedType) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Shard_ServedType.Unmarshal(m, b) +} +func (m *Shard_ServedType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Shard_ServedType.Marshal(b, m, deterministic) +} +func (dst *Shard_ServedType) XXX_Merge(src proto.Message) { + xxx_messageInfo_Shard_ServedType.Merge(dst, src) +} +func (m *Shard_ServedType) XXX_Size() int { + return xxx_messageInfo_Shard_ServedType.Size(m) +} +func (m *Shard_ServedType) XXX_DiscardUnknown() { + xxx_messageInfo_Shard_ServedType.DiscardUnknown(m) +} + +var xxx_messageInfo_Shard_ServedType proto.InternalMessageInfo func (m *Shard_ServedType) GetTabletType() TabletType { if m != nil { @@ -419,13 +516,35 @@ type Shard_SourceShard struct { // the source shard keyrange KeyRange *KeyRange `protobuf:"bytes,4,opt,name=key_range,json=keyRange" json:"key_range,omitempty"` // the source table list to replicate - Tables []string `protobuf:"bytes,5,rep,name=tables" json:"tables,omitempty"` + Tables []string `protobuf:"bytes,5,rep,name=tables" json:"tables,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *Shard_SourceShard) Reset() { *m = Shard_SourceShard{} } -func (m *Shard_SourceShard) String() string { return proto.CompactTextString(m) } -func (*Shard_SourceShard) ProtoMessage() {} -func (*Shard_SourceShard) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3, 1} } +func (m *Shard_SourceShard) Reset() { *m = Shard_SourceShard{} } +func (m *Shard_SourceShard) String() string { return proto.CompactTextString(m) } +func (*Shard_SourceShard) ProtoMessage() {} +func (*Shard_SourceShard) Descriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{3, 1} +} +func (m *Shard_SourceShard) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Shard_SourceShard.Unmarshal(m, b) +} +func (m *Shard_SourceShard) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Shard_SourceShard.Marshal(b, m, deterministic) +} +func (dst *Shard_SourceShard) XXX_Merge(src proto.Message) { + xxx_messageInfo_Shard_SourceShard.Merge(dst, src) +} +func (m *Shard_SourceShard) XXX_Size() int { + return xxx_messageInfo_Shard_SourceShard.Size(m) +} +func (m *Shard_SourceShard) XXX_DiscardUnknown() { + xxx_messageInfo_Shard_SourceShard.DiscardUnknown(m) +} + +var xxx_messageInfo_Shard_SourceShard proto.InternalMessageInfo func (m *Shard_SourceShard) GetUid() uint32 { if m != nil { @@ -468,14 +587,36 @@ type Shard_TabletControl struct { TabletType TabletType `protobuf:"varint,1,opt,name=tablet_type,json=tabletType,enum=topodata.TabletType" json:"tablet_type,omitempty"` Cells []string `protobuf:"bytes,2,rep,name=cells" json:"cells,omitempty"` // what to do - DisableQueryService bool `protobuf:"varint,3,opt,name=disable_query_service,json=disableQueryService" json:"disable_query_service,omitempty"` - BlacklistedTables []string `protobuf:"bytes,4,rep,name=blacklisted_tables,json=blacklistedTables" json:"blacklisted_tables,omitempty"` + DisableQueryService bool `protobuf:"varint,3,opt,name=disable_query_service,json=disableQueryService" json:"disable_query_service,omitempty"` + BlacklistedTables []string `protobuf:"bytes,4,rep,name=blacklisted_tables,json=blacklistedTables" json:"blacklisted_tables,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Shard_TabletControl) Reset() { *m = Shard_TabletControl{} } +func (m *Shard_TabletControl) String() string { return proto.CompactTextString(m) } +func (*Shard_TabletControl) ProtoMessage() {} +func (*Shard_TabletControl) Descriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{3, 2} +} +func (m *Shard_TabletControl) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Shard_TabletControl.Unmarshal(m, b) +} +func (m *Shard_TabletControl) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Shard_TabletControl.Marshal(b, m, deterministic) +} +func (dst *Shard_TabletControl) XXX_Merge(src proto.Message) { + xxx_messageInfo_Shard_TabletControl.Merge(dst, src) +} +func (m *Shard_TabletControl) XXX_Size() int { + return xxx_messageInfo_Shard_TabletControl.Size(m) +} +func (m *Shard_TabletControl) XXX_DiscardUnknown() { + xxx_messageInfo_Shard_TabletControl.DiscardUnknown(m) } -func (m *Shard_TabletControl) Reset() { *m = Shard_TabletControl{} } -func (m *Shard_TabletControl) String() string { return proto.CompactTextString(m) } -func (*Shard_TabletControl) ProtoMessage() {} -func (*Shard_TabletControl) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3, 2} } +var xxx_messageInfo_Shard_TabletControl proto.InternalMessageInfo func (m *Shard_TabletControl) GetTabletType() TabletType { if m != nil { @@ -515,13 +656,35 @@ type Keyspace struct { ShardingColumnType KeyspaceIdType `protobuf:"varint,2,opt,name=sharding_column_type,json=shardingColumnType,enum=topodata.KeyspaceIdType" json:"sharding_column_type,omitempty"` // ServedFrom will redirect the appropriate traffic to // another keyspace. - ServedFroms []*Keyspace_ServedFrom `protobuf:"bytes,4,rep,name=served_froms,json=servedFroms" json:"served_froms,omitempty"` + ServedFroms []*Keyspace_ServedFrom `protobuf:"bytes,4,rep,name=served_froms,json=servedFroms" json:"served_froms,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *Keyspace) Reset() { *m = Keyspace{} } -func (m *Keyspace) String() string { return proto.CompactTextString(m) } -func (*Keyspace) ProtoMessage() {} -func (*Keyspace) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} } +func (m *Keyspace) Reset() { *m = Keyspace{} } +func (m *Keyspace) String() string { return proto.CompactTextString(m) } +func (*Keyspace) ProtoMessage() {} +func (*Keyspace) Descriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{4} +} +func (m *Keyspace) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Keyspace.Unmarshal(m, b) +} +func (m *Keyspace) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Keyspace.Marshal(b, m, deterministic) +} +func (dst *Keyspace) XXX_Merge(src proto.Message) { + xxx_messageInfo_Keyspace.Merge(dst, src) +} +func (m *Keyspace) XXX_Size() int { + return xxx_messageInfo_Keyspace.Size(m) +} +func (m *Keyspace) XXX_DiscardUnknown() { + xxx_messageInfo_Keyspace.DiscardUnknown(m) +} + +var xxx_messageInfo_Keyspace proto.InternalMessageInfo func (m *Keyspace) GetShardingColumnName() string { if m != nil { @@ -552,13 +715,35 @@ type Keyspace_ServedFrom struct { // the cells to limit this to Cells []string `protobuf:"bytes,2,rep,name=cells" json:"cells,omitempty"` // the keyspace name that's serving it - Keyspace string `protobuf:"bytes,3,opt,name=keyspace" json:"keyspace,omitempty"` + Keyspace string `protobuf:"bytes,3,opt,name=keyspace" json:"keyspace,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Keyspace_ServedFrom) Reset() { *m = Keyspace_ServedFrom{} } +func (m *Keyspace_ServedFrom) String() string { return proto.CompactTextString(m) } +func (*Keyspace_ServedFrom) ProtoMessage() {} +func (*Keyspace_ServedFrom) Descriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{4, 0} +} +func (m *Keyspace_ServedFrom) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Keyspace_ServedFrom.Unmarshal(m, b) +} +func (m *Keyspace_ServedFrom) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Keyspace_ServedFrom.Marshal(b, m, deterministic) +} +func (dst *Keyspace_ServedFrom) XXX_Merge(src proto.Message) { + xxx_messageInfo_Keyspace_ServedFrom.Merge(dst, src) +} +func (m *Keyspace_ServedFrom) XXX_Size() int { + return xxx_messageInfo_Keyspace_ServedFrom.Size(m) +} +func (m *Keyspace_ServedFrom) XXX_DiscardUnknown() { + xxx_messageInfo_Keyspace_ServedFrom.DiscardUnknown(m) } -func (m *Keyspace_ServedFrom) Reset() { *m = Keyspace_ServedFrom{} } -func (m *Keyspace_ServedFrom) String() string { return proto.CompactTextString(m) } -func (*Keyspace_ServedFrom) ProtoMessage() {} -func (*Keyspace_ServedFrom) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4, 0} } +var xxx_messageInfo_Keyspace_ServedFrom proto.InternalMessageInfo func (m *Keyspace_ServedFrom) GetTabletType() TabletType { if m != nil { @@ -586,13 +771,35 @@ func (m *Keyspace_ServedFrom) GetKeyspace() string { type ShardReplication struct { // Note there can be only one Node in this array // for a given tablet. - Nodes []*ShardReplication_Node `protobuf:"bytes,1,rep,name=nodes" json:"nodes,omitempty"` + Nodes []*ShardReplication_Node `protobuf:"bytes,1,rep,name=nodes" json:"nodes,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ShardReplication) Reset() { *m = ShardReplication{} } +func (m *ShardReplication) String() string { return proto.CompactTextString(m) } +func (*ShardReplication) ProtoMessage() {} +func (*ShardReplication) Descriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{5} +} +func (m *ShardReplication) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ShardReplication.Unmarshal(m, b) +} +func (m *ShardReplication) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ShardReplication.Marshal(b, m, deterministic) +} +func (dst *ShardReplication) XXX_Merge(src proto.Message) { + xxx_messageInfo_ShardReplication.Merge(dst, src) +} +func (m *ShardReplication) XXX_Size() int { + return xxx_messageInfo_ShardReplication.Size(m) +} +func (m *ShardReplication) XXX_DiscardUnknown() { + xxx_messageInfo_ShardReplication.DiscardUnknown(m) } -func (m *ShardReplication) Reset() { *m = ShardReplication{} } -func (m *ShardReplication) String() string { return proto.CompactTextString(m) } -func (*ShardReplication) ProtoMessage() {} -func (*ShardReplication) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } +var xxx_messageInfo_ShardReplication proto.InternalMessageInfo func (m *ShardReplication) GetNodes() []*ShardReplication_Node { if m != nil { @@ -603,13 +810,35 @@ func (m *ShardReplication) GetNodes() []*ShardReplication_Node { // Node describes a tablet instance within the cell type ShardReplication_Node struct { - TabletAlias *TabletAlias `protobuf:"bytes,1,opt,name=tablet_alias,json=tabletAlias" json:"tablet_alias,omitempty"` + TabletAlias *TabletAlias `protobuf:"bytes,1,opt,name=tablet_alias,json=tabletAlias" json:"tablet_alias,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ShardReplication_Node) Reset() { *m = ShardReplication_Node{} } -func (m *ShardReplication_Node) String() string { return proto.CompactTextString(m) } -func (*ShardReplication_Node) ProtoMessage() {} -func (*ShardReplication_Node) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5, 0} } +func (m *ShardReplication_Node) Reset() { *m = ShardReplication_Node{} } +func (m *ShardReplication_Node) String() string { return proto.CompactTextString(m) } +func (*ShardReplication_Node) ProtoMessage() {} +func (*ShardReplication_Node) Descriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{5, 0} +} +func (m *ShardReplication_Node) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ShardReplication_Node.Unmarshal(m, b) +} +func (m *ShardReplication_Node) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ShardReplication_Node.Marshal(b, m, deterministic) +} +func (dst *ShardReplication_Node) XXX_Merge(src proto.Message) { + xxx_messageInfo_ShardReplication_Node.Merge(dst, src) +} +func (m *ShardReplication_Node) XXX_Size() int { + return xxx_messageInfo_ShardReplication_Node.Size(m) +} +func (m *ShardReplication_Node) XXX_DiscardUnknown() { + xxx_messageInfo_ShardReplication_Node.DiscardUnknown(m) +} + +var xxx_messageInfo_ShardReplication_Node proto.InternalMessageInfo func (m *ShardReplication_Node) GetTabletAlias() *TabletAlias { if m != nil { @@ -621,14 +850,36 @@ func (m *ShardReplication_Node) GetTabletAlias() *TabletAlias { // ShardReference is used as a pointer from a SrvKeyspace to a Shard type ShardReference struct { // Copied from Shard. - Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` - KeyRange *KeyRange `protobuf:"bytes,2,opt,name=key_range,json=keyRange" json:"key_range,omitempty"` + Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` + KeyRange *KeyRange `protobuf:"bytes,2,opt,name=key_range,json=keyRange" json:"key_range,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ShardReference) Reset() { *m = ShardReference{} } +func (m *ShardReference) String() string { return proto.CompactTextString(m) } +func (*ShardReference) ProtoMessage() {} +func (*ShardReference) Descriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{6} +} +func (m *ShardReference) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ShardReference.Unmarshal(m, b) +} +func (m *ShardReference) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ShardReference.Marshal(b, m, deterministic) +} +func (dst *ShardReference) XXX_Merge(src proto.Message) { + xxx_messageInfo_ShardReference.Merge(dst, src) +} +func (m *ShardReference) XXX_Size() int { + return xxx_messageInfo_ShardReference.Size(m) +} +func (m *ShardReference) XXX_DiscardUnknown() { + xxx_messageInfo_ShardReference.DiscardUnknown(m) } -func (m *ShardReference) Reset() { *m = ShardReference{} } -func (m *ShardReference) String() string { return proto.CompactTextString(m) } -func (*ShardReference) ProtoMessage() {} -func (*ShardReference) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} } +var xxx_messageInfo_ShardReference proto.InternalMessageInfo func (m *ShardReference) GetName() string { if m != nil { @@ -649,15 +900,37 @@ type SrvKeyspace struct { // The partitions this keyspace is serving, per tablet type. Partitions []*SrvKeyspace_KeyspacePartition `protobuf:"bytes,1,rep,name=partitions" json:"partitions,omitempty"` // copied from Keyspace - ShardingColumnName string `protobuf:"bytes,2,opt,name=sharding_column_name,json=shardingColumnName" json:"sharding_column_name,omitempty"` - ShardingColumnType KeyspaceIdType `protobuf:"varint,3,opt,name=sharding_column_type,json=shardingColumnType,enum=topodata.KeyspaceIdType" json:"sharding_column_type,omitempty"` - ServedFrom []*SrvKeyspace_ServedFrom `protobuf:"bytes,4,rep,name=served_from,json=servedFrom" json:"served_from,omitempty"` + ShardingColumnName string `protobuf:"bytes,2,opt,name=sharding_column_name,json=shardingColumnName" json:"sharding_column_name,omitempty"` + ShardingColumnType KeyspaceIdType `protobuf:"varint,3,opt,name=sharding_column_type,json=shardingColumnType,enum=topodata.KeyspaceIdType" json:"sharding_column_type,omitempty"` + ServedFrom []*SrvKeyspace_ServedFrom `protobuf:"bytes,4,rep,name=served_from,json=servedFrom" json:"served_from,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SrvKeyspace) Reset() { *m = SrvKeyspace{} } +func (m *SrvKeyspace) String() string { return proto.CompactTextString(m) } +func (*SrvKeyspace) ProtoMessage() {} +func (*SrvKeyspace) Descriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{7} +} +func (m *SrvKeyspace) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SrvKeyspace.Unmarshal(m, b) +} +func (m *SrvKeyspace) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SrvKeyspace.Marshal(b, m, deterministic) +} +func (dst *SrvKeyspace) XXX_Merge(src proto.Message) { + xxx_messageInfo_SrvKeyspace.Merge(dst, src) +} +func (m *SrvKeyspace) XXX_Size() int { + return xxx_messageInfo_SrvKeyspace.Size(m) +} +func (m *SrvKeyspace) XXX_DiscardUnknown() { + xxx_messageInfo_SrvKeyspace.DiscardUnknown(m) } -func (m *SrvKeyspace) Reset() { *m = SrvKeyspace{} } -func (m *SrvKeyspace) String() string { return proto.CompactTextString(m) } -func (*SrvKeyspace) ProtoMessage() {} -func (*SrvKeyspace) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} } +var xxx_messageInfo_SrvKeyspace proto.InternalMessageInfo func (m *SrvKeyspace) GetPartitions() []*SrvKeyspace_KeyspacePartition { if m != nil { @@ -691,15 +964,35 @@ type SrvKeyspace_KeyspacePartition struct { // The type this partition applies to. ServedType TabletType `protobuf:"varint,1,opt,name=served_type,json=servedType,enum=topodata.TabletType" json:"served_type,omitempty"` // List of non-overlapping continuous shards sorted by range. - ShardReferences []*ShardReference `protobuf:"bytes,2,rep,name=shard_references,json=shardReferences" json:"shard_references,omitempty"` + ShardReferences []*ShardReference `protobuf:"bytes,2,rep,name=shard_references,json=shardReferences" json:"shard_references,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *SrvKeyspace_KeyspacePartition) Reset() { *m = SrvKeyspace_KeyspacePartition{} } func (m *SrvKeyspace_KeyspacePartition) String() string { return proto.CompactTextString(m) } func (*SrvKeyspace_KeyspacePartition) ProtoMessage() {} func (*SrvKeyspace_KeyspacePartition) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{7, 0} + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{7, 0} } +func (m *SrvKeyspace_KeyspacePartition) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SrvKeyspace_KeyspacePartition.Unmarshal(m, b) +} +func (m *SrvKeyspace_KeyspacePartition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SrvKeyspace_KeyspacePartition.Marshal(b, m, deterministic) +} +func (dst *SrvKeyspace_KeyspacePartition) XXX_Merge(src proto.Message) { + xxx_messageInfo_SrvKeyspace_KeyspacePartition.Merge(dst, src) +} +func (m *SrvKeyspace_KeyspacePartition) XXX_Size() int { + return xxx_messageInfo_SrvKeyspace_KeyspacePartition.Size(m) +} +func (m *SrvKeyspace_KeyspacePartition) XXX_DiscardUnknown() { + xxx_messageInfo_SrvKeyspace_KeyspacePartition.DiscardUnknown(m) +} + +var xxx_messageInfo_SrvKeyspace_KeyspacePartition proto.InternalMessageInfo func (m *SrvKeyspace_KeyspacePartition) GetServedType() TabletType { if m != nil { @@ -721,13 +1014,35 @@ type SrvKeyspace_ServedFrom struct { // the tablet type TabletType TabletType `protobuf:"varint,1,opt,name=tablet_type,json=tabletType,enum=topodata.TabletType" json:"tablet_type,omitempty"` // the keyspace name that's serving it - Keyspace string `protobuf:"bytes,2,opt,name=keyspace" json:"keyspace,omitempty"` + Keyspace string `protobuf:"bytes,2,opt,name=keyspace" json:"keyspace,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *SrvKeyspace_ServedFrom) Reset() { *m = SrvKeyspace_ServedFrom{} } -func (m *SrvKeyspace_ServedFrom) String() string { return proto.CompactTextString(m) } -func (*SrvKeyspace_ServedFrom) ProtoMessage() {} -func (*SrvKeyspace_ServedFrom) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7, 1} } +func (m *SrvKeyspace_ServedFrom) Reset() { *m = SrvKeyspace_ServedFrom{} } +func (m *SrvKeyspace_ServedFrom) String() string { return proto.CompactTextString(m) } +func (*SrvKeyspace_ServedFrom) ProtoMessage() {} +func (*SrvKeyspace_ServedFrom) Descriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{7, 1} +} +func (m *SrvKeyspace_ServedFrom) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SrvKeyspace_ServedFrom.Unmarshal(m, b) +} +func (m *SrvKeyspace_ServedFrom) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SrvKeyspace_ServedFrom.Marshal(b, m, deterministic) +} +func (dst *SrvKeyspace_ServedFrom) XXX_Merge(src proto.Message) { + xxx_messageInfo_SrvKeyspace_ServedFrom.Merge(dst, src) +} +func (m *SrvKeyspace_ServedFrom) XXX_Size() int { + return xxx_messageInfo_SrvKeyspace_ServedFrom.Size(m) +} +func (m *SrvKeyspace_ServedFrom) XXX_DiscardUnknown() { + xxx_messageInfo_SrvKeyspace_ServedFrom.DiscardUnknown(m) +} + +var xxx_messageInfo_SrvKeyspace_ServedFrom proto.InternalMessageInfo func (m *SrvKeyspace_ServedFrom) GetTabletType() TabletType { if m != nil { @@ -757,13 +1072,35 @@ type CellInfo struct { Root string `protobuf:"bytes,2,opt,name=root" json:"root,omitempty"` // Region is a group this cell belongs to. Used by vtgate to route traffic to // other cells (in same region) when there is no available tablet in the current cell. - Region string `protobuf:"bytes,3,opt,name=region" json:"region,omitempty"` + Region string `protobuf:"bytes,3,opt,name=region" json:"region,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CellInfo) Reset() { *m = CellInfo{} } +func (m *CellInfo) String() string { return proto.CompactTextString(m) } +func (*CellInfo) ProtoMessage() {} +func (*CellInfo) Descriptor() ([]byte, []int) { + return fileDescriptor_topodata_cb9e1ed4dfa42564, []int{8} +} +func (m *CellInfo) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CellInfo.Unmarshal(m, b) +} +func (m *CellInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CellInfo.Marshal(b, m, deterministic) +} +func (dst *CellInfo) XXX_Merge(src proto.Message) { + xxx_messageInfo_CellInfo.Merge(dst, src) +} +func (m *CellInfo) XXX_Size() int { + return xxx_messageInfo_CellInfo.Size(m) +} +func (m *CellInfo) XXX_DiscardUnknown() { + xxx_messageInfo_CellInfo.DiscardUnknown(m) } -func (m *CellInfo) Reset() { *m = CellInfo{} } -func (m *CellInfo) String() string { return proto.CompactTextString(m) } -func (*CellInfo) ProtoMessage() {} -func (*CellInfo) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} } +var xxx_messageInfo_CellInfo proto.InternalMessageInfo func (m *CellInfo) GetServerAddress() string { if m != nil { @@ -790,6 +1127,8 @@ func init() { proto.RegisterType((*KeyRange)(nil), "topodata.KeyRange") proto.RegisterType((*TabletAlias)(nil), "topodata.TabletAlias") proto.RegisterType((*Tablet)(nil), "topodata.Tablet") + proto.RegisterMapType((map[string]int32)(nil), "topodata.Tablet.PortMapEntry") + proto.RegisterMapType((map[string]string)(nil), "topodata.Tablet.TagsEntry") proto.RegisterType((*Shard)(nil), "topodata.Shard") proto.RegisterType((*Shard_ServedType)(nil), "topodata.Shard.ServedType") proto.RegisterType((*Shard_SourceShard)(nil), "topodata.Shard.SourceShard") @@ -807,79 +1146,80 @@ func init() { proto.RegisterEnum("topodata.TabletType", TabletType_name, TabletType_value) } -func init() { proto.RegisterFile("topodata.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 1129 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xdf, 0x6f, 0xe2, 0xc6, - 0x13, 0xff, 0x1a, 0x0c, 0x81, 0x31, 0x70, 0xce, 0x7e, 0x73, 0x95, 0xe5, 0xea, 0x54, 0x84, 0x54, - 0x15, 0x5d, 0x55, 0x5a, 0x71, 0xbd, 0x36, 0x3a, 0xa9, 0x52, 0x08, 0xe1, 0x7a, 0xe4, 0x07, 0xa1, - 0x0b, 0x51, 0x9b, 0x87, 0xca, 0x72, 0xf0, 0x26, 0x67, 0xc5, 0x78, 0xb9, 0xdd, 0x25, 0x12, 0x7f, - 0xc3, 0x3d, 0xf4, 0x9e, 0xfb, 0x9f, 0xf4, 0xa9, 0x8f, 0xfd, 0xb7, 0xaa, 0xdd, 0xb5, 0xc1, 0x90, - 0x26, 0xcd, 0x55, 0x79, 0xca, 0xce, 0xee, 0xcc, 0x78, 0x3e, 0x9f, 0xf9, 0xcc, 0x04, 0xa8, 0x09, - 0x3a, 0xa3, 0x81, 0x2f, 0xfc, 0xd6, 0x8c, 0x51, 0x41, 0x51, 0x29, 0xb5, 0x1b, 0x6d, 0x28, 0x1d, - 0x91, 0x05, 0xf6, 0xe3, 0x2b, 0x82, 0x76, 0xa0, 0xc0, 0x85, 0xcf, 0x84, 0x63, 0xd4, 0x8d, 0x66, - 0x05, 0x6b, 0x03, 0xd9, 0x90, 0x27, 0x71, 0xe0, 0xe4, 0xd4, 0x9d, 0x3c, 0x36, 0x5e, 0x80, 0x35, - 0xf6, 0x2f, 0x22, 0x22, 0x3a, 0x51, 0xe8, 0x73, 0x84, 0xc0, 0x9c, 0x90, 0x28, 0x52, 0x51, 0x65, - 0xac, 0xce, 0x32, 0x68, 0x1e, 0xea, 0xa0, 0x2a, 0x96, 0xc7, 0xc6, 0x1f, 0x26, 0x14, 0x75, 0x14, - 0xfa, 0x12, 0x0a, 0xbe, 0x8c, 0x54, 0x11, 0x56, 0xfb, 0x69, 0x6b, 0x59, 0x5d, 0x26, 0x2d, 0xd6, - 0x3e, 0xc8, 0x85, 0xd2, 0x5b, 0xca, 0x45, 0xec, 0x4f, 0x89, 0x4a, 0x57, 0xc6, 0x4b, 0x1b, 0xed, - 0x42, 0x69, 0x46, 0x99, 0xf0, 0xa6, 0xfe, 0xcc, 0x31, 0xeb, 0xf9, 0xa6, 0xd5, 0x7e, 0xb6, 0x99, - 0xab, 0x35, 0xa4, 0x4c, 0x9c, 0xf8, 0xb3, 0x5e, 0x2c, 0xd8, 0x02, 0x6f, 0xcd, 0xb4, 0x25, 0xb3, - 0x5e, 0x93, 0x05, 0x9f, 0xf9, 0x13, 0xe2, 0x14, 0x74, 0xd6, 0xd4, 0x56, 0x34, 0xbc, 0xf5, 0x59, - 0xe0, 0x14, 0xd5, 0x83, 0x36, 0xd0, 0xd7, 0x50, 0xbe, 0x26, 0x0b, 0x8f, 0x49, 0xa6, 0x9c, 0x2d, - 0x55, 0x38, 0x5a, 0x7d, 0x2c, 0xe5, 0x50, 0xa5, 0xd1, 0x6c, 0x36, 0xc1, 0x14, 0x8b, 0x19, 0x71, - 0x4a, 0x75, 0xa3, 0x59, 0x6b, 0xef, 0x6c, 0x16, 0x36, 0x5e, 0xcc, 0x08, 0x56, 0x1e, 0xa8, 0x09, - 0x76, 0x70, 0xe1, 0x49, 0x44, 0x1e, 0xbd, 0x21, 0x8c, 0x85, 0x01, 0x71, 0xca, 0xea, 0xdb, 0xb5, - 0xe0, 0x62, 0xe0, 0x4f, 0xc9, 0x69, 0x72, 0x8b, 0x5a, 0x60, 0x0a, 0xff, 0x8a, 0x3b, 0xa0, 0xc0, - 0xba, 0xb7, 0xc0, 0x8e, 0xfd, 0x2b, 0xae, 0x91, 0x2a, 0x3f, 0xf4, 0x39, 0xd4, 0xa6, 0x0b, 0xfe, - 0x2e, 0xf2, 0x96, 0x14, 0x56, 0x54, 0xde, 0xaa, 0xba, 0x7d, 0x93, 0xf2, 0xf8, 0x0c, 0x40, 0xbb, - 0x49, 0x7a, 0x9c, 0x6a, 0xdd, 0x68, 0x16, 0x70, 0x59, 0xdd, 0x48, 0xf6, 0xdc, 0x57, 0x50, 0xc9, - 0xb2, 0x28, 0x9b, 0x7b, 0x4d, 0x16, 0x49, 0xbf, 0xe5, 0x51, 0x52, 0x76, 0xe3, 0x47, 0x73, 0xdd, - 0xa1, 0x02, 0xd6, 0xc6, 0xab, 0xdc, 0xae, 0xe1, 0x7e, 0x0f, 0xe5, 0x65, 0x51, 0xff, 0x16, 0x58, - 0xce, 0x04, 0x1e, 0x9a, 0xa5, 0xbc, 0x6d, 0x1e, 0x9a, 0x25, 0xcb, 0xae, 0x34, 0xde, 0x17, 0xa1, - 0x30, 0x52, 0x5d, 0xd8, 0x85, 0xca, 0xd4, 0xe7, 0x82, 0x30, 0xef, 0x01, 0x0a, 0xb2, 0xb4, 0xab, - 0x56, 0xe9, 0x5a, 0xff, 0x72, 0x0f, 0xe8, 0xdf, 0x0f, 0x50, 0xe1, 0x84, 0xdd, 0x90, 0xc0, 0x93, - 0x4d, 0xe2, 0x4e, 0x7e, 0x93, 0x73, 0x55, 0x51, 0x6b, 0xa4, 0x7c, 0x54, 0x37, 0x2d, 0xbe, 0x3c, - 0x73, 0xb4, 0x07, 0x55, 0x4e, 0xe7, 0x6c, 0x42, 0x3c, 0xa5, 0x1f, 0x9e, 0x08, 0xf4, 0xd3, 0x5b, - 0xf1, 0xca, 0x49, 0x9d, 0x71, 0x85, 0xaf, 0x0c, 0x2e, 0xb9, 0x91, 0xb3, 0xc4, 0x9d, 0x42, 0x3d, - 0x2f, 0xb9, 0x51, 0x06, 0x7a, 0x0d, 0x4f, 0x84, 0xc2, 0xe8, 0x4d, 0x68, 0x2c, 0x18, 0x8d, 0xb8, - 0x53, 0xdc, 0x94, 0xbe, 0xce, 0xac, 0xa9, 0xe8, 0x6a, 0x2f, 0x5c, 0x13, 0x59, 0x93, 0xbb, 0xe7, - 0x00, 0xab, 0xd2, 0xd1, 0x4b, 0xb0, 0x92, 0xac, 0x4a, 0xb3, 0xc6, 0x3d, 0x9a, 0x05, 0xb1, 0x3c, - 0xaf, 0x4a, 0xcc, 0x65, 0x4a, 0x74, 0x7f, 0x37, 0xc0, 0xca, 0xc0, 0x4a, 0x97, 0x81, 0xb1, 0x5c, - 0x06, 0x6b, 0xe3, 0x97, 0xbb, 0x6b, 0xfc, 0xf2, 0x77, 0x8e, 0x9f, 0xf9, 0x80, 0xf6, 0x7d, 0x02, - 0x45, 0x55, 0x68, 0x4a, 0x5f, 0x62, 0xb9, 0x7f, 0x1a, 0x50, 0x5d, 0x63, 0xe6, 0x51, 0xb1, 0xa3, - 0x36, 0x3c, 0x0d, 0x42, 0x2e, 0xbd, 0xbc, 0x77, 0x73, 0xc2, 0x16, 0x9e, 0xd4, 0x44, 0x38, 0x21, - 0x0a, 0x4d, 0x09, 0xff, 0x3f, 0x79, 0xfc, 0x49, 0xbe, 0x8d, 0xf4, 0x13, 0xfa, 0x0a, 0xd0, 0x45, - 0xe4, 0x4f, 0xae, 0xa3, 0x90, 0x0b, 0x29, 0x37, 0x5d, 0xb6, 0xa9, 0xd2, 0x6e, 0x67, 0x5e, 0x54, - 0x21, 0xbc, 0xf1, 0x57, 0x4e, 0xed, 0x6c, 0xcd, 0xd6, 0x37, 0xb0, 0xa3, 0x08, 0x0a, 0xe3, 0x2b, - 0x6f, 0x42, 0xa3, 0xf9, 0x34, 0x56, 0x8b, 0x24, 0x99, 0x31, 0x94, 0xbe, 0x75, 0xd5, 0x93, 0xdc, - 0x25, 0xe8, 0xf0, 0x76, 0x84, 0xc2, 0x9d, 0x53, 0xb8, 0x9d, 0x35, 0x52, 0xd5, 0x37, 0xfa, 0x5a, - 0xdd, 0x1b, 0xb9, 0x14, 0x07, 0x7b, 0xcb, 0x19, 0xb9, 0x64, 0x74, 0xca, 0x6f, 0x2f, 0xe1, 0x34, - 0x47, 0x32, 0x26, 0xaf, 0x19, 0x9d, 0xa6, 0x63, 0x22, 0xcf, 0xdc, 0x9d, 0xa7, 0x32, 0x94, 0xe6, - 0xe3, 0xb6, 0x22, 0x2b, 0xb2, 0xfc, 0xba, 0xc8, 0xf4, 0x76, 0x69, 0xbc, 0x37, 0xc0, 0xd6, 0x93, - 0x47, 0x66, 0x51, 0x38, 0xf1, 0x45, 0x48, 0x63, 0xf4, 0x12, 0x0a, 0x31, 0x0d, 0x88, 0xdc, 0x2d, - 0x12, 0xcc, 0x67, 0x1b, 0x63, 0x95, 0x71, 0x6d, 0x0d, 0x68, 0x40, 0xb0, 0xf6, 0x76, 0xf7, 0xc0, - 0x94, 0xa6, 0xdc, 0x50, 0x09, 0x84, 0x87, 0x6c, 0x28, 0xb1, 0x32, 0x1a, 0x67, 0x50, 0x4b, 0xbe, - 0x70, 0x49, 0x18, 0x89, 0x27, 0x44, 0xfe, 0x67, 0xcd, 0x34, 0x53, 0x9d, 0x3f, 0x7a, 0x8f, 0x35, - 0x3e, 0x98, 0x60, 0x8d, 0xd8, 0xcd, 0x52, 0x31, 0x3f, 0x02, 0xcc, 0x7c, 0x26, 0x42, 0x89, 0x20, - 0x05, 0xf9, 0x45, 0x06, 0xe4, 0xca, 0x75, 0xd9, 0xbd, 0x61, 0xea, 0x8f, 0x33, 0xa1, 0x77, 0x4a, - 0x2f, 0xf7, 0xd1, 0xd2, 0xcb, 0xff, 0x07, 0xe9, 0x75, 0xc0, 0xca, 0x48, 0x2f, 0x51, 0x5e, 0xfd, - 0x9f, 0x71, 0x64, 0xc4, 0x07, 0x2b, 0xf1, 0xb9, 0xbf, 0x19, 0xb0, 0x7d, 0x0b, 0xa2, 0xd4, 0x60, - 0x66, 0xef, 0xdf, 0xaf, 0xc1, 0xd5, 0xc2, 0x47, 0x5d, 0xb0, 0x55, 0x95, 0x1e, 0x4b, 0xdb, 0xa7, - 0xe5, 0x68, 0x65, 0x71, 0xad, 0xf7, 0x17, 0x3f, 0xe1, 0x6b, 0x36, 0x77, 0xbd, 0xc7, 0x98, 0x86, - 0x7b, 0x96, 0xeb, 0xa1, 0x59, 0x2a, 0xd8, 0xc5, 0xc6, 0xaf, 0x50, 0xea, 0x92, 0x28, 0xea, 0xc7, - 0x97, 0x54, 0xfe, 0x44, 0x50, 0x28, 0x98, 0xe7, 0x07, 0x01, 0x23, 0x9c, 0x27, 0x6a, 0xab, 0xea, - 0xdb, 0x8e, 0xbe, 0x94, 0x52, 0x64, 0x94, 0x8a, 0x24, 0xa1, 0x3a, 0xcb, 0x15, 0xcb, 0xc8, 0x55, - 0x48, 0xe3, 0x64, 0xbc, 0x12, 0xeb, 0x79, 0x1b, 0x6a, 0xeb, 0x0d, 0x44, 0x65, 0x28, 0x9c, 0x0d, - 0x46, 0xbd, 0xb1, 0xfd, 0x3f, 0x04, 0x50, 0x3c, 0xeb, 0x0f, 0xc6, 0xdf, 0x7d, 0x6b, 0x1b, 0xf2, - 0x7a, 0xff, 0x7c, 0xdc, 0x1b, 0xd9, 0xb9, 0xe7, 0x1f, 0x0c, 0x80, 0x15, 0x1e, 0x64, 0xc1, 0xd6, - 0xd9, 0xe0, 0x68, 0x70, 0xfa, 0xf3, 0x40, 0x87, 0x9c, 0x74, 0x46, 0xe3, 0x1e, 0xb6, 0x0d, 0xf9, - 0x80, 0x7b, 0xc3, 0xe3, 0x7e, 0xb7, 0x63, 0xe7, 0xe4, 0x03, 0x3e, 0x38, 0x1d, 0x1c, 0x9f, 0xdb, - 0x79, 0x95, 0xab, 0x33, 0xee, 0xbe, 0xd1, 0xc7, 0xd1, 0xb0, 0x83, 0x7b, 0xb6, 0x89, 0x6c, 0xa8, - 0xf4, 0x7e, 0x19, 0xf6, 0x70, 0xff, 0xa4, 0x37, 0x18, 0x77, 0x8e, 0xed, 0x82, 0x8c, 0xd9, 0xef, - 0x74, 0x8f, 0xce, 0x86, 0x76, 0x51, 0x27, 0x1b, 0x8d, 0x4f, 0x71, 0xcf, 0xde, 0x92, 0xc6, 0x01, - 0xee, 0xf4, 0x07, 0xbd, 0x03, 0xbb, 0xe4, 0xe6, 0x6c, 0x63, 0x7f, 0x1b, 0x9e, 0x84, 0xb4, 0x75, - 0x13, 0x0a, 0xc2, 0xb9, 0xfe, 0xdd, 0x7c, 0x51, 0x54, 0x7f, 0x5e, 0xfc, 0x1d, 0x00, 0x00, 0xff, - 0xff, 0xc7, 0x53, 0xa5, 0x90, 0x50, 0x0b, 0x00, 0x00, +func init() { proto.RegisterFile("topodata.proto", fileDescriptor_topodata_cb9e1ed4dfa42564) } + +var fileDescriptor_topodata_cb9e1ed4dfa42564 = []byte{ + // 1145 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x5f, 0x6f, 0xe2, 0x46, + 0x10, 0xaf, 0xc1, 0x10, 0x18, 0x03, 0xe7, 0xdb, 0xe6, 0x2a, 0xcb, 0xd5, 0xa9, 0x08, 0xe9, 0x54, + 0x74, 0x55, 0xa1, 0xe2, 0x7a, 0x6d, 0x74, 0x52, 0xa5, 0x10, 0xc2, 0xf5, 0xc8, 0x1f, 0x42, 0x0d, + 0x51, 0x9b, 0x4a, 0x95, 0xe5, 0xe0, 0x0d, 0x67, 0xc5, 0x78, 0xb9, 0xdd, 0x05, 0x89, 0xcf, 0x70, + 0x0f, 0xbd, 0xe7, 0x7e, 0x93, 0x3e, 0xf5, 0xb1, 0x5f, 0xab, 0xda, 0x5d, 0x1b, 0x0c, 0x69, 0xd2, + 0x5c, 0x95, 0xb7, 0x99, 0x9d, 0x3f, 0x9e, 0xf9, 0xcd, 0x6f, 0x06, 0xa0, 0xc2, 0xc9, 0x8c, 0xf8, + 0x1e, 0xf7, 0x1a, 0x33, 0x4a, 0x38, 0x41, 0x85, 0x44, 0xaf, 0xb5, 0xa0, 0x70, 0x8c, 0x97, 0x8e, + 0x17, 0x4d, 0x30, 0xda, 0x85, 0x1c, 0xe3, 0x1e, 0xe5, 0x96, 0x56, 0xd5, 0xea, 0x25, 0x47, 0x29, + 0xc8, 0x84, 0x2c, 0x8e, 0x7c, 0x2b, 0x23, 0xdf, 0x84, 0x58, 0x7b, 0x01, 0xc6, 0xc8, 0xbb, 0x0c, + 0x31, 0x6f, 0x87, 0x81, 0xc7, 0x10, 0x02, 0x7d, 0x8c, 0xc3, 0x50, 0x46, 0x15, 0x1d, 0x29, 0x8b, + 0xa0, 0x79, 0xa0, 0x82, 0xca, 0x8e, 0x10, 0x6b, 0x7f, 0xea, 0x90, 0x57, 0x51, 0xe8, 0x2b, 0xc8, + 0x79, 0x22, 0x52, 0x46, 0x18, 0xad, 0x27, 0x8d, 0x55, 0x75, 0xa9, 0xb4, 0x8e, 0xf2, 0x41, 0x36, + 0x14, 0xde, 0x12, 0xc6, 0x23, 0x6f, 0x8a, 0x65, 0xba, 0xa2, 0xb3, 0xd2, 0xd1, 0x1e, 0x14, 0x66, + 0x84, 0x72, 0x77, 0xea, 0xcd, 0x2c, 0xbd, 0x9a, 0xad, 0x1b, 0xad, 0xa7, 0xdb, 0xb9, 0x1a, 0x03, + 0x42, 0xf9, 0xa9, 0x37, 0xeb, 0x46, 0x9c, 0x2e, 0x9d, 0x9d, 0x99, 0xd2, 0x44, 0xd6, 0x6b, 0xbc, + 0x64, 0x33, 0x6f, 0x8c, 0xad, 0x9c, 0xca, 0x9a, 0xe8, 0x12, 0x86, 0xb7, 0x1e, 0xf5, 0xad, 0xbc, + 0x34, 0x28, 0x05, 0x35, 0xa1, 0x78, 0x8d, 0x97, 0x2e, 0x15, 0x48, 0x59, 0x3b, 0xb2, 0x70, 0xb4, + 0xfe, 0x58, 0x82, 0xa1, 0x4c, 0xa3, 0xd0, 0xac, 0x83, 0xce, 0x97, 0x33, 0x6c, 0x15, 0xaa, 0x5a, + 0xbd, 0xd2, 0xda, 0xdd, 0x2e, 0x6c, 0xb4, 0x9c, 0x61, 0x47, 0x7a, 0xa0, 0x3a, 0x98, 0xfe, 0xa5, + 0x2b, 0x3a, 0x72, 0xc9, 0x02, 0x53, 0x1a, 0xf8, 0xd8, 0x2a, 0xca, 0x6f, 0x57, 0xfc, 0xcb, 0xbe, + 0x37, 0xc5, 0x67, 0xf1, 0x2b, 0x6a, 0x80, 0xce, 0xbd, 0x09, 0xb3, 0x40, 0x36, 0x6b, 0xdf, 0x68, + 0x76, 0xe4, 0x4d, 0x98, 0xea, 0x54, 0xfa, 0xa1, 0x67, 0x50, 0x99, 0x2e, 0xd9, 0xbb, 0xd0, 0x5d, + 0x41, 0x58, 0x92, 0x79, 0xcb, 0xf2, 0xf5, 0x4d, 0x82, 0xe3, 0x53, 0x00, 0xe5, 0x26, 0xe0, 0xb1, + 0xca, 0x55, 0xad, 0x9e, 0x73, 0x8a, 0xf2, 0x45, 0xa0, 0x67, 0xbf, 0x82, 0x52, 0x1a, 0x45, 0x31, + 0xdc, 0x6b, 0xbc, 0x8c, 0xe7, 0x2d, 0x44, 0x01, 0xd9, 0xc2, 0x0b, 0xe7, 0x6a, 0x42, 0x39, 0x47, + 0x29, 0xaf, 0x32, 0x7b, 0x9a, 0xfd, 0x3d, 0x14, 0x57, 0x45, 0xfd, 0x57, 0x60, 0x31, 0x15, 0x78, + 0xa4, 0x17, 0xb2, 0xa6, 0x7e, 0xa4, 0x17, 0x0c, 0xb3, 0x54, 0x7b, 0x9f, 0x87, 0xdc, 0x50, 0x4e, + 0x61, 0x0f, 0x4a, 0x53, 0x8f, 0x71, 0x4c, 0xdd, 0x7b, 0x30, 0xc8, 0x50, 0xae, 0x8a, 0xa5, 0x1b, + 0xf3, 0xcb, 0xdc, 0x63, 0x7e, 0x3f, 0x40, 0x89, 0x61, 0xba, 0xc0, 0xbe, 0x2b, 0x86, 0xc4, 0xac, + 0xec, 0x36, 0xe6, 0xb2, 0xa2, 0xc6, 0x50, 0xfa, 0xc8, 0x69, 0x1a, 0x6c, 0x25, 0x33, 0xb4, 0x0f, + 0x65, 0x46, 0xe6, 0x74, 0x8c, 0x5d, 0xc9, 0x1f, 0x16, 0x13, 0xf4, 0xf3, 0x1b, 0xf1, 0xd2, 0x49, + 0xca, 0x4e, 0x89, 0xad, 0x15, 0x26, 0xb0, 0x11, 0xbb, 0xc4, 0xac, 0x5c, 0x35, 0x2b, 0xb0, 0x91, + 0x0a, 0x7a, 0x0d, 0x8f, 0xb8, 0xec, 0xd1, 0x1d, 0x93, 0x88, 0x53, 0x12, 0x32, 0x2b, 0xbf, 0x4d, + 0x7d, 0x95, 0x59, 0x41, 0xd1, 0x51, 0x5e, 0x4e, 0x85, 0xa7, 0x55, 0x66, 0x5f, 0x00, 0xac, 0x4b, + 0x47, 0x2f, 0xc1, 0x88, 0xb3, 0x4a, 0xce, 0x6a, 0x77, 0x70, 0x16, 0xf8, 0x4a, 0x5e, 0x97, 0x98, + 0x49, 0x95, 0x68, 0xff, 0xa1, 0x81, 0x91, 0x6a, 0x2b, 0x39, 0x06, 0xda, 0xea, 0x18, 0x6c, 0xac, + 0x5f, 0xe6, 0xb6, 0xf5, 0xcb, 0xde, 0xba, 0x7e, 0xfa, 0x3d, 0xc6, 0xf7, 0x19, 0xe4, 0x65, 0xa1, + 0x09, 0x7c, 0xb1, 0x66, 0xff, 0xa5, 0x41, 0x79, 0x03, 0x99, 0x07, 0xed, 0x1d, 0xb5, 0xe0, 0x89, + 0x1f, 0x30, 0xe1, 0xe5, 0xbe, 0x9b, 0x63, 0xba, 0x74, 0x05, 0x27, 0x82, 0x31, 0x96, 0xdd, 0x14, + 0x9c, 0x4f, 0x63, 0xe3, 0x4f, 0xc2, 0x36, 0x54, 0x26, 0xf4, 0x35, 0xa0, 0xcb, 0xd0, 0x1b, 0x5f, + 0x87, 0x01, 0xe3, 0x82, 0x6e, 0xaa, 0x6c, 0x5d, 0xa6, 0x7d, 0x9c, 0xb2, 0xc8, 0x42, 0x58, 0xed, + 0xef, 0x8c, 0xbc, 0xd9, 0x0a, 0xad, 0x6f, 0x60, 0x57, 0x02, 0x14, 0x44, 0x13, 0x77, 0x4c, 0xc2, + 0xf9, 0x34, 0x92, 0x87, 0x24, 0xde, 0x31, 0x94, 0xd8, 0x3a, 0xd2, 0x24, 0x6e, 0x09, 0x3a, 0xba, + 0x19, 0x21, 0xfb, 0xce, 0xc8, 0xbe, 0xad, 0x0d, 0x50, 0xe5, 0x37, 0x7a, 0x8a, 0xdd, 0x5b, 0xb9, + 0x24, 0x06, 0xfb, 0xab, 0x1d, 0xb9, 0xa2, 0x64, 0xca, 0x6e, 0x1e, 0xe1, 0x24, 0x47, 0xbc, 0x26, + 0xaf, 0x29, 0x99, 0x26, 0x6b, 0x22, 0x64, 0x66, 0xcf, 0x13, 0x1a, 0x0a, 0xf5, 0x61, 0x47, 0x91, + 0x26, 0x59, 0x76, 0x93, 0x64, 0xea, 0xba, 0xd4, 0xde, 0x6b, 0x60, 0xaa, 0xcd, 0xc3, 0xb3, 0x30, + 0x18, 0x7b, 0x3c, 0x20, 0x11, 0x7a, 0x09, 0xb9, 0x88, 0xf8, 0x58, 0xdc, 0x16, 0xd1, 0xcc, 0x17, + 0x5b, 0x6b, 0x95, 0x72, 0x6d, 0xf4, 0x89, 0x8f, 0x1d, 0xe5, 0x6d, 0xef, 0x83, 0x2e, 0x54, 0x71, + 0xa1, 0xe2, 0x16, 0xee, 0x73, 0xa1, 0xf8, 0x5a, 0xa9, 0x9d, 0x43, 0x25, 0xfe, 0xc2, 0x15, 0xa6, + 0x38, 0x1a, 0x63, 0xf1, 0xcb, 0x9a, 0x1a, 0xa6, 0x94, 0x3f, 0xfa, 0x8e, 0xd5, 0x3e, 0xe8, 0x60, + 0x0c, 0xe9, 0x62, 0xc5, 0x98, 0x1f, 0x01, 0x66, 0x1e, 0xe5, 0x81, 0xe8, 0x20, 0x69, 0xf2, 0xcb, + 0x54, 0x93, 0x6b, 0xd7, 0xd5, 0xf4, 0x06, 0x89, 0xbf, 0x93, 0x0a, 0xbd, 0x95, 0x7a, 0x99, 0x8f, + 0xa6, 0x5e, 0xf6, 0x7f, 0x50, 0xaf, 0x0d, 0x46, 0x8a, 0x7a, 0x31, 0xf3, 0xaa, 0xff, 0xde, 0x47, + 0x8a, 0x7c, 0xb0, 0x26, 0x9f, 0xfd, 0xbb, 0x06, 0x8f, 0x6f, 0xb4, 0x28, 0x38, 0x98, 0xba, 0xfb, + 0x77, 0x73, 0x70, 0x7d, 0xf0, 0x51, 0x07, 0x4c, 0x59, 0xa5, 0x4b, 0x93, 0xf1, 0x29, 0x3a, 0x1a, + 0xe9, 0xbe, 0x36, 0xe7, 0xeb, 0x3c, 0x62, 0x1b, 0x3a, 0xb3, 0xdd, 0x87, 0xd8, 0x86, 0x3b, 0x8e, + 0xeb, 0x91, 0x5e, 0xc8, 0x99, 0xf9, 0xda, 0x6f, 0x50, 0xe8, 0xe0, 0x30, 0xec, 0x45, 0x57, 0x44, + 0xfc, 0x45, 0x90, 0x5d, 0x50, 0xd7, 0xf3, 0x7d, 0x8a, 0x19, 0x8b, 0xd9, 0x56, 0x56, 0xaf, 0x6d, + 0xf5, 0x28, 0xa8, 0x48, 0x09, 0xe1, 0x71, 0x42, 0x29, 0x8b, 0x13, 0x4b, 0xf1, 0x24, 0x20, 0x51, + 0xbc, 0x5e, 0xb1, 0xf6, 0xbc, 0x05, 0x95, 0xcd, 0x01, 0xa2, 0x22, 0xe4, 0xce, 0xfb, 0xc3, 0xee, + 0xc8, 0xfc, 0x04, 0x01, 0xe4, 0xcf, 0x7b, 0xfd, 0xd1, 0x77, 0xdf, 0x9a, 0x9a, 0x78, 0x3e, 0xb8, + 0x18, 0x75, 0x87, 0x66, 0xe6, 0xf9, 0x07, 0x0d, 0x60, 0xdd, 0x0f, 0x32, 0x60, 0xe7, 0xbc, 0x7f, + 0xdc, 0x3f, 0xfb, 0xb9, 0xaf, 0x42, 0x4e, 0xdb, 0xc3, 0x51, 0xd7, 0x31, 0x35, 0x61, 0x70, 0xba, + 0x83, 0x93, 0x5e, 0xa7, 0x6d, 0x66, 0x84, 0xc1, 0x39, 0x3c, 0xeb, 0x9f, 0x5c, 0x98, 0x59, 0x99, + 0xab, 0x3d, 0xea, 0xbc, 0x51, 0xe2, 0x70, 0xd0, 0x76, 0xba, 0xa6, 0x8e, 0x4c, 0x28, 0x75, 0x7f, + 0x19, 0x74, 0x9d, 0xde, 0x69, 0xb7, 0x3f, 0x6a, 0x9f, 0x98, 0x39, 0x11, 0x73, 0xd0, 0xee, 0x1c, + 0x9f, 0x0f, 0xcc, 0xbc, 0x4a, 0x36, 0x1c, 0x9d, 0x39, 0x5d, 0x73, 0x47, 0x28, 0x87, 0x4e, 0xbb, + 0xd7, 0xef, 0x1e, 0x9a, 0x05, 0x3b, 0x63, 0x6a, 0x07, 0x7b, 0xf0, 0x28, 0x20, 0x8d, 0x45, 0xc0, + 0x31, 0x63, 0xea, 0x7f, 0xf3, 0xaf, 0xcf, 0x62, 0x2d, 0x20, 0x4d, 0x25, 0x35, 0x27, 0xa4, 0xb9, + 0xe0, 0x4d, 0x69, 0x6d, 0x26, 0x83, 0xb9, 0xcc, 0x4b, 0xfd, 0xc5, 0x3f, 0x01, 0x00, 0x00, 0xff, + 0xff, 0xad, 0xf5, 0xb6, 0x82, 0x77, 0x0b, 0x00, 0x00, } diff --git a/go/vt/proto/vschema/vschema.pb.go b/go/vt/proto/vschema/vschema.pb.go index df12c85b3c4..dbf7953a8c7 100644 --- a/go/vt/proto/vschema/vschema.pb.go +++ b/go/vt/proto/vschema/vschema.pb.go @@ -1,22 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: vschema.proto -/* -Package vschema is a generated protocol buffer package. - -It is generated from these files: - vschema.proto - -It has these top-level messages: - Keyspace - Vindex - Table - ColumnVindex - AutoIncrement - Column - SrvVSchema -*/ -package vschema +package vschema // import "vitess.io/vitess/go/vt/proto/vschema" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -37,15 +22,37 @@ const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package // Keyspace is the vschema for a keyspace. type Keyspace struct { // If sharded is false, vindexes and tables are ignored. - Sharded bool `protobuf:"varint,1,opt,name=sharded" json:"sharded,omitempty"` - Vindexes map[string]*Vindex `protobuf:"bytes,2,rep,name=vindexes" json:"vindexes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` - Tables map[string]*Table `protobuf:"bytes,3,rep,name=tables" json:"tables,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + Sharded bool `protobuf:"varint,1,opt,name=sharded" json:"sharded,omitempty"` + Vindexes map[string]*Vindex `protobuf:"bytes,2,rep,name=vindexes" json:"vindexes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + Tables map[string]*Table `protobuf:"bytes,3,rep,name=tables" json:"tables,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *Keyspace) Reset() { *m = Keyspace{} } -func (m *Keyspace) String() string { return proto.CompactTextString(m) } -func (*Keyspace) ProtoMessage() {} -func (*Keyspace) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (m *Keyspace) Reset() { *m = Keyspace{} } +func (m *Keyspace) String() string { return proto.CompactTextString(m) } +func (*Keyspace) ProtoMessage() {} +func (*Keyspace) Descriptor() ([]byte, []int) { + return fileDescriptor_vschema_af169a2691d671e0, []int{0} +} +func (m *Keyspace) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Keyspace.Unmarshal(m, b) +} +func (m *Keyspace) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Keyspace.Marshal(b, m, deterministic) +} +func (dst *Keyspace) XXX_Merge(src proto.Message) { + xxx_messageInfo_Keyspace.Merge(dst, src) +} +func (m *Keyspace) XXX_Size() int { + return xxx_messageInfo_Keyspace.Size(m) +} +func (m *Keyspace) XXX_DiscardUnknown() { + xxx_messageInfo_Keyspace.DiscardUnknown(m) +} + +var xxx_messageInfo_Keyspace proto.InternalMessageInfo func (m *Keyspace) GetSharded() bool { if m != nil { @@ -82,13 +89,35 @@ type Vindex struct { // If so, rows in the lookup table are created or // deleted in sync with corresponding rows in the // owner table. - Owner string `protobuf:"bytes,3,opt,name=owner" json:"owner,omitempty"` + Owner string `protobuf:"bytes,3,opt,name=owner" json:"owner,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *Vindex) Reset() { *m = Vindex{} } -func (m *Vindex) String() string { return proto.CompactTextString(m) } -func (*Vindex) ProtoMessage() {} -func (*Vindex) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +func (m *Vindex) Reset() { *m = Vindex{} } +func (m *Vindex) String() string { return proto.CompactTextString(m) } +func (*Vindex) ProtoMessage() {} +func (*Vindex) Descriptor() ([]byte, []int) { + return fileDescriptor_vschema_af169a2691d671e0, []int{1} +} +func (m *Vindex) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Vindex.Unmarshal(m, b) +} +func (m *Vindex) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Vindex.Marshal(b, m, deterministic) +} +func (dst *Vindex) XXX_Merge(src proto.Message) { + xxx_messageInfo_Vindex.Merge(dst, src) +} +func (m *Vindex) XXX_Size() int { + return xxx_messageInfo_Vindex.Size(m) +} +func (m *Vindex) XXX_DiscardUnknown() { + xxx_messageInfo_Vindex.DiscardUnknown(m) +} + +var xxx_messageInfo_Vindex proto.InternalMessageInfo func (m *Vindex) GetType() string { if m != nil { @@ -122,13 +151,35 @@ type Table struct { // to be associated with a sequence. AutoIncrement *AutoIncrement `protobuf:"bytes,3,opt,name=auto_increment,json=autoIncrement" json:"auto_increment,omitempty"` // columns lists the columns for the table. - Columns []*Column `protobuf:"bytes,4,rep,name=columns" json:"columns,omitempty"` + Columns []*Column `protobuf:"bytes,4,rep,name=columns" json:"columns,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Table) Reset() { *m = Table{} } +func (m *Table) String() string { return proto.CompactTextString(m) } +func (*Table) ProtoMessage() {} +func (*Table) Descriptor() ([]byte, []int) { + return fileDescriptor_vschema_af169a2691d671e0, []int{2} +} +func (m *Table) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Table.Unmarshal(m, b) +} +func (m *Table) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Table.Marshal(b, m, deterministic) +} +func (dst *Table) XXX_Merge(src proto.Message) { + xxx_messageInfo_Table.Merge(dst, src) +} +func (m *Table) XXX_Size() int { + return xxx_messageInfo_Table.Size(m) +} +func (m *Table) XXX_DiscardUnknown() { + xxx_messageInfo_Table.DiscardUnknown(m) } -func (m *Table) Reset() { *m = Table{} } -func (m *Table) String() string { return proto.CompactTextString(m) } -func (*Table) ProtoMessage() {} -func (*Table) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } +var xxx_messageInfo_Table proto.InternalMessageInfo func (m *Table) GetType() string { if m != nil { @@ -165,13 +216,35 @@ type ColumnVindex struct { // The name must match a vindex defined in Keyspace. Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"` // List of columns that define this Vindex - Columns []string `protobuf:"bytes,3,rep,name=columns" json:"columns,omitempty"` + Columns []string `protobuf:"bytes,3,rep,name=columns" json:"columns,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ColumnVindex) Reset() { *m = ColumnVindex{} } -func (m *ColumnVindex) String() string { return proto.CompactTextString(m) } -func (*ColumnVindex) ProtoMessage() {} -func (*ColumnVindex) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } +func (m *ColumnVindex) Reset() { *m = ColumnVindex{} } +func (m *ColumnVindex) String() string { return proto.CompactTextString(m) } +func (*ColumnVindex) ProtoMessage() {} +func (*ColumnVindex) Descriptor() ([]byte, []int) { + return fileDescriptor_vschema_af169a2691d671e0, []int{3} +} +func (m *ColumnVindex) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ColumnVindex.Unmarshal(m, b) +} +func (m *ColumnVindex) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ColumnVindex.Marshal(b, m, deterministic) +} +func (dst *ColumnVindex) XXX_Merge(src proto.Message) { + xxx_messageInfo_ColumnVindex.Merge(dst, src) +} +func (m *ColumnVindex) XXX_Size() int { + return xxx_messageInfo_ColumnVindex.Size(m) +} +func (m *ColumnVindex) XXX_DiscardUnknown() { + xxx_messageInfo_ColumnVindex.DiscardUnknown(m) +} + +var xxx_messageInfo_ColumnVindex proto.InternalMessageInfo func (m *ColumnVindex) GetColumn() string { if m != nil { @@ -198,13 +271,35 @@ func (m *ColumnVindex) GetColumns() []string { type AutoIncrement struct { Column string `protobuf:"bytes,1,opt,name=column" json:"column,omitempty"` // The sequence must match a table of type SEQUENCE. - Sequence string `protobuf:"bytes,2,opt,name=sequence" json:"sequence,omitempty"` + Sequence string `protobuf:"bytes,2,opt,name=sequence" json:"sequence,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *AutoIncrement) Reset() { *m = AutoIncrement{} } +func (m *AutoIncrement) String() string { return proto.CompactTextString(m) } +func (*AutoIncrement) ProtoMessage() {} +func (*AutoIncrement) Descriptor() ([]byte, []int) { + return fileDescriptor_vschema_af169a2691d671e0, []int{4} +} +func (m *AutoIncrement) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_AutoIncrement.Unmarshal(m, b) +} +func (m *AutoIncrement) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_AutoIncrement.Marshal(b, m, deterministic) +} +func (dst *AutoIncrement) XXX_Merge(src proto.Message) { + xxx_messageInfo_AutoIncrement.Merge(dst, src) +} +func (m *AutoIncrement) XXX_Size() int { + return xxx_messageInfo_AutoIncrement.Size(m) +} +func (m *AutoIncrement) XXX_DiscardUnknown() { + xxx_messageInfo_AutoIncrement.DiscardUnknown(m) } -func (m *AutoIncrement) Reset() { *m = AutoIncrement{} } -func (m *AutoIncrement) String() string { return proto.CompactTextString(m) } -func (*AutoIncrement) ProtoMessage() {} -func (*AutoIncrement) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} } +var xxx_messageInfo_AutoIncrement proto.InternalMessageInfo func (m *AutoIncrement) GetColumn() string { if m != nil { @@ -222,14 +317,36 @@ func (m *AutoIncrement) GetSequence() string { // Column describes a column. type Column struct { - Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` - Type query.Type `protobuf:"varint,2,opt,name=type,enum=query.Type" json:"type,omitempty"` + Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` + Type query.Type `protobuf:"varint,2,opt,name=type,enum=query.Type" json:"type,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Column) Reset() { *m = Column{} } +func (m *Column) String() string { return proto.CompactTextString(m) } +func (*Column) ProtoMessage() {} +func (*Column) Descriptor() ([]byte, []int) { + return fileDescriptor_vschema_af169a2691d671e0, []int{5} +} +func (m *Column) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Column.Unmarshal(m, b) +} +func (m *Column) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Column.Marshal(b, m, deterministic) +} +func (dst *Column) XXX_Merge(src proto.Message) { + xxx_messageInfo_Column.Merge(dst, src) +} +func (m *Column) XXX_Size() int { + return xxx_messageInfo_Column.Size(m) +} +func (m *Column) XXX_DiscardUnknown() { + xxx_messageInfo_Column.DiscardUnknown(m) } -func (m *Column) Reset() { *m = Column{} } -func (m *Column) String() string { return proto.CompactTextString(m) } -func (*Column) ProtoMessage() {} -func (*Column) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } +var xxx_messageInfo_Column proto.InternalMessageInfo func (m *Column) GetName() string { if m != nil { @@ -248,13 +365,35 @@ func (m *Column) GetType() query.Type { // SrvVSchema is the roll-up of all the Keyspace schema for a cell. type SrvVSchema struct { // keyspaces is a map of keyspace name -> Keyspace object. - Keyspaces map[string]*Keyspace `protobuf:"bytes,1,rep,name=keyspaces" json:"keyspaces,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + Keyspaces map[string]*Keyspace `protobuf:"bytes,1,rep,name=keyspaces" json:"keyspaces,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SrvVSchema) Reset() { *m = SrvVSchema{} } +func (m *SrvVSchema) String() string { return proto.CompactTextString(m) } +func (*SrvVSchema) ProtoMessage() {} +func (*SrvVSchema) Descriptor() ([]byte, []int) { + return fileDescriptor_vschema_af169a2691d671e0, []int{6} +} +func (m *SrvVSchema) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SrvVSchema.Unmarshal(m, b) +} +func (m *SrvVSchema) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SrvVSchema.Marshal(b, m, deterministic) +} +func (dst *SrvVSchema) XXX_Merge(src proto.Message) { + xxx_messageInfo_SrvVSchema.Merge(dst, src) +} +func (m *SrvVSchema) XXX_Size() int { + return xxx_messageInfo_SrvVSchema.Size(m) +} +func (m *SrvVSchema) XXX_DiscardUnknown() { + xxx_messageInfo_SrvVSchema.DiscardUnknown(m) } -func (m *SrvVSchema) Reset() { *m = SrvVSchema{} } -func (m *SrvVSchema) String() string { return proto.CompactTextString(m) } -func (*SrvVSchema) ProtoMessage() {} -func (*SrvVSchema) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} } +var xxx_messageInfo_SrvVSchema proto.InternalMessageInfo func (m *SrvVSchema) GetKeyspaces() map[string]*Keyspace { if m != nil { @@ -265,47 +404,53 @@ func (m *SrvVSchema) GetKeyspaces() map[string]*Keyspace { func init() { proto.RegisterType((*Keyspace)(nil), "vschema.Keyspace") + proto.RegisterMapType((map[string]*Table)(nil), "vschema.Keyspace.TablesEntry") + proto.RegisterMapType((map[string]*Vindex)(nil), "vschema.Keyspace.VindexesEntry") proto.RegisterType((*Vindex)(nil), "vschema.Vindex") + proto.RegisterMapType((map[string]string)(nil), "vschema.Vindex.ParamsEntry") proto.RegisterType((*Table)(nil), "vschema.Table") proto.RegisterType((*ColumnVindex)(nil), "vschema.ColumnVindex") proto.RegisterType((*AutoIncrement)(nil), "vschema.AutoIncrement") proto.RegisterType((*Column)(nil), "vschema.Column") proto.RegisterType((*SrvVSchema)(nil), "vschema.SrvVSchema") + proto.RegisterMapType((map[string]*Keyspace)(nil), "vschema.SrvVSchema.KeyspacesEntry") } -func init() { proto.RegisterFile("vschema.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 493 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x54, 0xdb, 0x6a, 0xdb, 0x40, - 0x10, 0x65, 0xed, 0x58, 0xb6, 0x47, 0xb5, 0xdc, 0x2e, 0x69, 0x10, 0x2a, 0x25, 0x46, 0xb4, 0xd4, - 0x7d, 0xd1, 0x83, 0x43, 0xa1, 0x17, 0x52, 0x5a, 0x4c, 0x1f, 0x42, 0x0b, 0x2d, 0x8a, 0xc9, 0x6b, - 0xd8, 0xc8, 0x03, 0x09, 0xb1, 0x2e, 0xd1, 0x4a, 0x6e, 0xf5, 0x35, 0x85, 0xfe, 0x41, 0x3f, 0xa2, - 0xff, 0x55, 0xb4, 0x17, 0x79, 0xe5, 0x28, 0x6f, 0x3b, 0x3e, 0x73, 0xce, 0x9c, 0x19, 0xcd, 0x18, - 0x26, 0x5b, 0x1e, 0x5d, 0x63, 0xcc, 0x82, 0x2c, 0x4f, 0x8b, 0x94, 0x0e, 0x55, 0xe8, 0xd9, 0x77, - 0x25, 0xe6, 0x95, 0xfc, 0xd5, 0xff, 0xdb, 0x83, 0xd1, 0x57, 0xac, 0x78, 0xc6, 0x22, 0xa4, 0x2e, - 0x0c, 0xf9, 0x35, 0xcb, 0xd7, 0xb8, 0x76, 0xc9, 0x8c, 0xcc, 0x47, 0xa1, 0x0e, 0xe9, 0x07, 0x18, - 0x6d, 0x6f, 0x92, 0x35, 0xfe, 0x42, 0xee, 0xf6, 0x66, 0xfd, 0xb9, 0xbd, 0x38, 0x0e, 0xb4, 0xbc, - 0xa6, 0x07, 0x17, 0x2a, 0xe3, 0x4b, 0x52, 0xe4, 0x55, 0xd8, 0x10, 0xe8, 0x1b, 0xb0, 0x0a, 0x76, - 0xb5, 0x41, 0xee, 0xf6, 0x05, 0xf5, 0xf9, 0x7d, 0xea, 0x4a, 0xe0, 0x92, 0xa8, 0x92, 0xbd, 0x6f, - 0x30, 0x69, 0x29, 0xd2, 0xc7, 0xd0, 0xbf, 0xc5, 0x4a, 0x58, 0x1b, 0x87, 0xf5, 0x93, 0xbe, 0x84, - 0xc1, 0x96, 0x6d, 0x4a, 0x74, 0x7b, 0x33, 0x32, 0xb7, 0x17, 0xd3, 0x46, 0x58, 0x12, 0x43, 0x89, - 0xbe, 0xef, 0xbd, 0x25, 0xde, 0x19, 0xd8, 0x46, 0x91, 0x0e, 0xad, 0x17, 0x6d, 0x2d, 0xa7, 0xd1, - 0x12, 0x34, 0x43, 0xca, 0xff, 0x43, 0xc0, 0x92, 0x05, 0x28, 0x85, 0x83, 0xa2, 0xca, 0x50, 0xe9, - 0x88, 0x37, 0x3d, 0x01, 0x2b, 0x63, 0x39, 0x8b, 0xf5, 0xa4, 0x9e, 0xed, 0xb9, 0x0a, 0x7e, 0x08, - 0x54, 0x35, 0x2b, 0x53, 0xe9, 0x21, 0x0c, 0xd2, 0x9f, 0x09, 0xe6, 0x6e, 0x5f, 0x28, 0xc9, 0xc0, - 0x7b, 0x07, 0xb6, 0x91, 0xdc, 0x61, 0xfa, 0xd0, 0x34, 0x3d, 0x36, 0x4d, 0xfe, 0x23, 0x30, 0x10, - 0xce, 0x3b, 0x3d, 0x7e, 0x84, 0x69, 0x94, 0x6e, 0xca, 0x38, 0xb9, 0xdc, 0xfb, 0xac, 0x4f, 0x1b, - 0xb3, 0x4b, 0x81, 0xab, 0x41, 0x3a, 0x91, 0x11, 0x21, 0xa7, 0xa7, 0xe0, 0xb0, 0xb2, 0x48, 0x2f, - 0x6f, 0x92, 0x28, 0xc7, 0x18, 0x93, 0x42, 0xf8, 0xb6, 0x17, 0x47, 0x0d, 0xfd, 0x73, 0x59, 0xa4, - 0x67, 0x1a, 0x0d, 0x27, 0xcc, 0x0c, 0xe9, 0x6b, 0x18, 0x4a, 0x41, 0xee, 0x1e, 0x88, 0xb2, 0xd3, - 0xbd, 0xb2, 0xa1, 0xc6, 0xfd, 0x15, 0x3c, 0x32, 0x9d, 0xd0, 0x23, 0xb0, 0x24, 0xa4, 0xfa, 0x51, - 0x51, 0xdd, 0x65, 0xc2, 0x62, 0x3d, 0x08, 0xf1, 0xae, 0xf7, 0x59, 0x97, 0xa9, 0x37, 0x6f, 0xbc, - 0x53, 0x5d, 0xc2, 0xa4, 0x65, 0xf0, 0x41, 0x59, 0x0f, 0x46, 0x1c, 0xef, 0x4a, 0x4c, 0x22, 0x2d, - 0xdd, 0xc4, 0xfe, 0x29, 0x58, 0xcb, 0x76, 0x71, 0x62, 0x14, 0x3f, 0x56, 0x63, 0xaf, 0x59, 0xce, - 0xc2, 0x0e, 0xe4, 0xd5, 0xad, 0xaa, 0x0c, 0xe5, 0x37, 0xf0, 0x7f, 0x13, 0x80, 0xf3, 0x7c, 0x7b, - 0x71, 0x2e, 0x1a, 0xa7, 0x9f, 0x60, 0x7c, 0xab, 0xce, 0x81, 0xbb, 0x44, 0x4c, 0xc5, 0x6f, 0xa6, - 0xb2, 0xcb, 0x6b, 0x6e, 0x46, 0x2d, 0xd0, 0x8e, 0xe4, 0x7d, 0x07, 0xa7, 0x0d, 0x76, 0x2c, 0xcc, - 0xab, 0xf6, 0x96, 0x3f, 0xb9, 0x77, 0x8a, 0xc6, 0x0e, 0x5d, 0x59, 0xe2, 0x3f, 0xe2, 0xe4, 0x7f, - 0x00, 0x00, 0x00, 0xff, 0xff, 0x4b, 0xa1, 0xdc, 0xf5, 0x4a, 0x04, 0x00, 0x00, +func init() { proto.RegisterFile("vschema.proto", fileDescriptor_vschema_af169a2691d671e0) } + +var fileDescriptor_vschema_af169a2691d671e0 = []byte{ + // 518 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x54, 0x5d, 0x8b, 0xd3, 0x40, + 0x14, 0x25, 0xed, 0x36, 0x6d, 0x6f, 0x6c, 0xaa, 0xc3, 0xba, 0x84, 0x88, 0x6c, 0x09, 0xab, 0xd6, + 0x97, 0x04, 0xba, 0x08, 0x7e, 0xb0, 0xa2, 0x16, 0x1f, 0x16, 0x05, 0x25, 0x5b, 0xf6, 0xc1, 0x97, + 0x65, 0x36, 0xbd, 0xb8, 0x65, 0x9b, 0x8f, 0xcd, 0x24, 0xd1, 0xfc, 0x1a, 0xc1, 0x7f, 0xe0, 0x8f, + 0xf0, 0x7f, 0x49, 0x66, 0x26, 0xe9, 0xa4, 0xad, 0x6f, 0x73, 0x7a, 0xee, 0x39, 0xf7, 0xcc, 0xcd, + 0x9d, 0xc2, 0xa8, 0x60, 0xc1, 0x0d, 0x86, 0xd4, 0x4d, 0xd2, 0x38, 0x8b, 0x49, 0x5f, 0x42, 0xdb, + 0xb8, 0xcb, 0x31, 0x2d, 0xc5, 0xaf, 0xce, 0x9f, 0x0e, 0x0c, 0x3e, 0x61, 0xc9, 0x12, 0x1a, 0x20, + 0xb1, 0xa0, 0xcf, 0x6e, 0x68, 0xba, 0xc4, 0xa5, 0xa5, 0x4d, 0xb4, 0xe9, 0xc0, 0xaf, 0x21, 0x79, + 0x03, 0x83, 0x62, 0x15, 0x2d, 0xf1, 0x27, 0x32, 0xab, 0x33, 0xe9, 0x4e, 0x8d, 0xd9, 0xb1, 0x5b, + 0xdb, 0xd7, 0x72, 0xf7, 0x52, 0x56, 0x7c, 0x8c, 0xb2, 0xb4, 0xf4, 0x1b, 0x01, 0x79, 0x01, 0x7a, + 0x46, 0xaf, 0xd7, 0xc8, 0xac, 0x2e, 0x97, 0x3e, 0xde, 0x95, 0x2e, 0x38, 0x2f, 0x84, 0xb2, 0xd8, + 0xfe, 0x0c, 0xa3, 0x96, 0x23, 0xb9, 0x0f, 0xdd, 0x5b, 0x2c, 0x79, 0xb4, 0xa1, 0x5f, 0x1d, 0xc9, + 0x13, 0xe8, 0x15, 0x74, 0x9d, 0xa3, 0xd5, 0x99, 0x68, 0x53, 0x63, 0x36, 0x6e, 0x8c, 0x85, 0xd0, + 0x17, 0xec, 0xeb, 0xce, 0x4b, 0xcd, 0x3e, 0x07, 0x43, 0x69, 0xb2, 0xc7, 0xeb, 0xa4, 0xed, 0x65, + 0x36, 0x5e, 0x5c, 0xa6, 0x58, 0x39, 0xbf, 0x35, 0xd0, 0x45, 0x03, 0x42, 0xe0, 0x20, 0x2b, 0x13, + 0x94, 0x3e, 0xfc, 0x4c, 0x4e, 0x41, 0x4f, 0x68, 0x4a, 0xc3, 0x7a, 0x52, 0x8f, 0xb6, 0x52, 0xb9, + 0x5f, 0x39, 0x2b, 0x2f, 0x2b, 0x4a, 0xc9, 0x21, 0xf4, 0xe2, 0x1f, 0x11, 0xa6, 0x56, 0x97, 0x3b, + 0x09, 0x60, 0xbf, 0x02, 0x43, 0x29, 0xde, 0x13, 0xfa, 0x50, 0x0d, 0x3d, 0x54, 0x43, 0xfe, 0xd5, + 0xa0, 0xc7, 0x93, 0xef, 0xcd, 0xf8, 0x16, 0xc6, 0x41, 0xbc, 0xce, 0xc3, 0xe8, 0x6a, 0xeb, 0xb3, + 0x3e, 0x6c, 0xc2, 0xce, 0x39, 0x2f, 0x07, 0x69, 0x06, 0x0a, 0x42, 0x46, 0xce, 0xc0, 0xa4, 0x79, + 0x16, 0x5f, 0xad, 0xa2, 0x20, 0xc5, 0x10, 0xa3, 0x8c, 0xe7, 0x36, 0x66, 0x47, 0x8d, 0xfc, 0x7d, + 0x9e, 0xc5, 0xe7, 0x35, 0xeb, 0x8f, 0xa8, 0x0a, 0xc9, 0x73, 0xe8, 0x0b, 0x43, 0x66, 0x1d, 0xf0, + 0xb6, 0xe3, 0xad, 0xb6, 0x7e, 0xcd, 0x3b, 0x0b, 0xb8, 0xa7, 0x26, 0x21, 0x47, 0xa0, 0x0b, 0x4a, + 0xde, 0x47, 0xa2, 0xea, 0x96, 0x11, 0x0d, 0xeb, 0x41, 0xf0, 0x73, 0xb5, 0xcf, 0x75, 0x9b, 0x6a, + 0xf3, 0x86, 0x1b, 0xd7, 0x39, 0x8c, 0x5a, 0x01, 0xff, 0x6b, 0x6b, 0xc3, 0x80, 0xe1, 0x5d, 0x8e, + 0x51, 0x50, 0x5b, 0x37, 0xd8, 0x39, 0x03, 0x7d, 0xde, 0x6e, 0xae, 0x29, 0xcd, 0x8f, 0xe5, 0xd8, + 0x2b, 0x95, 0x39, 0x33, 0x5c, 0xf1, 0xea, 0x16, 0x65, 0x82, 0xe2, 0x1b, 0x38, 0xbf, 0x34, 0x80, + 0x8b, 0xb4, 0xb8, 0xbc, 0xe0, 0x17, 0x27, 0xef, 0x60, 0x78, 0x2b, 0x9f, 0x03, 0xb3, 0x34, 0x3e, + 0x15, 0xa7, 0x99, 0xca, 0xa6, 0xae, 0x79, 0x33, 0x72, 0x81, 0x36, 0x22, 0xfb, 0x0b, 0x98, 0x6d, + 0x72, 0xcf, 0xc2, 0x3c, 0x6b, 0x6f, 0xf9, 0x83, 0x9d, 0xa7, 0xa8, 0xec, 0xd0, 0x87, 0xa7, 0xdf, + 0x4e, 0x8a, 0x55, 0x86, 0x8c, 0xb9, 0xab, 0xd8, 0x13, 0x27, 0xef, 0x7b, 0xec, 0x15, 0x99, 0xc7, + 0xff, 0x3c, 0x3c, 0xa9, 0xbd, 0xd6, 0x39, 0x3c, 0xfd, 0x17, 0x00, 0x00, 0xff, 0xff, 0x7a, 0x29, + 0xa2, 0x18, 0x72, 0x04, 0x00, 0x00, } diff --git a/go/vt/proto/vtctldata/vtctldata.pb.go b/go/vt/proto/vtctldata/vtctldata.pb.go index 005bdeff497..080555a9b2c 100644 --- a/go/vt/proto/vtctldata/vtctldata.pb.go +++ b/go/vt/proto/vtctldata/vtctldata.pb.go @@ -1,17 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: vtctldata.proto -/* -Package vtctldata is a generated protocol buffer package. - -It is generated from these files: - vtctldata.proto - -It has these top-level messages: - ExecuteVtctlCommandRequest - ExecuteVtctlCommandResponse -*/ -package vtctldata +package vtctldata // import "vitess.io/vitess/go/vt/proto/vtctldata" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -32,14 +22,36 @@ const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package // ExecuteVtctlCommandRequest is the payload for ExecuteVtctlCommand. // timeouts are in nanoseconds. type ExecuteVtctlCommandRequest struct { - Args []string `protobuf:"bytes,1,rep,name=args" json:"args,omitempty"` - ActionTimeout int64 `protobuf:"varint,2,opt,name=action_timeout,json=actionTimeout" json:"action_timeout,omitempty"` + Args []string `protobuf:"bytes,1,rep,name=args" json:"args,omitempty"` + ActionTimeout int64 `protobuf:"varint,2,opt,name=action_timeout,json=actionTimeout" json:"action_timeout,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteVtctlCommandRequest) Reset() { *m = ExecuteVtctlCommandRequest{} } +func (m *ExecuteVtctlCommandRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteVtctlCommandRequest) ProtoMessage() {} +func (*ExecuteVtctlCommandRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtctldata_1ba3ba7c409e0e97, []int{0} +} +func (m *ExecuteVtctlCommandRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteVtctlCommandRequest.Unmarshal(m, b) +} +func (m *ExecuteVtctlCommandRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteVtctlCommandRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteVtctlCommandRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteVtctlCommandRequest.Merge(dst, src) +} +func (m *ExecuteVtctlCommandRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteVtctlCommandRequest.Size(m) +} +func (m *ExecuteVtctlCommandRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteVtctlCommandRequest.DiscardUnknown(m) } -func (m *ExecuteVtctlCommandRequest) Reset() { *m = ExecuteVtctlCommandRequest{} } -func (m *ExecuteVtctlCommandRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteVtctlCommandRequest) ProtoMessage() {} -func (*ExecuteVtctlCommandRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +var xxx_messageInfo_ExecuteVtctlCommandRequest proto.InternalMessageInfo func (m *ExecuteVtctlCommandRequest) GetArgs() []string { if m != nil { @@ -57,13 +69,35 @@ func (m *ExecuteVtctlCommandRequest) GetActionTimeout() int64 { // ExecuteVtctlCommandResponse is streamed back by ExecuteVtctlCommand. type ExecuteVtctlCommandResponse struct { - Event *logutil.Event `protobuf:"bytes,1,opt,name=event" json:"event,omitempty"` + Event *logutil.Event `protobuf:"bytes,1,opt,name=event" json:"event,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteVtctlCommandResponse) Reset() { *m = ExecuteVtctlCommandResponse{} } +func (m *ExecuteVtctlCommandResponse) String() string { return proto.CompactTextString(m) } +func (*ExecuteVtctlCommandResponse) ProtoMessage() {} +func (*ExecuteVtctlCommandResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtctldata_1ba3ba7c409e0e97, []int{1} +} +func (m *ExecuteVtctlCommandResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteVtctlCommandResponse.Unmarshal(m, b) +} +func (m *ExecuteVtctlCommandResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteVtctlCommandResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteVtctlCommandResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteVtctlCommandResponse.Merge(dst, src) +} +func (m *ExecuteVtctlCommandResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteVtctlCommandResponse.Size(m) +} +func (m *ExecuteVtctlCommandResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteVtctlCommandResponse.DiscardUnknown(m) } -func (m *ExecuteVtctlCommandResponse) Reset() { *m = ExecuteVtctlCommandResponse{} } -func (m *ExecuteVtctlCommandResponse) String() string { return proto.CompactTextString(m) } -func (*ExecuteVtctlCommandResponse) ProtoMessage() {} -func (*ExecuteVtctlCommandResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +var xxx_messageInfo_ExecuteVtctlCommandResponse proto.InternalMessageInfo func (m *ExecuteVtctlCommandResponse) GetEvent() *logutil.Event { if m != nil { @@ -77,19 +111,21 @@ func init() { proto.RegisterType((*ExecuteVtctlCommandResponse)(nil), "vtctldata.ExecuteVtctlCommandResponse") } -func init() { proto.RegisterFile("vtctldata.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 175 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x2f, 0x2b, 0x49, 0x2e, - 0xc9, 0x49, 0x49, 0x2c, 0x49, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x84, 0x0b, 0x48, - 0xf1, 0xe6, 0xe4, 0xa7, 0x97, 0x96, 0x64, 0xe6, 0x40, 0x64, 0x94, 0xc2, 0xb9, 0xa4, 0x5c, 0x2b, - 0x52, 0x93, 0x4b, 0x4b, 0x52, 0xc3, 0x40, 0x4a, 0x9c, 0xf3, 0x73, 0x73, 0x13, 0xf3, 0x52, 0x82, - 0x52, 0x0b, 0x4b, 0x53, 0x8b, 0x4b, 0x84, 0x84, 0xb8, 0x58, 0x12, 0x8b, 0xd2, 0x8b, 0x25, 0x18, - 0x15, 0x98, 0x35, 0x38, 0x83, 0xc0, 0x6c, 0x21, 0x55, 0x2e, 0xbe, 0xc4, 0xe4, 0x92, 0xcc, 0xfc, - 0xbc, 0xf8, 0x92, 0xcc, 0xdc, 0xd4, 0xfc, 0xd2, 0x12, 0x09, 0x26, 0x05, 0x46, 0x0d, 0xe6, 0x20, - 0x5e, 0x88, 0x68, 0x08, 0x44, 0x50, 0xc9, 0x99, 0x4b, 0x1a, 0xab, 0xc1, 0xc5, 0x05, 0xf9, 0x79, - 0xc5, 0xa9, 0x42, 0x2a, 0x5c, 0xac, 0xa9, 0x65, 0xa9, 0x79, 0x25, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, - 0xdc, 0x46, 0x7c, 0x7a, 0x30, 0x67, 0xb9, 0x82, 0x44, 0x83, 0x20, 0x92, 0x49, 0x6c, 0x60, 0x47, - 0x1a, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x9d, 0x9e, 0x0a, 0x31, 0xd1, 0x00, 0x00, 0x00, +func init() { proto.RegisterFile("vtctldata.proto", fileDescriptor_vtctldata_1ba3ba7c409e0e97) } + +var fileDescriptor_vtctldata_1ba3ba7c409e0e97 = []byte{ + // 200 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0xcf, 0xd1, 0x4a, 0x87, 0x30, + 0x14, 0x06, 0x70, 0xd6, 0xbf, 0x82, 0xff, 0x42, 0x83, 0x5d, 0x89, 0xdd, 0x88, 0x54, 0xec, 0xca, + 0x41, 0xbd, 0x41, 0xe2, 0x0b, 0x8c, 0x28, 0xe8, 0x26, 0x96, 0x1e, 0x64, 0xa0, 0x3b, 0xe6, 0xce, + 0x46, 0x8f, 0x1f, 0x3a, 0xf2, 0xaa, 0xbb, 0x8f, 0xdf, 0x37, 0xc6, 0x77, 0xf8, 0x6d, 0xa4, 0x9e, + 0xa6, 0xc1, 0x90, 0x69, 0x96, 0x15, 0x09, 0xc5, 0xf9, 0x80, 0x32, 0x9b, 0x70, 0x0c, 0x64, 0xa7, + 0xd4, 0xd4, 0xef, 0xbc, 0xec, 0x7e, 0xa0, 0x0f, 0x04, 0x6f, 0xdb, 0x93, 0x16, 0xe7, 0xd9, 0xb8, + 0x41, 0xc3, 0x77, 0x00, 0x4f, 0x42, 0xf0, 0x4b, 0xb3, 0x8e, 0xbe, 0x60, 0xd5, 0x49, 0x9e, 0xf5, + 0x9e, 0xc5, 0x03, 0xcf, 0x4d, 0x4f, 0x16, 0xdd, 0x27, 0xd9, 0x19, 0x30, 0x50, 0x71, 0x51, 0x31, + 0x79, 0xd2, 0x59, 0xd2, 0xd7, 0x84, 0x75, 0xcb, 0xef, 0xfe, 0xfd, 0xd8, 0x2f, 0xe8, 0x3c, 0x88, + 0x7b, 0x7e, 0x05, 0x11, 0x1c, 0x15, 0xac, 0x62, 0xf2, 0xe6, 0x29, 0x6f, 0xfe, 0x66, 0x75, 0x9b, + 0xea, 0x54, 0xbe, 0xc8, 0x8f, 0xc7, 0x68, 0x09, 0xbc, 0x6f, 0x2c, 0xaa, 0x94, 0xd4, 0x88, 0x2a, + 0x92, 0xda, 0xd7, 0xab, 0xe3, 0xac, 0xaf, 0xeb, 0x1d, 0x9e, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, + 0xa9, 0xd5, 0x57, 0x1c, 0xfb, 0x00, 0x00, 0x00, } diff --git a/go/vt/proto/vtctlservice/vtctlservice.pb.go b/go/vt/proto/vtctlservice/vtctlservice.pb.go index b4015992273..d1738b8275b 100644 --- a/go/vt/proto/vtctlservice/vtctlservice.pb.go +++ b/go/vt/proto/vtctlservice/vtctlservice.pb.go @@ -1,15 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: vtctlservice.proto -/* -Package vtctlservice is a generated protocol buffer package. - -It is generated from these files: - vtctlservice.proto - -It has these top-level messages: -*/ -package vtctlservice +package vtctlservice // import "vitess.io/vitess/go/vt/proto/vtctlservice" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -131,16 +123,18 @@ var _Vtctl_serviceDesc = grpc.ServiceDesc{ Metadata: "vtctlservice.proto", } -func init() { proto.RegisterFile("vtctlservice.proto", fileDescriptor0) } +func init() { proto.RegisterFile("vtctlservice.proto", fileDescriptor_vtctlservice_a3582c3eb674ce30) } -var fileDescriptor0 = []byte{ - // 118 bytes of a gzipped FileDescriptorProto +var fileDescriptor_vtctlservice_a3582c3eb674ce30 = []byte{ + // 146 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2a, 0x2b, 0x49, 0x2e, 0xc9, 0x29, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x41, 0x16, 0x93, 0xe2, 0x07, 0xf3, 0x52, 0x12, 0x4b, 0x12, 0x21, 0xd2, 0x46, 0x85, 0x5c, 0xac, 0x61, 0x20, 0x21, 0xa1, 0x0c, 0x2e, 0x61, 0xd7, 0x8a, 0xd4, 0xe4, 0xd2, 0x92, 0x54, 0x30, 0xdf, 0x39, 0x3f, 0x37, 0x37, 0x31, 0x2f, 0x45, 0x48, 0x55, 0x0f, 0xa1, 0x03, 0x8b, 0x7c, 0x50, 0x6a, 0x61, 0x69, 0x6a, 0x71, 0x89, 0x94, 0x1a, 0x21, 0x65, 0xc5, 0x05, 0xf9, 0x79, 0xc5, 0xa9, 0x4a, - 0x0c, 0x06, 0x8c, 0x49, 0x6c, 0x60, 0x9b, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc0, 0xd9, - 0xc1, 0xfe, 0xae, 0x00, 0x00, 0x00, + 0x0c, 0x06, 0x8c, 0x4e, 0xda, 0x51, 0x9a, 0x65, 0x99, 0x25, 0xa9, 0xc5, 0xc5, 0x7a, 0x99, 0xf9, + 0xfa, 0x10, 0x96, 0x7e, 0x7a, 0xbe, 0x7e, 0x59, 0x89, 0x3e, 0xd8, 0x49, 0xfa, 0xc8, 0x0e, 0x4e, + 0x62, 0x03, 0x8b, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x9d, 0xb5, 0x06, 0x92, 0xdb, 0x00, + 0x00, 0x00, } diff --git a/go/vt/proto/vtgate/vtgate.pb.go b/go/vt/proto/vtgate/vtgate.pb.go index adb464611af..5a625e55257 100644 --- a/go/vt/proto/vtgate/vtgate.pb.go +++ b/go/vt/proto/vtgate/vtgate.pb.go @@ -1,60 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: vtgate.proto -/* -Package vtgate is a generated protocol buffer package. - -It is generated from these files: - vtgate.proto - -It has these top-level messages: - Session - ExecuteRequest - ExecuteResponse - ExecuteShardsRequest - ExecuteShardsResponse - ExecuteKeyspaceIdsRequest - ExecuteKeyspaceIdsResponse - ExecuteKeyRangesRequest - ExecuteKeyRangesResponse - ExecuteEntityIdsRequest - ExecuteEntityIdsResponse - ExecuteBatchRequest - ExecuteBatchResponse - BoundShardQuery - ExecuteBatchShardsRequest - ExecuteBatchShardsResponse - BoundKeyspaceIdQuery - ExecuteBatchKeyspaceIdsRequest - ExecuteBatchKeyspaceIdsResponse - StreamExecuteRequest - StreamExecuteResponse - StreamExecuteShardsRequest - StreamExecuteShardsResponse - StreamExecuteKeyspaceIdsRequest - StreamExecuteKeyspaceIdsResponse - StreamExecuteKeyRangesRequest - StreamExecuteKeyRangesResponse - BeginRequest - BeginResponse - CommitRequest - CommitResponse - RollbackRequest - RollbackResponse - ResolveTransactionRequest - MessageStreamRequest - MessageAckRequest - IdKeyspaceId - MessageAckKeyspaceIdsRequest - ResolveTransactionResponse - SplitQueryRequest - SplitQueryResponse - GetSrvKeyspaceRequest - GetSrvKeyspaceResponse - UpdateStreamRequest - UpdateStreamResponse -*/ -package vtgate +package vtgate // import "vitess.io/vitess/go/vt/proto/vtgate" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -105,7 +52,9 @@ var TransactionMode_value = map[string]int32{ func (x TransactionMode) String() string { return proto.EnumName(TransactionMode_name, int32(x)) } -func (TransactionMode) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (TransactionMode) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{0} +} // Session objects are exchanged like cookies through various // calls to VTGate. The behavior differs between V2 & V3 APIs. @@ -137,13 +86,35 @@ type Session struct { // options is used only for V3. Options *query.ExecuteOptions `protobuf:"bytes,6,opt,name=options" json:"options,omitempty"` // transaction_mode specifies the current transaction mode. - TransactionMode TransactionMode `protobuf:"varint,7,opt,name=transaction_mode,json=transactionMode,enum=vtgate.TransactionMode" json:"transaction_mode,omitempty"` + TransactionMode TransactionMode `protobuf:"varint,7,opt,name=transaction_mode,json=transactionMode,enum=vtgate.TransactionMode" json:"transaction_mode,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *Session) Reset() { *m = Session{} } -func (m *Session) String() string { return proto.CompactTextString(m) } -func (*Session) ProtoMessage() {} -func (*Session) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (m *Session) Reset() { *m = Session{} } +func (m *Session) String() string { return proto.CompactTextString(m) } +func (*Session) ProtoMessage() {} +func (*Session) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{0} +} +func (m *Session) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Session.Unmarshal(m, b) +} +func (m *Session) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Session.Marshal(b, m, deterministic) +} +func (dst *Session) XXX_Merge(src proto.Message) { + xxx_messageInfo_Session.Merge(dst, src) +} +func (m *Session) XXX_Size() int { + return xxx_messageInfo_Session.Size(m) +} +func (m *Session) XXX_DiscardUnknown() { + xxx_messageInfo_Session.DiscardUnknown(m) +} + +var xxx_messageInfo_Session proto.InternalMessageInfo func (m *Session) GetInTransaction() bool { if m != nil { @@ -195,14 +166,36 @@ func (m *Session) GetTransactionMode() TransactionMode { } type Session_ShardSession struct { - Target *query.Target `protobuf:"bytes,1,opt,name=target" json:"target,omitempty"` - TransactionId int64 `protobuf:"varint,2,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + Target *query.Target `protobuf:"bytes,1,opt,name=target" json:"target,omitempty"` + TransactionId int64 `protobuf:"varint,2,opt,name=transaction_id,json=transactionId" json:"transaction_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Session_ShardSession) Reset() { *m = Session_ShardSession{} } +func (m *Session_ShardSession) String() string { return proto.CompactTextString(m) } +func (*Session_ShardSession) ProtoMessage() {} +func (*Session_ShardSession) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{0, 0} +} +func (m *Session_ShardSession) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Session_ShardSession.Unmarshal(m, b) +} +func (m *Session_ShardSession) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Session_ShardSession.Marshal(b, m, deterministic) +} +func (dst *Session_ShardSession) XXX_Merge(src proto.Message) { + xxx_messageInfo_Session_ShardSession.Merge(dst, src) +} +func (m *Session_ShardSession) XXX_Size() int { + return xxx_messageInfo_Session_ShardSession.Size(m) +} +func (m *Session_ShardSession) XXX_DiscardUnknown() { + xxx_messageInfo_Session_ShardSession.DiscardUnknown(m) } -func (m *Session_ShardSession) Reset() { *m = Session_ShardSession{} } -func (m *Session_ShardSession) String() string { return proto.CompactTextString(m) } -func (*Session_ShardSession) ProtoMessage() {} -func (*Session_ShardSession) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0, 0} } +var xxx_messageInfo_Session_ShardSession proto.InternalMessageInfo func (m *Session_ShardSession) GetTarget() *query.Target { if m != nil { @@ -229,16 +222,38 @@ type ExecuteRequest struct { Query *query.BoundQuery `protobuf:"bytes,3,opt,name=query" json:"query,omitempty"` // These values are deprecated. Use session instead. // TODO(sougou): remove in 3.1 - TabletType topodata.TabletType `protobuf:"varint,4,opt,name=tablet_type,json=tabletType,enum=topodata.TabletType" json:"tablet_type,omitempty"` - NotInTransaction bool `protobuf:"varint,5,opt,name=not_in_transaction,json=notInTransaction" json:"not_in_transaction,omitempty"` - KeyspaceShard string `protobuf:"bytes,6,opt,name=keyspace_shard,json=keyspaceShard" json:"keyspace_shard,omitempty"` - Options *query.ExecuteOptions `protobuf:"bytes,7,opt,name=options" json:"options,omitempty"` + TabletType topodata.TabletType `protobuf:"varint,4,opt,name=tablet_type,json=tabletType,enum=topodata.TabletType" json:"tablet_type,omitempty"` + NotInTransaction bool `protobuf:"varint,5,opt,name=not_in_transaction,json=notInTransaction" json:"not_in_transaction,omitempty"` + KeyspaceShard string `protobuf:"bytes,6,opt,name=keyspace_shard,json=keyspaceShard" json:"keyspace_shard,omitempty"` + Options *query.ExecuteOptions `protobuf:"bytes,7,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteRequest) Reset() { *m = ExecuteRequest{} } +func (m *ExecuteRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteRequest) ProtoMessage() {} +func (*ExecuteRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{1} +} +func (m *ExecuteRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteRequest.Unmarshal(m, b) +} +func (m *ExecuteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteRequest.Merge(dst, src) +} +func (m *ExecuteRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteRequest.Size(m) +} +func (m *ExecuteRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteRequest.DiscardUnknown(m) } -func (m *ExecuteRequest) Reset() { *m = ExecuteRequest{} } -func (m *ExecuteRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteRequest) ProtoMessage() {} -func (*ExecuteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +var xxx_messageInfo_ExecuteRequest proto.InternalMessageInfo func (m *ExecuteRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -298,13 +313,35 @@ type ExecuteResponse struct { // session is the updated session information. Session *Session `protobuf:"bytes,2,opt,name=session" json:"session,omitempty"` // result contains the query result, only set if error is unset. - Result *query.QueryResult `protobuf:"bytes,3,opt,name=result" json:"result,omitempty"` + Result *query.QueryResult `protobuf:"bytes,3,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ExecuteResponse) Reset() { *m = ExecuteResponse{} } -func (m *ExecuteResponse) String() string { return proto.CompactTextString(m) } -func (*ExecuteResponse) ProtoMessage() {} -func (*ExecuteResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } +func (m *ExecuteResponse) Reset() { *m = ExecuteResponse{} } +func (m *ExecuteResponse) String() string { return proto.CompactTextString(m) } +func (*ExecuteResponse) ProtoMessage() {} +func (*ExecuteResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{2} +} +func (m *ExecuteResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteResponse.Unmarshal(m, b) +} +func (m *ExecuteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteResponse.Merge(dst, src) +} +func (m *ExecuteResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteResponse.Size(m) +} +func (m *ExecuteResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecuteResponse proto.InternalMessageInfo func (m *ExecuteResponse) GetError() *vtrpc.RPCError { if m != nil { @@ -346,13 +383,35 @@ type ExecuteShardsRequest struct { // not_in_transaction is deprecated. NotInTransaction bool `protobuf:"varint,7,opt,name=not_in_transaction,json=notInTransaction" json:"not_in_transaction,omitempty"` // options - Options *query.ExecuteOptions `protobuf:"bytes,8,opt,name=options" json:"options,omitempty"` + Options *query.ExecuteOptions `protobuf:"bytes,8,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteShardsRequest) Reset() { *m = ExecuteShardsRequest{} } +func (m *ExecuteShardsRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteShardsRequest) ProtoMessage() {} +func (*ExecuteShardsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{3} +} +func (m *ExecuteShardsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteShardsRequest.Unmarshal(m, b) +} +func (m *ExecuteShardsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteShardsRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteShardsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteShardsRequest.Merge(dst, src) +} +func (m *ExecuteShardsRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteShardsRequest.Size(m) +} +func (m *ExecuteShardsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteShardsRequest.DiscardUnknown(m) } -func (m *ExecuteShardsRequest) Reset() { *m = ExecuteShardsRequest{} } -func (m *ExecuteShardsRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteShardsRequest) ProtoMessage() {} -func (*ExecuteShardsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } +var xxx_messageInfo_ExecuteShardsRequest proto.InternalMessageInfo func (m *ExecuteShardsRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -419,13 +478,35 @@ type ExecuteShardsResponse struct { // session is the updated session information (only returned inside a transaction). Session *Session `protobuf:"bytes,2,opt,name=session" json:"session,omitempty"` // result contains the query result, only set if error is unset. - Result *query.QueryResult `protobuf:"bytes,3,opt,name=result" json:"result,omitempty"` + Result *query.QueryResult `protobuf:"bytes,3,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ExecuteShardsResponse) Reset() { *m = ExecuteShardsResponse{} } -func (m *ExecuteShardsResponse) String() string { return proto.CompactTextString(m) } -func (*ExecuteShardsResponse) ProtoMessage() {} -func (*ExecuteShardsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} } +func (m *ExecuteShardsResponse) Reset() { *m = ExecuteShardsResponse{} } +func (m *ExecuteShardsResponse) String() string { return proto.CompactTextString(m) } +func (*ExecuteShardsResponse) ProtoMessage() {} +func (*ExecuteShardsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{4} +} +func (m *ExecuteShardsResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteShardsResponse.Unmarshal(m, b) +} +func (m *ExecuteShardsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteShardsResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteShardsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteShardsResponse.Merge(dst, src) +} +func (m *ExecuteShardsResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteShardsResponse.Size(m) +} +func (m *ExecuteShardsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteShardsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecuteShardsResponse proto.InternalMessageInfo func (m *ExecuteShardsResponse) GetError() *vtrpc.RPCError { if m != nil { @@ -468,13 +549,35 @@ type ExecuteKeyspaceIdsRequest struct { // not_in_transaction is deprecated. NotInTransaction bool `protobuf:"varint,7,opt,name=not_in_transaction,json=notInTransaction" json:"not_in_transaction,omitempty"` // options - Options *query.ExecuteOptions `protobuf:"bytes,8,opt,name=options" json:"options,omitempty"` + Options *query.ExecuteOptions `protobuf:"bytes,8,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteKeyspaceIdsRequest) Reset() { *m = ExecuteKeyspaceIdsRequest{} } +func (m *ExecuteKeyspaceIdsRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteKeyspaceIdsRequest) ProtoMessage() {} +func (*ExecuteKeyspaceIdsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{5} +} +func (m *ExecuteKeyspaceIdsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteKeyspaceIdsRequest.Unmarshal(m, b) +} +func (m *ExecuteKeyspaceIdsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteKeyspaceIdsRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteKeyspaceIdsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteKeyspaceIdsRequest.Merge(dst, src) +} +func (m *ExecuteKeyspaceIdsRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteKeyspaceIdsRequest.Size(m) +} +func (m *ExecuteKeyspaceIdsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteKeyspaceIdsRequest.DiscardUnknown(m) } -func (m *ExecuteKeyspaceIdsRequest) Reset() { *m = ExecuteKeyspaceIdsRequest{} } -func (m *ExecuteKeyspaceIdsRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteKeyspaceIdsRequest) ProtoMessage() {} -func (*ExecuteKeyspaceIdsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} } +var xxx_messageInfo_ExecuteKeyspaceIdsRequest proto.InternalMessageInfo func (m *ExecuteKeyspaceIdsRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -541,13 +644,35 @@ type ExecuteKeyspaceIdsResponse struct { // session is the updated session information (only returned inside a transaction). Session *Session `protobuf:"bytes,2,opt,name=session" json:"session,omitempty"` // result contains the query result, only set if error is unset. - Result *query.QueryResult `protobuf:"bytes,3,opt,name=result" json:"result,omitempty"` + Result *query.QueryResult `protobuf:"bytes,3,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteKeyspaceIdsResponse) Reset() { *m = ExecuteKeyspaceIdsResponse{} } +func (m *ExecuteKeyspaceIdsResponse) String() string { return proto.CompactTextString(m) } +func (*ExecuteKeyspaceIdsResponse) ProtoMessage() {} +func (*ExecuteKeyspaceIdsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{6} +} +func (m *ExecuteKeyspaceIdsResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteKeyspaceIdsResponse.Unmarshal(m, b) +} +func (m *ExecuteKeyspaceIdsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteKeyspaceIdsResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteKeyspaceIdsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteKeyspaceIdsResponse.Merge(dst, src) +} +func (m *ExecuteKeyspaceIdsResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteKeyspaceIdsResponse.Size(m) +} +func (m *ExecuteKeyspaceIdsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteKeyspaceIdsResponse.DiscardUnknown(m) } -func (m *ExecuteKeyspaceIdsResponse) Reset() { *m = ExecuteKeyspaceIdsResponse{} } -func (m *ExecuteKeyspaceIdsResponse) String() string { return proto.CompactTextString(m) } -func (*ExecuteKeyspaceIdsResponse) ProtoMessage() {} -func (*ExecuteKeyspaceIdsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} } +var xxx_messageInfo_ExecuteKeyspaceIdsResponse proto.InternalMessageInfo func (m *ExecuteKeyspaceIdsResponse) GetError() *vtrpc.RPCError { if m != nil { @@ -590,13 +715,35 @@ type ExecuteKeyRangesRequest struct { // not_in_transaction is deprecated. NotInTransaction bool `protobuf:"varint,7,opt,name=not_in_transaction,json=notInTransaction" json:"not_in_transaction,omitempty"` // options - Options *query.ExecuteOptions `protobuf:"bytes,8,opt,name=options" json:"options,omitempty"` + Options *query.ExecuteOptions `protobuf:"bytes,8,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ExecuteKeyRangesRequest) Reset() { *m = ExecuteKeyRangesRequest{} } -func (m *ExecuteKeyRangesRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteKeyRangesRequest) ProtoMessage() {} -func (*ExecuteKeyRangesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} } +func (m *ExecuteKeyRangesRequest) Reset() { *m = ExecuteKeyRangesRequest{} } +func (m *ExecuteKeyRangesRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteKeyRangesRequest) ProtoMessage() {} +func (*ExecuteKeyRangesRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{7} +} +func (m *ExecuteKeyRangesRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteKeyRangesRequest.Unmarshal(m, b) +} +func (m *ExecuteKeyRangesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteKeyRangesRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteKeyRangesRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteKeyRangesRequest.Merge(dst, src) +} +func (m *ExecuteKeyRangesRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteKeyRangesRequest.Size(m) +} +func (m *ExecuteKeyRangesRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteKeyRangesRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecuteKeyRangesRequest proto.InternalMessageInfo func (m *ExecuteKeyRangesRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -663,13 +810,35 @@ type ExecuteKeyRangesResponse struct { // session is the updated session information (only returned inside a transaction). Session *Session `protobuf:"bytes,2,opt,name=session" json:"session,omitempty"` // result contains the query result, only set if error is unset. - Result *query.QueryResult `protobuf:"bytes,3,opt,name=result" json:"result,omitempty"` + Result *query.QueryResult `protobuf:"bytes,3,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteKeyRangesResponse) Reset() { *m = ExecuteKeyRangesResponse{} } +func (m *ExecuteKeyRangesResponse) String() string { return proto.CompactTextString(m) } +func (*ExecuteKeyRangesResponse) ProtoMessage() {} +func (*ExecuteKeyRangesResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{8} +} +func (m *ExecuteKeyRangesResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteKeyRangesResponse.Unmarshal(m, b) +} +func (m *ExecuteKeyRangesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteKeyRangesResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteKeyRangesResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteKeyRangesResponse.Merge(dst, src) +} +func (m *ExecuteKeyRangesResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteKeyRangesResponse.Size(m) +} +func (m *ExecuteKeyRangesResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteKeyRangesResponse.DiscardUnknown(m) } -func (m *ExecuteKeyRangesResponse) Reset() { *m = ExecuteKeyRangesResponse{} } -func (m *ExecuteKeyRangesResponse) String() string { return proto.CompactTextString(m) } -func (*ExecuteKeyRangesResponse) ProtoMessage() {} -func (*ExecuteKeyRangesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} } +var xxx_messageInfo_ExecuteKeyRangesResponse proto.InternalMessageInfo func (m *ExecuteKeyRangesResponse) GetError() *vtrpc.RPCError { if m != nil { @@ -714,13 +883,35 @@ type ExecuteEntityIdsRequest struct { // not_in_transaction is deprecated. NotInTransaction bool `protobuf:"varint,8,opt,name=not_in_transaction,json=notInTransaction" json:"not_in_transaction,omitempty"` // options - Options *query.ExecuteOptions `protobuf:"bytes,9,opt,name=options" json:"options,omitempty"` + Options *query.ExecuteOptions `protobuf:"bytes,9,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteEntityIdsRequest) Reset() { *m = ExecuteEntityIdsRequest{} } +func (m *ExecuteEntityIdsRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteEntityIdsRequest) ProtoMessage() {} +func (*ExecuteEntityIdsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{9} +} +func (m *ExecuteEntityIdsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteEntityIdsRequest.Unmarshal(m, b) +} +func (m *ExecuteEntityIdsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteEntityIdsRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteEntityIdsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteEntityIdsRequest.Merge(dst, src) +} +func (m *ExecuteEntityIdsRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteEntityIdsRequest.Size(m) +} +func (m *ExecuteEntityIdsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteEntityIdsRequest.DiscardUnknown(m) } -func (m *ExecuteEntityIdsRequest) Reset() { *m = ExecuteEntityIdsRequest{} } -func (m *ExecuteEntityIdsRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteEntityIdsRequest) ProtoMessage() {} -func (*ExecuteEntityIdsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} } +var xxx_messageInfo_ExecuteEntityIdsRequest proto.InternalMessageInfo func (m *ExecuteEntityIdsRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -791,16 +982,36 @@ type ExecuteEntityIdsRequest_EntityId struct { // value is the value for the entity. Not set if type is NULL_TYPE. Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` // keyspace_id is the associated keyspace_id for the entity. - KeyspaceId []byte `protobuf:"bytes,3,opt,name=keyspace_id,json=keyspaceId,proto3" json:"keyspace_id,omitempty"` + KeyspaceId []byte `protobuf:"bytes,3,opt,name=keyspace_id,json=keyspaceId,proto3" json:"keyspace_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *ExecuteEntityIdsRequest_EntityId) Reset() { *m = ExecuteEntityIdsRequest_EntityId{} } func (m *ExecuteEntityIdsRequest_EntityId) String() string { return proto.CompactTextString(m) } func (*ExecuteEntityIdsRequest_EntityId) ProtoMessage() {} func (*ExecuteEntityIdsRequest_EntityId) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{9, 0} + return fileDescriptor_vtgate_229a16ae636de397, []int{9, 0} +} +func (m *ExecuteEntityIdsRequest_EntityId) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteEntityIdsRequest_EntityId.Unmarshal(m, b) +} +func (m *ExecuteEntityIdsRequest_EntityId) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteEntityIdsRequest_EntityId.Marshal(b, m, deterministic) +} +func (dst *ExecuteEntityIdsRequest_EntityId) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteEntityIdsRequest_EntityId.Merge(dst, src) +} +func (m *ExecuteEntityIdsRequest_EntityId) XXX_Size() int { + return xxx_messageInfo_ExecuteEntityIdsRequest_EntityId.Size(m) +} +func (m *ExecuteEntityIdsRequest_EntityId) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteEntityIdsRequest_EntityId.DiscardUnknown(m) } +var xxx_messageInfo_ExecuteEntityIdsRequest_EntityId proto.InternalMessageInfo + func (m *ExecuteEntityIdsRequest_EntityId) GetType() query.Type { if m != nil { return m.Type @@ -831,13 +1042,35 @@ type ExecuteEntityIdsResponse struct { // session is the updated session information (only returned inside a transaction). Session *Session `protobuf:"bytes,2,opt,name=session" json:"session,omitempty"` // result contains the query result, only set if error is unset. - Result *query.QueryResult `protobuf:"bytes,3,opt,name=result" json:"result,omitempty"` + Result *query.QueryResult `protobuf:"bytes,3,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteEntityIdsResponse) Reset() { *m = ExecuteEntityIdsResponse{} } +func (m *ExecuteEntityIdsResponse) String() string { return proto.CompactTextString(m) } +func (*ExecuteEntityIdsResponse) ProtoMessage() {} +func (*ExecuteEntityIdsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{10} +} +func (m *ExecuteEntityIdsResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteEntityIdsResponse.Unmarshal(m, b) +} +func (m *ExecuteEntityIdsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteEntityIdsResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteEntityIdsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteEntityIdsResponse.Merge(dst, src) +} +func (m *ExecuteEntityIdsResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteEntityIdsResponse.Size(m) +} +func (m *ExecuteEntityIdsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteEntityIdsResponse.DiscardUnknown(m) } -func (m *ExecuteEntityIdsResponse) Reset() { *m = ExecuteEntityIdsResponse{} } -func (m *ExecuteEntityIdsResponse) String() string { return proto.CompactTextString(m) } -func (*ExecuteEntityIdsResponse) ProtoMessage() {} -func (*ExecuteEntityIdsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} } +var xxx_messageInfo_ExecuteEntityIdsResponse proto.InternalMessageInfo func (m *ExecuteEntityIdsResponse) GetError() *vtrpc.RPCError { if m != nil { @@ -871,16 +1104,38 @@ type ExecuteBatchRequest struct { Queries []*query.BoundQuery `protobuf:"bytes,3,rep,name=queries" json:"queries,omitempty"` // These values are deprecated. Use session instead. // TODO(sougou): remove in 3.1 - TabletType topodata.TabletType `protobuf:"varint,4,opt,name=tablet_type,json=tabletType,enum=topodata.TabletType" json:"tablet_type,omitempty"` - AsTransaction bool `protobuf:"varint,5,opt,name=as_transaction,json=asTransaction" json:"as_transaction,omitempty"` - KeyspaceShard string `protobuf:"bytes,6,opt,name=keyspace_shard,json=keyspaceShard" json:"keyspace_shard,omitempty"` - Options *query.ExecuteOptions `protobuf:"bytes,7,opt,name=options" json:"options,omitempty"` + TabletType topodata.TabletType `protobuf:"varint,4,opt,name=tablet_type,json=tabletType,enum=topodata.TabletType" json:"tablet_type,omitempty"` + AsTransaction bool `protobuf:"varint,5,opt,name=as_transaction,json=asTransaction" json:"as_transaction,omitempty"` + KeyspaceShard string `protobuf:"bytes,6,opt,name=keyspace_shard,json=keyspaceShard" json:"keyspace_shard,omitempty"` + Options *query.ExecuteOptions `protobuf:"bytes,7,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ExecuteBatchRequest) Reset() { *m = ExecuteBatchRequest{} } -func (m *ExecuteBatchRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteBatchRequest) ProtoMessage() {} -func (*ExecuteBatchRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{11} } +func (m *ExecuteBatchRequest) Reset() { *m = ExecuteBatchRequest{} } +func (m *ExecuteBatchRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteBatchRequest) ProtoMessage() {} +func (*ExecuteBatchRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{11} +} +func (m *ExecuteBatchRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteBatchRequest.Unmarshal(m, b) +} +func (m *ExecuteBatchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteBatchRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteBatchRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteBatchRequest.Merge(dst, src) +} +func (m *ExecuteBatchRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteBatchRequest.Size(m) +} +func (m *ExecuteBatchRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteBatchRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecuteBatchRequest proto.InternalMessageInfo func (m *ExecuteBatchRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -940,13 +1195,35 @@ type ExecuteBatchResponse struct { // session is the updated session information. Session *Session `protobuf:"bytes,2,opt,name=session" json:"session,omitempty"` // results contains the query results, only set if application level error is unset. - Results []*query.ResultWithError `protobuf:"bytes,3,rep,name=results" json:"results,omitempty"` + Results []*query.ResultWithError `protobuf:"bytes,3,rep,name=results" json:"results,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteBatchResponse) Reset() { *m = ExecuteBatchResponse{} } +func (m *ExecuteBatchResponse) String() string { return proto.CompactTextString(m) } +func (*ExecuteBatchResponse) ProtoMessage() {} +func (*ExecuteBatchResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{12} +} +func (m *ExecuteBatchResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteBatchResponse.Unmarshal(m, b) +} +func (m *ExecuteBatchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteBatchResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteBatchResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteBatchResponse.Merge(dst, src) +} +func (m *ExecuteBatchResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteBatchResponse.Size(m) +} +func (m *ExecuteBatchResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteBatchResponse.DiscardUnknown(m) } -func (m *ExecuteBatchResponse) Reset() { *m = ExecuteBatchResponse{} } -func (m *ExecuteBatchResponse) String() string { return proto.CompactTextString(m) } -func (*ExecuteBatchResponse) ProtoMessage() {} -func (*ExecuteBatchResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{12} } +var xxx_messageInfo_ExecuteBatchResponse proto.InternalMessageInfo func (m *ExecuteBatchResponse) GetError() *vtrpc.RPCError { if m != nil { @@ -978,13 +1255,35 @@ type BoundShardQuery struct { // keyspace to target the query to. Keyspace string `protobuf:"bytes,2,opt,name=keyspace" json:"keyspace,omitempty"` // shards to target the query to. A DML can only target one shard. - Shards []string `protobuf:"bytes,3,rep,name=shards" json:"shards,omitempty"` + Shards []string `protobuf:"bytes,3,rep,name=shards" json:"shards,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *BoundShardQuery) Reset() { *m = BoundShardQuery{} } +func (m *BoundShardQuery) String() string { return proto.CompactTextString(m) } +func (*BoundShardQuery) ProtoMessage() {} +func (*BoundShardQuery) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{13} +} +func (m *BoundShardQuery) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BoundShardQuery.Unmarshal(m, b) +} +func (m *BoundShardQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BoundShardQuery.Marshal(b, m, deterministic) +} +func (dst *BoundShardQuery) XXX_Merge(src proto.Message) { + xxx_messageInfo_BoundShardQuery.Merge(dst, src) +} +func (m *BoundShardQuery) XXX_Size() int { + return xxx_messageInfo_BoundShardQuery.Size(m) +} +func (m *BoundShardQuery) XXX_DiscardUnknown() { + xxx_messageInfo_BoundShardQuery.DiscardUnknown(m) } -func (m *BoundShardQuery) Reset() { *m = BoundShardQuery{} } -func (m *BoundShardQuery) String() string { return proto.CompactTextString(m) } -func (*BoundShardQuery) ProtoMessage() {} -func (*BoundShardQuery) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{13} } +var xxx_messageInfo_BoundShardQuery proto.InternalMessageInfo func (m *BoundShardQuery) GetQuery() *query.BoundQuery { if m != nil { @@ -1024,13 +1323,35 @@ type ExecuteBatchShardsRequest struct { // Only makes sense if tablet_type is master. If set, the Session is ignored. AsTransaction bool `protobuf:"varint,5,opt,name=as_transaction,json=asTransaction" json:"as_transaction,omitempty"` // options - Options *query.ExecuteOptions `protobuf:"bytes,6,opt,name=options" json:"options,omitempty"` + Options *query.ExecuteOptions `protobuf:"bytes,6,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ExecuteBatchShardsRequest) Reset() { *m = ExecuteBatchShardsRequest{} } -func (m *ExecuteBatchShardsRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteBatchShardsRequest) ProtoMessage() {} -func (*ExecuteBatchShardsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{14} } +func (m *ExecuteBatchShardsRequest) Reset() { *m = ExecuteBatchShardsRequest{} } +func (m *ExecuteBatchShardsRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteBatchShardsRequest) ProtoMessage() {} +func (*ExecuteBatchShardsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{14} +} +func (m *ExecuteBatchShardsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteBatchShardsRequest.Unmarshal(m, b) +} +func (m *ExecuteBatchShardsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteBatchShardsRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteBatchShardsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteBatchShardsRequest.Merge(dst, src) +} +func (m *ExecuteBatchShardsRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteBatchShardsRequest.Size(m) +} +func (m *ExecuteBatchShardsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteBatchShardsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecuteBatchShardsRequest proto.InternalMessageInfo func (m *ExecuteBatchShardsRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -1083,13 +1404,35 @@ type ExecuteBatchShardsResponse struct { // session is the updated session information (only returned inside a transaction). Session *Session `protobuf:"bytes,2,opt,name=session" json:"session,omitempty"` // result contains the query result, only set if error is unset. - Results []*query.QueryResult `protobuf:"bytes,3,rep,name=results" json:"results,omitempty"` + Results []*query.QueryResult `protobuf:"bytes,3,rep,name=results" json:"results,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteBatchShardsResponse) Reset() { *m = ExecuteBatchShardsResponse{} } +func (m *ExecuteBatchShardsResponse) String() string { return proto.CompactTextString(m) } +func (*ExecuteBatchShardsResponse) ProtoMessage() {} +func (*ExecuteBatchShardsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{15} +} +func (m *ExecuteBatchShardsResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteBatchShardsResponse.Unmarshal(m, b) +} +func (m *ExecuteBatchShardsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteBatchShardsResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteBatchShardsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteBatchShardsResponse.Merge(dst, src) +} +func (m *ExecuteBatchShardsResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteBatchShardsResponse.Size(m) +} +func (m *ExecuteBatchShardsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteBatchShardsResponse.DiscardUnknown(m) } -func (m *ExecuteBatchShardsResponse) Reset() { *m = ExecuteBatchShardsResponse{} } -func (m *ExecuteBatchShardsResponse) String() string { return proto.CompactTextString(m) } -func (*ExecuteBatchShardsResponse) ProtoMessage() {} -func (*ExecuteBatchShardsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{15} } +var xxx_messageInfo_ExecuteBatchShardsResponse proto.InternalMessageInfo func (m *ExecuteBatchShardsResponse) GetError() *vtrpc.RPCError { if m != nil { @@ -1122,13 +1465,35 @@ type BoundKeyspaceIdQuery struct { Keyspace string `protobuf:"bytes,2,opt,name=keyspace" json:"keyspace,omitempty"` // keyspace_ids contains the list of keyspace_ids affected by this query. // Will be used to find the shards to send the query to. - KeyspaceIds [][]byte `protobuf:"bytes,3,rep,name=keyspace_ids,json=keyspaceIds,proto3" json:"keyspace_ids,omitempty"` + KeyspaceIds [][]byte `protobuf:"bytes,3,rep,name=keyspace_ids,json=keyspaceIds,proto3" json:"keyspace_ids,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *BoundKeyspaceIdQuery) Reset() { *m = BoundKeyspaceIdQuery{} } +func (m *BoundKeyspaceIdQuery) String() string { return proto.CompactTextString(m) } +func (*BoundKeyspaceIdQuery) ProtoMessage() {} +func (*BoundKeyspaceIdQuery) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{16} +} +func (m *BoundKeyspaceIdQuery) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BoundKeyspaceIdQuery.Unmarshal(m, b) +} +func (m *BoundKeyspaceIdQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BoundKeyspaceIdQuery.Marshal(b, m, deterministic) +} +func (dst *BoundKeyspaceIdQuery) XXX_Merge(src proto.Message) { + xxx_messageInfo_BoundKeyspaceIdQuery.Merge(dst, src) +} +func (m *BoundKeyspaceIdQuery) XXX_Size() int { + return xxx_messageInfo_BoundKeyspaceIdQuery.Size(m) +} +func (m *BoundKeyspaceIdQuery) XXX_DiscardUnknown() { + xxx_messageInfo_BoundKeyspaceIdQuery.DiscardUnknown(m) } -func (m *BoundKeyspaceIdQuery) Reset() { *m = BoundKeyspaceIdQuery{} } -func (m *BoundKeyspaceIdQuery) String() string { return proto.CompactTextString(m) } -func (*BoundKeyspaceIdQuery) ProtoMessage() {} -func (*BoundKeyspaceIdQuery) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{16} } +var xxx_messageInfo_BoundKeyspaceIdQuery proto.InternalMessageInfo func (m *BoundKeyspaceIdQuery) GetQuery() *query.BoundQuery { if m != nil { @@ -1167,13 +1532,35 @@ type ExecuteBatchKeyspaceIdsRequest struct { // Only makes sense if tablet_type is master. If set, the Session is ignored. AsTransaction bool `protobuf:"varint,5,opt,name=as_transaction,json=asTransaction" json:"as_transaction,omitempty"` // options - Options *query.ExecuteOptions `protobuf:"bytes,6,opt,name=options" json:"options,omitempty"` + Options *query.ExecuteOptions `protobuf:"bytes,6,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *ExecuteBatchKeyspaceIdsRequest) Reset() { *m = ExecuteBatchKeyspaceIdsRequest{} } -func (m *ExecuteBatchKeyspaceIdsRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteBatchKeyspaceIdsRequest) ProtoMessage() {} -func (*ExecuteBatchKeyspaceIdsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{17} } +func (m *ExecuteBatchKeyspaceIdsRequest) Reset() { *m = ExecuteBatchKeyspaceIdsRequest{} } +func (m *ExecuteBatchKeyspaceIdsRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteBatchKeyspaceIdsRequest) ProtoMessage() {} +func (*ExecuteBatchKeyspaceIdsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{17} +} +func (m *ExecuteBatchKeyspaceIdsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteBatchKeyspaceIdsRequest.Unmarshal(m, b) +} +func (m *ExecuteBatchKeyspaceIdsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteBatchKeyspaceIdsRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteBatchKeyspaceIdsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteBatchKeyspaceIdsRequest.Merge(dst, src) +} +func (m *ExecuteBatchKeyspaceIdsRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteBatchKeyspaceIdsRequest.Size(m) +} +func (m *ExecuteBatchKeyspaceIdsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteBatchKeyspaceIdsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecuteBatchKeyspaceIdsRequest proto.InternalMessageInfo func (m *ExecuteBatchKeyspaceIdsRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -1226,15 +1613,35 @@ type ExecuteBatchKeyspaceIdsResponse struct { // session is the updated session information (only returned inside a transaction). Session *Session `protobuf:"bytes,2,opt,name=session" json:"session,omitempty"` // result contains the query result, only set if error is unset. - Results []*query.QueryResult `protobuf:"bytes,3,rep,name=results" json:"results,omitempty"` + Results []*query.QueryResult `protobuf:"bytes,3,rep,name=results" json:"results,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *ExecuteBatchKeyspaceIdsResponse) Reset() { *m = ExecuteBatchKeyspaceIdsResponse{} } func (m *ExecuteBatchKeyspaceIdsResponse) String() string { return proto.CompactTextString(m) } func (*ExecuteBatchKeyspaceIdsResponse) ProtoMessage() {} func (*ExecuteBatchKeyspaceIdsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{18} + return fileDescriptor_vtgate_229a16ae636de397, []int{18} +} +func (m *ExecuteBatchKeyspaceIdsResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteBatchKeyspaceIdsResponse.Unmarshal(m, b) } +func (m *ExecuteBatchKeyspaceIdsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteBatchKeyspaceIdsResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteBatchKeyspaceIdsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteBatchKeyspaceIdsResponse.Merge(dst, src) +} +func (m *ExecuteBatchKeyspaceIdsResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteBatchKeyspaceIdsResponse.Size(m) +} +func (m *ExecuteBatchKeyspaceIdsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteBatchKeyspaceIdsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_ExecuteBatchKeyspaceIdsResponse proto.InternalMessageInfo func (m *ExecuteBatchKeyspaceIdsResponse) GetError() *vtrpc.RPCError { if m != nil { @@ -1270,13 +1677,35 @@ type StreamExecuteRequest struct { KeyspaceShard string `protobuf:"bytes,4,opt,name=keyspace_shard,json=keyspaceShard" json:"keyspace_shard,omitempty"` Options *query.ExecuteOptions `protobuf:"bytes,5,opt,name=options" json:"options,omitempty"` // session carries the session state. - Session *Session `protobuf:"bytes,6,opt,name=session" json:"session,omitempty"` + Session *Session `protobuf:"bytes,6,opt,name=session" json:"session,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StreamExecuteRequest) Reset() { *m = StreamExecuteRequest{} } +func (m *StreamExecuteRequest) String() string { return proto.CompactTextString(m) } +func (*StreamExecuteRequest) ProtoMessage() {} +func (*StreamExecuteRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{19} +} +func (m *StreamExecuteRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamExecuteRequest.Unmarshal(m, b) +} +func (m *StreamExecuteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamExecuteRequest.Marshal(b, m, deterministic) +} +func (dst *StreamExecuteRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamExecuteRequest.Merge(dst, src) +} +func (m *StreamExecuteRequest) XXX_Size() int { + return xxx_messageInfo_StreamExecuteRequest.Size(m) +} +func (m *StreamExecuteRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StreamExecuteRequest.DiscardUnknown(m) } -func (m *StreamExecuteRequest) Reset() { *m = StreamExecuteRequest{} } -func (m *StreamExecuteRequest) String() string { return proto.CompactTextString(m) } -func (*StreamExecuteRequest) ProtoMessage() {} -func (*StreamExecuteRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{19} } +var xxx_messageInfo_StreamExecuteRequest proto.InternalMessageInfo func (m *StreamExecuteRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -1327,13 +1756,35 @@ type StreamExecuteResponse struct { // result contains the result data. // The first value contains only Fields information. // The next values contain the actual rows, a few values per result. - Result *query.QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + Result *query.QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *StreamExecuteResponse) Reset() { *m = StreamExecuteResponse{} } -func (m *StreamExecuteResponse) String() string { return proto.CompactTextString(m) } -func (*StreamExecuteResponse) ProtoMessage() {} -func (*StreamExecuteResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{20} } +func (m *StreamExecuteResponse) Reset() { *m = StreamExecuteResponse{} } +func (m *StreamExecuteResponse) String() string { return proto.CompactTextString(m) } +func (*StreamExecuteResponse) ProtoMessage() {} +func (*StreamExecuteResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{20} +} +func (m *StreamExecuteResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamExecuteResponse.Unmarshal(m, b) +} +func (m *StreamExecuteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamExecuteResponse.Marshal(b, m, deterministic) +} +func (dst *StreamExecuteResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamExecuteResponse.Merge(dst, src) +} +func (m *StreamExecuteResponse) XXX_Size() int { + return xxx_messageInfo_StreamExecuteResponse.Size(m) +} +func (m *StreamExecuteResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StreamExecuteResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_StreamExecuteResponse proto.InternalMessageInfo func (m *StreamExecuteResponse) GetResult() *query.QueryResult { if m != nil { @@ -1356,13 +1807,35 @@ type StreamExecuteShardsRequest struct { // tablet_type is the type of tablets that this query is targeted to. TabletType topodata.TabletType `protobuf:"varint,5,opt,name=tablet_type,json=tabletType,enum=topodata.TabletType" json:"tablet_type,omitempty"` // options - Options *query.ExecuteOptions `protobuf:"bytes,6,opt,name=options" json:"options,omitempty"` + Options *query.ExecuteOptions `protobuf:"bytes,6,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StreamExecuteShardsRequest) Reset() { *m = StreamExecuteShardsRequest{} } +func (m *StreamExecuteShardsRequest) String() string { return proto.CompactTextString(m) } +func (*StreamExecuteShardsRequest) ProtoMessage() {} +func (*StreamExecuteShardsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{21} +} +func (m *StreamExecuteShardsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamExecuteShardsRequest.Unmarshal(m, b) +} +func (m *StreamExecuteShardsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamExecuteShardsRequest.Marshal(b, m, deterministic) +} +func (dst *StreamExecuteShardsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamExecuteShardsRequest.Merge(dst, src) +} +func (m *StreamExecuteShardsRequest) XXX_Size() int { + return xxx_messageInfo_StreamExecuteShardsRequest.Size(m) +} +func (m *StreamExecuteShardsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StreamExecuteShardsRequest.DiscardUnknown(m) } -func (m *StreamExecuteShardsRequest) Reset() { *m = StreamExecuteShardsRequest{} } -func (m *StreamExecuteShardsRequest) String() string { return proto.CompactTextString(m) } -func (*StreamExecuteShardsRequest) ProtoMessage() {} -func (*StreamExecuteShardsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{21} } +var xxx_messageInfo_StreamExecuteShardsRequest proto.InternalMessageInfo func (m *StreamExecuteShardsRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -1411,13 +1884,35 @@ type StreamExecuteShardsResponse struct { // result contains the result data. // The first value contains only Fields information. // The next values contain the actual rows, a few values per result. - Result *query.QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + Result *query.QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StreamExecuteShardsResponse) Reset() { *m = StreamExecuteShardsResponse{} } +func (m *StreamExecuteShardsResponse) String() string { return proto.CompactTextString(m) } +func (*StreamExecuteShardsResponse) ProtoMessage() {} +func (*StreamExecuteShardsResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{22} +} +func (m *StreamExecuteShardsResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamExecuteShardsResponse.Unmarshal(m, b) +} +func (m *StreamExecuteShardsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamExecuteShardsResponse.Marshal(b, m, deterministic) +} +func (dst *StreamExecuteShardsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamExecuteShardsResponse.Merge(dst, src) +} +func (m *StreamExecuteShardsResponse) XXX_Size() int { + return xxx_messageInfo_StreamExecuteShardsResponse.Size(m) +} +func (m *StreamExecuteShardsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StreamExecuteShardsResponse.DiscardUnknown(m) } -func (m *StreamExecuteShardsResponse) Reset() { *m = StreamExecuteShardsResponse{} } -func (m *StreamExecuteShardsResponse) String() string { return proto.CompactTextString(m) } -func (*StreamExecuteShardsResponse) ProtoMessage() {} -func (*StreamExecuteShardsResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{22} } +var xxx_messageInfo_StreamExecuteShardsResponse proto.InternalMessageInfo func (m *StreamExecuteShardsResponse) GetResult() *query.QueryResult { if m != nil { @@ -1441,15 +1936,35 @@ type StreamExecuteKeyspaceIdsRequest struct { // tablet_type is the type of tablets that this query is targeted to. TabletType topodata.TabletType `protobuf:"varint,5,opt,name=tablet_type,json=tabletType,enum=topodata.TabletType" json:"tablet_type,omitempty"` // options - Options *query.ExecuteOptions `protobuf:"bytes,6,opt,name=options" json:"options,omitempty"` + Options *query.ExecuteOptions `protobuf:"bytes,6,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *StreamExecuteKeyspaceIdsRequest) Reset() { *m = StreamExecuteKeyspaceIdsRequest{} } func (m *StreamExecuteKeyspaceIdsRequest) String() string { return proto.CompactTextString(m) } func (*StreamExecuteKeyspaceIdsRequest) ProtoMessage() {} func (*StreamExecuteKeyspaceIdsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{23} + return fileDescriptor_vtgate_229a16ae636de397, []int{23} +} +func (m *StreamExecuteKeyspaceIdsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamExecuteKeyspaceIdsRequest.Unmarshal(m, b) +} +func (m *StreamExecuteKeyspaceIdsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamExecuteKeyspaceIdsRequest.Marshal(b, m, deterministic) +} +func (dst *StreamExecuteKeyspaceIdsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamExecuteKeyspaceIdsRequest.Merge(dst, src) +} +func (m *StreamExecuteKeyspaceIdsRequest) XXX_Size() int { + return xxx_messageInfo_StreamExecuteKeyspaceIdsRequest.Size(m) } +func (m *StreamExecuteKeyspaceIdsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StreamExecuteKeyspaceIdsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_StreamExecuteKeyspaceIdsRequest proto.InternalMessageInfo func (m *StreamExecuteKeyspaceIdsRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -1498,15 +2013,35 @@ type StreamExecuteKeyspaceIdsResponse struct { // result contains the result data. // The first value contains only Fields information. // The next values contain the actual rows, a few values per result. - Result *query.QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + Result *query.QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *StreamExecuteKeyspaceIdsResponse) Reset() { *m = StreamExecuteKeyspaceIdsResponse{} } func (m *StreamExecuteKeyspaceIdsResponse) String() string { return proto.CompactTextString(m) } func (*StreamExecuteKeyspaceIdsResponse) ProtoMessage() {} func (*StreamExecuteKeyspaceIdsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{24} + return fileDescriptor_vtgate_229a16ae636de397, []int{24} +} +func (m *StreamExecuteKeyspaceIdsResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamExecuteKeyspaceIdsResponse.Unmarshal(m, b) +} +func (m *StreamExecuteKeyspaceIdsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamExecuteKeyspaceIdsResponse.Marshal(b, m, deterministic) +} +func (dst *StreamExecuteKeyspaceIdsResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamExecuteKeyspaceIdsResponse.Merge(dst, src) } +func (m *StreamExecuteKeyspaceIdsResponse) XXX_Size() int { + return xxx_messageInfo_StreamExecuteKeyspaceIdsResponse.Size(m) +} +func (m *StreamExecuteKeyspaceIdsResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StreamExecuteKeyspaceIdsResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_StreamExecuteKeyspaceIdsResponse proto.InternalMessageInfo func (m *StreamExecuteKeyspaceIdsResponse) GetResult() *query.QueryResult { if m != nil { @@ -1530,13 +2065,35 @@ type StreamExecuteKeyRangesRequest struct { // tablet_type is the type of tablets that this query is targeted to. TabletType topodata.TabletType `protobuf:"varint,5,opt,name=tablet_type,json=tabletType,enum=topodata.TabletType" json:"tablet_type,omitempty"` // options - Options *query.ExecuteOptions `protobuf:"bytes,6,opt,name=options" json:"options,omitempty"` + Options *query.ExecuteOptions `protobuf:"bytes,6,opt,name=options" json:"options,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *StreamExecuteKeyRangesRequest) Reset() { *m = StreamExecuteKeyRangesRequest{} } +func (m *StreamExecuteKeyRangesRequest) String() string { return proto.CompactTextString(m) } +func (*StreamExecuteKeyRangesRequest) ProtoMessage() {} +func (*StreamExecuteKeyRangesRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{25} +} +func (m *StreamExecuteKeyRangesRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamExecuteKeyRangesRequest.Unmarshal(m, b) +} +func (m *StreamExecuteKeyRangesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamExecuteKeyRangesRequest.Marshal(b, m, deterministic) +} +func (dst *StreamExecuteKeyRangesRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamExecuteKeyRangesRequest.Merge(dst, src) +} +func (m *StreamExecuteKeyRangesRequest) XXX_Size() int { + return xxx_messageInfo_StreamExecuteKeyRangesRequest.Size(m) +} +func (m *StreamExecuteKeyRangesRequest) XXX_DiscardUnknown() { + xxx_messageInfo_StreamExecuteKeyRangesRequest.DiscardUnknown(m) } -func (m *StreamExecuteKeyRangesRequest) Reset() { *m = StreamExecuteKeyRangesRequest{} } -func (m *StreamExecuteKeyRangesRequest) String() string { return proto.CompactTextString(m) } -func (*StreamExecuteKeyRangesRequest) ProtoMessage() {} -func (*StreamExecuteKeyRangesRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{25} } +var xxx_messageInfo_StreamExecuteKeyRangesRequest proto.InternalMessageInfo func (m *StreamExecuteKeyRangesRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -1585,13 +2142,35 @@ type StreamExecuteKeyRangesResponse struct { // result contains the result data. // The first value contains only Fields information. // The next values contain the actual rows, a few values per result. - Result *query.QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + Result *query.QueryResult `protobuf:"bytes,1,opt,name=result" json:"result,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *StreamExecuteKeyRangesResponse) Reset() { *m = StreamExecuteKeyRangesResponse{} } -func (m *StreamExecuteKeyRangesResponse) String() string { return proto.CompactTextString(m) } -func (*StreamExecuteKeyRangesResponse) ProtoMessage() {} -func (*StreamExecuteKeyRangesResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{26} } +func (m *StreamExecuteKeyRangesResponse) Reset() { *m = StreamExecuteKeyRangesResponse{} } +func (m *StreamExecuteKeyRangesResponse) String() string { return proto.CompactTextString(m) } +func (*StreamExecuteKeyRangesResponse) ProtoMessage() {} +func (*StreamExecuteKeyRangesResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{26} +} +func (m *StreamExecuteKeyRangesResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_StreamExecuteKeyRangesResponse.Unmarshal(m, b) +} +func (m *StreamExecuteKeyRangesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_StreamExecuteKeyRangesResponse.Marshal(b, m, deterministic) +} +func (dst *StreamExecuteKeyRangesResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_StreamExecuteKeyRangesResponse.Merge(dst, src) +} +func (m *StreamExecuteKeyRangesResponse) XXX_Size() int { + return xxx_messageInfo_StreamExecuteKeyRangesResponse.Size(m) +} +func (m *StreamExecuteKeyRangesResponse) XXX_DiscardUnknown() { + xxx_messageInfo_StreamExecuteKeyRangesResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_StreamExecuteKeyRangesResponse proto.InternalMessageInfo func (m *StreamExecuteKeyRangesResponse) GetResult() *query.QueryResult { if m != nil { @@ -1609,13 +2188,35 @@ type BeginRequest struct { // The value specifies if the transaction should be restricted // to a single database. // TODO(sougou): remove in 3.1 - SingleDb bool `protobuf:"varint,2,opt,name=single_db,json=singleDb" json:"single_db,omitempty"` + SingleDb bool `protobuf:"varint,2,opt,name=single_db,json=singleDb" json:"single_db,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *BeginRequest) Reset() { *m = BeginRequest{} } +func (m *BeginRequest) String() string { return proto.CompactTextString(m) } +func (*BeginRequest) ProtoMessage() {} +func (*BeginRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{27} +} +func (m *BeginRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BeginRequest.Unmarshal(m, b) +} +func (m *BeginRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BeginRequest.Marshal(b, m, deterministic) +} +func (dst *BeginRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_BeginRequest.Merge(dst, src) +} +func (m *BeginRequest) XXX_Size() int { + return xxx_messageInfo_BeginRequest.Size(m) +} +func (m *BeginRequest) XXX_DiscardUnknown() { + xxx_messageInfo_BeginRequest.DiscardUnknown(m) } -func (m *BeginRequest) Reset() { *m = BeginRequest{} } -func (m *BeginRequest) String() string { return proto.CompactTextString(m) } -func (*BeginRequest) ProtoMessage() {} -func (*BeginRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{27} } +var xxx_messageInfo_BeginRequest proto.InternalMessageInfo func (m *BeginRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -1634,13 +2235,35 @@ func (m *BeginRequest) GetSingleDb() bool { // BeginResponse is the returned value from Begin. type BeginResponse struct { // session is the initial session information to use for subsequent queries. - Session *Session `protobuf:"bytes,1,opt,name=session" json:"session,omitempty"` + Session *Session `protobuf:"bytes,1,opt,name=session" json:"session,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *BeginResponse) Reset() { *m = BeginResponse{} } -func (m *BeginResponse) String() string { return proto.CompactTextString(m) } -func (*BeginResponse) ProtoMessage() {} -func (*BeginResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{28} } +func (m *BeginResponse) Reset() { *m = BeginResponse{} } +func (m *BeginResponse) String() string { return proto.CompactTextString(m) } +func (*BeginResponse) ProtoMessage() {} +func (*BeginResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{28} +} +func (m *BeginResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_BeginResponse.Unmarshal(m, b) +} +func (m *BeginResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_BeginResponse.Marshal(b, m, deterministic) +} +func (dst *BeginResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_BeginResponse.Merge(dst, src) +} +func (m *BeginResponse) XXX_Size() int { + return xxx_messageInfo_BeginResponse.Size(m) +} +func (m *BeginResponse) XXX_DiscardUnknown() { + xxx_messageInfo_BeginResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_BeginResponse proto.InternalMessageInfo func (m *BeginResponse) GetSession() *Session { if m != nil { @@ -1660,13 +2283,35 @@ type CommitRequest struct { // The value specifies if the commit should go through the // 2PC workflow to ensure atomicity. // TODO(sougou): remove in 3.1 - Atomic bool `protobuf:"varint,3,opt,name=atomic" json:"atomic,omitempty"` + Atomic bool `protobuf:"varint,3,opt,name=atomic" json:"atomic,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CommitRequest) Reset() { *m = CommitRequest{} } +func (m *CommitRequest) String() string { return proto.CompactTextString(m) } +func (*CommitRequest) ProtoMessage() {} +func (*CommitRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{29} +} +func (m *CommitRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CommitRequest.Unmarshal(m, b) +} +func (m *CommitRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CommitRequest.Marshal(b, m, deterministic) +} +func (dst *CommitRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_CommitRequest.Merge(dst, src) +} +func (m *CommitRequest) XXX_Size() int { + return xxx_messageInfo_CommitRequest.Size(m) +} +func (m *CommitRequest) XXX_DiscardUnknown() { + xxx_messageInfo_CommitRequest.DiscardUnknown(m) } -func (m *CommitRequest) Reset() { *m = CommitRequest{} } -func (m *CommitRequest) String() string { return proto.CompactTextString(m) } -func (*CommitRequest) ProtoMessage() {} -func (*CommitRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{29} } +var xxx_messageInfo_CommitRequest proto.InternalMessageInfo func (m *CommitRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -1691,12 +2336,34 @@ func (m *CommitRequest) GetAtomic() bool { // CommitResponse is the returned value from Commit. type CommitResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CommitResponse) Reset() { *m = CommitResponse{} } +func (m *CommitResponse) String() string { return proto.CompactTextString(m) } +func (*CommitResponse) ProtoMessage() {} +func (*CommitResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{30} +} +func (m *CommitResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CommitResponse.Unmarshal(m, b) +} +func (m *CommitResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CommitResponse.Marshal(b, m, deterministic) +} +func (dst *CommitResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_CommitResponse.Merge(dst, src) +} +func (m *CommitResponse) XXX_Size() int { + return xxx_messageInfo_CommitResponse.Size(m) +} +func (m *CommitResponse) XXX_DiscardUnknown() { + xxx_messageInfo_CommitResponse.DiscardUnknown(m) } -func (m *CommitResponse) Reset() { *m = CommitResponse{} } -func (m *CommitResponse) String() string { return proto.CompactTextString(m) } -func (*CommitResponse) ProtoMessage() {} -func (*CommitResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{30} } +var xxx_messageInfo_CommitResponse proto.InternalMessageInfo // RollbackRequest is the payload to Rollback. type RollbackRequest struct { @@ -1704,13 +2371,35 @@ type RollbackRequest struct { // set by the application to further identify the caller. CallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=caller_id,json=callerId" json:"caller_id,omitempty"` // session carries the current transaction data to rollback. - Session *Session `protobuf:"bytes,2,opt,name=session" json:"session,omitempty"` + Session *Session `protobuf:"bytes,2,opt,name=session" json:"session,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *RollbackRequest) Reset() { *m = RollbackRequest{} } -func (m *RollbackRequest) String() string { return proto.CompactTextString(m) } -func (*RollbackRequest) ProtoMessage() {} -func (*RollbackRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{31} } +func (m *RollbackRequest) Reset() { *m = RollbackRequest{} } +func (m *RollbackRequest) String() string { return proto.CompactTextString(m) } +func (*RollbackRequest) ProtoMessage() {} +func (*RollbackRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{31} +} +func (m *RollbackRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RollbackRequest.Unmarshal(m, b) +} +func (m *RollbackRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RollbackRequest.Marshal(b, m, deterministic) +} +func (dst *RollbackRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_RollbackRequest.Merge(dst, src) +} +func (m *RollbackRequest) XXX_Size() int { + return xxx_messageInfo_RollbackRequest.Size(m) +} +func (m *RollbackRequest) XXX_DiscardUnknown() { + xxx_messageInfo_RollbackRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_RollbackRequest proto.InternalMessageInfo func (m *RollbackRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -1728,12 +2417,34 @@ func (m *RollbackRequest) GetSession() *Session { // RollbackResponse is the returned value from Rollback. type RollbackResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RollbackResponse) Reset() { *m = RollbackResponse{} } +func (m *RollbackResponse) String() string { return proto.CompactTextString(m) } +func (*RollbackResponse) ProtoMessage() {} +func (*RollbackResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{32} +} +func (m *RollbackResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RollbackResponse.Unmarshal(m, b) +} +func (m *RollbackResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RollbackResponse.Marshal(b, m, deterministic) +} +func (dst *RollbackResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_RollbackResponse.Merge(dst, src) +} +func (m *RollbackResponse) XXX_Size() int { + return xxx_messageInfo_RollbackResponse.Size(m) +} +func (m *RollbackResponse) XXX_DiscardUnknown() { + xxx_messageInfo_RollbackResponse.DiscardUnknown(m) } -func (m *RollbackResponse) Reset() { *m = RollbackResponse{} } -func (m *RollbackResponse) String() string { return proto.CompactTextString(m) } -func (*RollbackResponse) ProtoMessage() {} -func (*RollbackResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{32} } +var xxx_messageInfo_RollbackResponse proto.InternalMessageInfo // ResolveTransactionRequest is the payload to ResolveTransaction. type ResolveTransactionRequest struct { @@ -1741,13 +2452,35 @@ type ResolveTransactionRequest struct { // set by the application to further identify the caller. CallerId *vtrpc.CallerID `protobuf:"bytes,1,opt,name=caller_id,json=callerId" json:"caller_id,omitempty"` // dtid is the dtid of the transaction to be resolved. - Dtid string `protobuf:"bytes,2,opt,name=dtid" json:"dtid,omitempty"` + Dtid string `protobuf:"bytes,2,opt,name=dtid" json:"dtid,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ResolveTransactionRequest) Reset() { *m = ResolveTransactionRequest{} } +func (m *ResolveTransactionRequest) String() string { return proto.CompactTextString(m) } +func (*ResolveTransactionRequest) ProtoMessage() {} +func (*ResolveTransactionRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{33} +} +func (m *ResolveTransactionRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ResolveTransactionRequest.Unmarshal(m, b) +} +func (m *ResolveTransactionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ResolveTransactionRequest.Marshal(b, m, deterministic) +} +func (dst *ResolveTransactionRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResolveTransactionRequest.Merge(dst, src) +} +func (m *ResolveTransactionRequest) XXX_Size() int { + return xxx_messageInfo_ResolveTransactionRequest.Size(m) +} +func (m *ResolveTransactionRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ResolveTransactionRequest.DiscardUnknown(m) } -func (m *ResolveTransactionRequest) Reset() { *m = ResolveTransactionRequest{} } -func (m *ResolveTransactionRequest) String() string { return proto.CompactTextString(m) } -func (*ResolveTransactionRequest) ProtoMessage() {} -func (*ResolveTransactionRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{33} } +var xxx_messageInfo_ResolveTransactionRequest proto.InternalMessageInfo func (m *ResolveTransactionRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -1775,13 +2508,35 @@ type MessageStreamRequest struct { // KeyRange to target the query to, for sharded keyspaces. KeyRange *topodata.KeyRange `protobuf:"bytes,4,opt,name=key_range,json=keyRange" json:"key_range,omitempty"` // name is the message table name. - Name string `protobuf:"bytes,5,opt,name=name" json:"name,omitempty"` + Name string `protobuf:"bytes,5,opt,name=name" json:"name,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *MessageStreamRequest) Reset() { *m = MessageStreamRequest{} } -func (m *MessageStreamRequest) String() string { return proto.CompactTextString(m) } -func (*MessageStreamRequest) ProtoMessage() {} -func (*MessageStreamRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{34} } +func (m *MessageStreamRequest) Reset() { *m = MessageStreamRequest{} } +func (m *MessageStreamRequest) String() string { return proto.CompactTextString(m) } +func (*MessageStreamRequest) ProtoMessage() {} +func (*MessageStreamRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{34} +} +func (m *MessageStreamRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_MessageStreamRequest.Unmarshal(m, b) +} +func (m *MessageStreamRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_MessageStreamRequest.Marshal(b, m, deterministic) +} +func (dst *MessageStreamRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_MessageStreamRequest.Merge(dst, src) +} +func (m *MessageStreamRequest) XXX_Size() int { + return xxx_messageInfo_MessageStreamRequest.Size(m) +} +func (m *MessageStreamRequest) XXX_DiscardUnknown() { + xxx_messageInfo_MessageStreamRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_MessageStreamRequest proto.InternalMessageInfo func (m *MessageStreamRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -1828,13 +2583,35 @@ type MessageAckRequest struct { // name is the message table name. Name string `protobuf:"bytes,3,opt,name=name" json:"name,omitempty"` // ids is the list of ids to ack. - Ids []*query.Value `protobuf:"bytes,4,rep,name=ids" json:"ids,omitempty"` + Ids []*query.Value `protobuf:"bytes,4,rep,name=ids" json:"ids,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *MessageAckRequest) Reset() { *m = MessageAckRequest{} } +func (m *MessageAckRequest) String() string { return proto.CompactTextString(m) } +func (*MessageAckRequest) ProtoMessage() {} +func (*MessageAckRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{35} +} +func (m *MessageAckRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_MessageAckRequest.Unmarshal(m, b) +} +func (m *MessageAckRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_MessageAckRequest.Marshal(b, m, deterministic) +} +func (dst *MessageAckRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_MessageAckRequest.Merge(dst, src) +} +func (m *MessageAckRequest) XXX_Size() int { + return xxx_messageInfo_MessageAckRequest.Size(m) +} +func (m *MessageAckRequest) XXX_DiscardUnknown() { + xxx_messageInfo_MessageAckRequest.DiscardUnknown(m) } -func (m *MessageAckRequest) Reset() { *m = MessageAckRequest{} } -func (m *MessageAckRequest) String() string { return proto.CompactTextString(m) } -func (*MessageAckRequest) ProtoMessage() {} -func (*MessageAckRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{35} } +var xxx_messageInfo_MessageAckRequest proto.InternalMessageInfo func (m *MessageAckRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -1870,13 +2647,35 @@ type IdKeyspaceId struct { // id represents the message id. Id *query.Value `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"` // keyspace_id is the associated keyspace_id for the id. - KeyspaceId []byte `protobuf:"bytes,2,opt,name=keyspace_id,json=keyspaceId,proto3" json:"keyspace_id,omitempty"` + KeyspaceId []byte `protobuf:"bytes,2,opt,name=keyspace_id,json=keyspaceId,proto3" json:"keyspace_id,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *IdKeyspaceId) Reset() { *m = IdKeyspaceId{} } +func (m *IdKeyspaceId) String() string { return proto.CompactTextString(m) } +func (*IdKeyspaceId) ProtoMessage() {} +func (*IdKeyspaceId) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{36} +} +func (m *IdKeyspaceId) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_IdKeyspaceId.Unmarshal(m, b) +} +func (m *IdKeyspaceId) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_IdKeyspaceId.Marshal(b, m, deterministic) +} +func (dst *IdKeyspaceId) XXX_Merge(src proto.Message) { + xxx_messageInfo_IdKeyspaceId.Merge(dst, src) +} +func (m *IdKeyspaceId) XXX_Size() int { + return xxx_messageInfo_IdKeyspaceId.Size(m) +} +func (m *IdKeyspaceId) XXX_DiscardUnknown() { + xxx_messageInfo_IdKeyspaceId.DiscardUnknown(m) } -func (m *IdKeyspaceId) Reset() { *m = IdKeyspaceId{} } -func (m *IdKeyspaceId) String() string { return proto.CompactTextString(m) } -func (*IdKeyspaceId) ProtoMessage() {} -func (*IdKeyspaceId) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{36} } +var xxx_messageInfo_IdKeyspaceId proto.InternalMessageInfo func (m *IdKeyspaceId) GetId() *query.Value { if m != nil { @@ -1900,14 +2699,36 @@ type MessageAckKeyspaceIdsRequest struct { // Optional keyspace for message table. Keyspace string `protobuf:"bytes,2,opt,name=keyspace" json:"keyspace,omitempty"` // name is the message table name. - Name string `protobuf:"bytes,3,opt,name=name" json:"name,omitempty"` - IdKeyspaceIds []*IdKeyspaceId `protobuf:"bytes,4,rep,name=id_keyspace_ids,json=idKeyspaceIds" json:"id_keyspace_ids,omitempty"` + Name string `protobuf:"bytes,3,opt,name=name" json:"name,omitempty"` + IdKeyspaceIds []*IdKeyspaceId `protobuf:"bytes,4,rep,name=id_keyspace_ids,json=idKeyspaceIds" json:"id_keyspace_ids,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *MessageAckKeyspaceIdsRequest) Reset() { *m = MessageAckKeyspaceIdsRequest{} } -func (m *MessageAckKeyspaceIdsRequest) String() string { return proto.CompactTextString(m) } -func (*MessageAckKeyspaceIdsRequest) ProtoMessage() {} -func (*MessageAckKeyspaceIdsRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{37} } +func (m *MessageAckKeyspaceIdsRequest) Reset() { *m = MessageAckKeyspaceIdsRequest{} } +func (m *MessageAckKeyspaceIdsRequest) String() string { return proto.CompactTextString(m) } +func (*MessageAckKeyspaceIdsRequest) ProtoMessage() {} +func (*MessageAckKeyspaceIdsRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{37} +} +func (m *MessageAckKeyspaceIdsRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_MessageAckKeyspaceIdsRequest.Unmarshal(m, b) +} +func (m *MessageAckKeyspaceIdsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_MessageAckKeyspaceIdsRequest.Marshal(b, m, deterministic) +} +func (dst *MessageAckKeyspaceIdsRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_MessageAckKeyspaceIdsRequest.Merge(dst, src) +} +func (m *MessageAckKeyspaceIdsRequest) XXX_Size() int { + return xxx_messageInfo_MessageAckKeyspaceIdsRequest.Size(m) +} +func (m *MessageAckKeyspaceIdsRequest) XXX_DiscardUnknown() { + xxx_messageInfo_MessageAckKeyspaceIdsRequest.DiscardUnknown(m) +} + +var xxx_messageInfo_MessageAckKeyspaceIdsRequest proto.InternalMessageInfo func (m *MessageAckKeyspaceIdsRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -1939,12 +2760,34 @@ func (m *MessageAckKeyspaceIdsRequest) GetIdKeyspaceIds() []*IdKeyspaceId { // ResolveTransactionResponse is the returned value from Rollback. type ResolveTransactionResponse struct { + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ResolveTransactionResponse) Reset() { *m = ResolveTransactionResponse{} } +func (m *ResolveTransactionResponse) String() string { return proto.CompactTextString(m) } +func (*ResolveTransactionResponse) ProtoMessage() {} +func (*ResolveTransactionResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{38} +} +func (m *ResolveTransactionResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ResolveTransactionResponse.Unmarshal(m, b) +} +func (m *ResolveTransactionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ResolveTransactionResponse.Marshal(b, m, deterministic) +} +func (dst *ResolveTransactionResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ResolveTransactionResponse.Merge(dst, src) +} +func (m *ResolveTransactionResponse) XXX_Size() int { + return xxx_messageInfo_ResolveTransactionResponse.Size(m) +} +func (m *ResolveTransactionResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ResolveTransactionResponse.DiscardUnknown(m) } -func (m *ResolveTransactionResponse) Reset() { *m = ResolveTransactionResponse{} } -func (m *ResolveTransactionResponse) String() string { return proto.CompactTextString(m) } -func (*ResolveTransactionResponse) ProtoMessage() {} -func (*ResolveTransactionResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{38} } +var xxx_messageInfo_ResolveTransactionResponse proto.InternalMessageInfo // SplitQueryRequest is the payload to SplitQuery. // @@ -2034,13 +2877,35 @@ type SplitQueryRequest struct { // Remove this field after this new server code is released to prod. // We must keep it for now, so that clients can still send it to the old // server code currently in production. - UseSplitQueryV2 bool `protobuf:"varint,8,opt,name=use_split_query_v2,json=useSplitQueryV2" json:"use_split_query_v2,omitempty"` + UseSplitQueryV2 bool `protobuf:"varint,8,opt,name=use_split_query_v2,json=useSplitQueryV2" json:"use_split_query_v2,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SplitQueryRequest) Reset() { *m = SplitQueryRequest{} } +func (m *SplitQueryRequest) String() string { return proto.CompactTextString(m) } +func (*SplitQueryRequest) ProtoMessage() {} +func (*SplitQueryRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{39} +} +func (m *SplitQueryRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SplitQueryRequest.Unmarshal(m, b) +} +func (m *SplitQueryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SplitQueryRequest.Marshal(b, m, deterministic) +} +func (dst *SplitQueryRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_SplitQueryRequest.Merge(dst, src) +} +func (m *SplitQueryRequest) XXX_Size() int { + return xxx_messageInfo_SplitQueryRequest.Size(m) +} +func (m *SplitQueryRequest) XXX_DiscardUnknown() { + xxx_messageInfo_SplitQueryRequest.DiscardUnknown(m) } -func (m *SplitQueryRequest) Reset() { *m = SplitQueryRequest{} } -func (m *SplitQueryRequest) String() string { return proto.CompactTextString(m) } -func (*SplitQueryRequest) ProtoMessage() {} -func (*SplitQueryRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{39} } +var xxx_messageInfo_SplitQueryRequest proto.InternalMessageInfo func (m *SplitQueryRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -2101,13 +2966,35 @@ func (m *SplitQueryRequest) GetUseSplitQueryV2() bool { // SplitQueryResponse is the returned value from SplitQuery. type SplitQueryResponse struct { // splits contains the queries to run to fetch the entire data set. - Splits []*SplitQueryResponse_Part `protobuf:"bytes,1,rep,name=splits" json:"splits,omitempty"` + Splits []*SplitQueryResponse_Part `protobuf:"bytes,1,rep,name=splits" json:"splits,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *SplitQueryResponse) Reset() { *m = SplitQueryResponse{} } -func (m *SplitQueryResponse) String() string { return proto.CompactTextString(m) } -func (*SplitQueryResponse) ProtoMessage() {} -func (*SplitQueryResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{40} } +func (m *SplitQueryResponse) Reset() { *m = SplitQueryResponse{} } +func (m *SplitQueryResponse) String() string { return proto.CompactTextString(m) } +func (*SplitQueryResponse) ProtoMessage() {} +func (*SplitQueryResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{40} +} +func (m *SplitQueryResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SplitQueryResponse.Unmarshal(m, b) +} +func (m *SplitQueryResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SplitQueryResponse.Marshal(b, m, deterministic) +} +func (dst *SplitQueryResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_SplitQueryResponse.Merge(dst, src) +} +func (m *SplitQueryResponse) XXX_Size() int { + return xxx_messageInfo_SplitQueryResponse.Size(m) +} +func (m *SplitQueryResponse) XXX_DiscardUnknown() { + xxx_messageInfo_SplitQueryResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_SplitQueryResponse proto.InternalMessageInfo func (m *SplitQueryResponse) GetSplits() []*SplitQueryResponse_Part { if m != nil { @@ -2120,15 +3007,35 @@ type SplitQueryResponse_KeyRangePart struct { // keyspace to target the query to. Keyspace string `protobuf:"bytes,1,opt,name=keyspace" json:"keyspace,omitempty"` // key ranges to target the query to. - KeyRanges []*topodata.KeyRange `protobuf:"bytes,2,rep,name=key_ranges,json=keyRanges" json:"key_ranges,omitempty"` + KeyRanges []*topodata.KeyRange `protobuf:"bytes,2,rep,name=key_ranges,json=keyRanges" json:"key_ranges,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *SplitQueryResponse_KeyRangePart) Reset() { *m = SplitQueryResponse_KeyRangePart{} } func (m *SplitQueryResponse_KeyRangePart) String() string { return proto.CompactTextString(m) } func (*SplitQueryResponse_KeyRangePart) ProtoMessage() {} func (*SplitQueryResponse_KeyRangePart) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{40, 0} + return fileDescriptor_vtgate_229a16ae636de397, []int{40, 0} +} +func (m *SplitQueryResponse_KeyRangePart) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SplitQueryResponse_KeyRangePart.Unmarshal(m, b) +} +func (m *SplitQueryResponse_KeyRangePart) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SplitQueryResponse_KeyRangePart.Marshal(b, m, deterministic) +} +func (dst *SplitQueryResponse_KeyRangePart) XXX_Merge(src proto.Message) { + xxx_messageInfo_SplitQueryResponse_KeyRangePart.Merge(dst, src) +} +func (m *SplitQueryResponse_KeyRangePart) XXX_Size() int { + return xxx_messageInfo_SplitQueryResponse_KeyRangePart.Size(m) } +func (m *SplitQueryResponse_KeyRangePart) XXX_DiscardUnknown() { + xxx_messageInfo_SplitQueryResponse_KeyRangePart.DiscardUnknown(m) +} + +var xxx_messageInfo_SplitQueryResponse_KeyRangePart proto.InternalMessageInfo func (m *SplitQueryResponse_KeyRangePart) GetKeyspace() string { if m != nil { @@ -2148,15 +3055,35 @@ type SplitQueryResponse_ShardPart struct { // keyspace to target the query to. Keyspace string `protobuf:"bytes,1,opt,name=keyspace" json:"keyspace,omitempty"` // shards to target the query to. - Shards []string `protobuf:"bytes,2,rep,name=shards" json:"shards,omitempty"` + Shards []string `protobuf:"bytes,2,rep,name=shards" json:"shards,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *SplitQueryResponse_ShardPart) Reset() { *m = SplitQueryResponse_ShardPart{} } func (m *SplitQueryResponse_ShardPart) String() string { return proto.CompactTextString(m) } func (*SplitQueryResponse_ShardPart) ProtoMessage() {} func (*SplitQueryResponse_ShardPart) Descriptor() ([]byte, []int) { - return fileDescriptor0, []int{40, 1} + return fileDescriptor_vtgate_229a16ae636de397, []int{40, 1} +} +func (m *SplitQueryResponse_ShardPart) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SplitQueryResponse_ShardPart.Unmarshal(m, b) +} +func (m *SplitQueryResponse_ShardPart) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SplitQueryResponse_ShardPart.Marshal(b, m, deterministic) +} +func (dst *SplitQueryResponse_ShardPart) XXX_Merge(src proto.Message) { + xxx_messageInfo_SplitQueryResponse_ShardPart.Merge(dst, src) +} +func (m *SplitQueryResponse_ShardPart) XXX_Size() int { + return xxx_messageInfo_SplitQueryResponse_ShardPart.Size(m) } +func (m *SplitQueryResponse_ShardPart) XXX_DiscardUnknown() { + xxx_messageInfo_SplitQueryResponse_ShardPart.DiscardUnknown(m) +} + +var xxx_messageInfo_SplitQueryResponse_ShardPart proto.InternalMessageInfo func (m *SplitQueryResponse_ShardPart) GetKeyspace() string { if m != nil { @@ -2181,13 +3108,35 @@ type SplitQueryResponse_Part struct { // shard_part is set if the query should be executed by ExecuteShards. ShardPart *SplitQueryResponse_ShardPart `protobuf:"bytes,3,opt,name=shard_part,json=shardPart" json:"shard_part,omitempty"` // size is the approximate number of rows this query will return. - Size int64 `protobuf:"varint,4,opt,name=size" json:"size,omitempty"` + Size int64 `protobuf:"varint,4,opt,name=size" json:"size,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *SplitQueryResponse_Part) Reset() { *m = SplitQueryResponse_Part{} } +func (m *SplitQueryResponse_Part) String() string { return proto.CompactTextString(m) } +func (*SplitQueryResponse_Part) ProtoMessage() {} +func (*SplitQueryResponse_Part) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{40, 2} +} +func (m *SplitQueryResponse_Part) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_SplitQueryResponse_Part.Unmarshal(m, b) +} +func (m *SplitQueryResponse_Part) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_SplitQueryResponse_Part.Marshal(b, m, deterministic) +} +func (dst *SplitQueryResponse_Part) XXX_Merge(src proto.Message) { + xxx_messageInfo_SplitQueryResponse_Part.Merge(dst, src) +} +func (m *SplitQueryResponse_Part) XXX_Size() int { + return xxx_messageInfo_SplitQueryResponse_Part.Size(m) +} +func (m *SplitQueryResponse_Part) XXX_DiscardUnknown() { + xxx_messageInfo_SplitQueryResponse_Part.DiscardUnknown(m) } -func (m *SplitQueryResponse_Part) Reset() { *m = SplitQueryResponse_Part{} } -func (m *SplitQueryResponse_Part) String() string { return proto.CompactTextString(m) } -func (*SplitQueryResponse_Part) ProtoMessage() {} -func (*SplitQueryResponse_Part) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{40, 2} } +var xxx_messageInfo_SplitQueryResponse_Part proto.InternalMessageInfo func (m *SplitQueryResponse_Part) GetQuery() *query.BoundQuery { if m != nil { @@ -2220,13 +3169,35 @@ func (m *SplitQueryResponse_Part) GetSize() int64 { // GetSrvKeyspaceRequest is the payload to GetSrvKeyspace. type GetSrvKeyspaceRequest struct { // keyspace name to fetch. - Keyspace string `protobuf:"bytes,1,opt,name=keyspace" json:"keyspace,omitempty"` + Keyspace string `protobuf:"bytes,1,opt,name=keyspace" json:"keyspace,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *GetSrvKeyspaceRequest) Reset() { *m = GetSrvKeyspaceRequest{} } +func (m *GetSrvKeyspaceRequest) String() string { return proto.CompactTextString(m) } +func (*GetSrvKeyspaceRequest) ProtoMessage() {} +func (*GetSrvKeyspaceRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{41} +} +func (m *GetSrvKeyspaceRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetSrvKeyspaceRequest.Unmarshal(m, b) +} +func (m *GetSrvKeyspaceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetSrvKeyspaceRequest.Marshal(b, m, deterministic) +} +func (dst *GetSrvKeyspaceRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetSrvKeyspaceRequest.Merge(dst, src) +} +func (m *GetSrvKeyspaceRequest) XXX_Size() int { + return xxx_messageInfo_GetSrvKeyspaceRequest.Size(m) +} +func (m *GetSrvKeyspaceRequest) XXX_DiscardUnknown() { + xxx_messageInfo_GetSrvKeyspaceRequest.DiscardUnknown(m) } -func (m *GetSrvKeyspaceRequest) Reset() { *m = GetSrvKeyspaceRequest{} } -func (m *GetSrvKeyspaceRequest) String() string { return proto.CompactTextString(m) } -func (*GetSrvKeyspaceRequest) ProtoMessage() {} -func (*GetSrvKeyspaceRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{41} } +var xxx_messageInfo_GetSrvKeyspaceRequest proto.InternalMessageInfo func (m *GetSrvKeyspaceRequest) GetKeyspace() string { if m != nil { @@ -2238,13 +3209,35 @@ func (m *GetSrvKeyspaceRequest) GetKeyspace() string { // GetSrvKeyspaceResponse is the returned value from GetSrvKeyspace. type GetSrvKeyspaceResponse struct { // srv_keyspace is the topology object for the SrvKeyspace. - SrvKeyspace *topodata.SrvKeyspace `protobuf:"bytes,1,opt,name=srv_keyspace,json=srvKeyspace" json:"srv_keyspace,omitempty"` + SrvKeyspace *topodata.SrvKeyspace `protobuf:"bytes,1,opt,name=srv_keyspace,json=srvKeyspace" json:"srv_keyspace,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *GetSrvKeyspaceResponse) Reset() { *m = GetSrvKeyspaceResponse{} } -func (m *GetSrvKeyspaceResponse) String() string { return proto.CompactTextString(m) } -func (*GetSrvKeyspaceResponse) ProtoMessage() {} -func (*GetSrvKeyspaceResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{42} } +func (m *GetSrvKeyspaceResponse) Reset() { *m = GetSrvKeyspaceResponse{} } +func (m *GetSrvKeyspaceResponse) String() string { return proto.CompactTextString(m) } +func (*GetSrvKeyspaceResponse) ProtoMessage() {} +func (*GetSrvKeyspaceResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{42} +} +func (m *GetSrvKeyspaceResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_GetSrvKeyspaceResponse.Unmarshal(m, b) +} +func (m *GetSrvKeyspaceResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_GetSrvKeyspaceResponse.Marshal(b, m, deterministic) +} +func (dst *GetSrvKeyspaceResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_GetSrvKeyspaceResponse.Merge(dst, src) +} +func (m *GetSrvKeyspaceResponse) XXX_Size() int { + return xxx_messageInfo_GetSrvKeyspaceResponse.Size(m) +} +func (m *GetSrvKeyspaceResponse) XXX_DiscardUnknown() { + xxx_messageInfo_GetSrvKeyspaceResponse.DiscardUnknown(m) +} + +var xxx_messageInfo_GetSrvKeyspaceResponse proto.InternalMessageInfo func (m *GetSrvKeyspaceResponse) GetSrvKeyspace() *topodata.SrvKeyspace { if m != nil { @@ -2274,13 +3267,35 @@ type UpdateStreamRequest struct { // Note it is only used if we are streaming from exactly the same shard // as this event was coming from. Otherwise we can't use this event, // and will use the timestamp as a starting point. - Event *query.EventToken `protobuf:"bytes,7,opt,name=event" json:"event,omitempty"` + Event *query.EventToken `protobuf:"bytes,7,opt,name=event" json:"event,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *UpdateStreamRequest) Reset() { *m = UpdateStreamRequest{} } +func (m *UpdateStreamRequest) String() string { return proto.CompactTextString(m) } +func (*UpdateStreamRequest) ProtoMessage() {} +func (*UpdateStreamRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{43} +} +func (m *UpdateStreamRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_UpdateStreamRequest.Unmarshal(m, b) +} +func (m *UpdateStreamRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_UpdateStreamRequest.Marshal(b, m, deterministic) +} +func (dst *UpdateStreamRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_UpdateStreamRequest.Merge(dst, src) +} +func (m *UpdateStreamRequest) XXX_Size() int { + return xxx_messageInfo_UpdateStreamRequest.Size(m) +} +func (m *UpdateStreamRequest) XXX_DiscardUnknown() { + xxx_messageInfo_UpdateStreamRequest.DiscardUnknown(m) } -func (m *UpdateStreamRequest) Reset() { *m = UpdateStreamRequest{} } -func (m *UpdateStreamRequest) String() string { return proto.CompactTextString(m) } -func (*UpdateStreamRequest) ProtoMessage() {} -func (*UpdateStreamRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{43} } +var xxx_messageInfo_UpdateStreamRequest proto.InternalMessageInfo func (m *UpdateStreamRequest) GetCallerId() *vtrpc.CallerID { if m != nil { @@ -2340,13 +3355,35 @@ type UpdateStreamResponse struct { // shard, this is equal to event.timestamp. If the Update Stream // goes to multiple shards and aggregates, this is the minimum value // of the current timestamp for all shards. - ResumeTimestamp int64 `protobuf:"varint,2,opt,name=resume_timestamp,json=resumeTimestamp" json:"resume_timestamp,omitempty"` + ResumeTimestamp int64 `protobuf:"varint,2,opt,name=resume_timestamp,json=resumeTimestamp" json:"resume_timestamp,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *UpdateStreamResponse) Reset() { *m = UpdateStreamResponse{} } +func (m *UpdateStreamResponse) String() string { return proto.CompactTextString(m) } +func (*UpdateStreamResponse) ProtoMessage() {} +func (*UpdateStreamResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtgate_229a16ae636de397, []int{44} +} +func (m *UpdateStreamResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_UpdateStreamResponse.Unmarshal(m, b) +} +func (m *UpdateStreamResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_UpdateStreamResponse.Marshal(b, m, deterministic) +} +func (dst *UpdateStreamResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_UpdateStreamResponse.Merge(dst, src) +} +func (m *UpdateStreamResponse) XXX_Size() int { + return xxx_messageInfo_UpdateStreamResponse.Size(m) +} +func (m *UpdateStreamResponse) XXX_DiscardUnknown() { + xxx_messageInfo_UpdateStreamResponse.DiscardUnknown(m) } -func (m *UpdateStreamResponse) Reset() { *m = UpdateStreamResponse{} } -func (m *UpdateStreamResponse) String() string { return proto.CompactTextString(m) } -func (*UpdateStreamResponse) ProtoMessage() {} -func (*UpdateStreamResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{44} } +var xxx_messageInfo_UpdateStreamResponse proto.InternalMessageInfo func (m *UpdateStreamResponse) GetEvent() *query.StreamEvent { if m != nil { @@ -2416,123 +3453,125 @@ func init() { proto.RegisterEnum("vtgate.TransactionMode", TransactionMode_name, TransactionMode_value) } -func init() { proto.RegisterFile("vtgate.proto", fileDescriptor0) } +func init() { proto.RegisterFile("vtgate.proto", fileDescriptor_vtgate_229a16ae636de397) } -var fileDescriptor0 = []byte{ - // 1838 bytes of a gzipped FileDescriptorProto +var fileDescriptor_vtgate_229a16ae636de397 = []byte{ + // 1858 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x5a, 0x5b, 0x8f, 0x23, 0x47, - 0x15, 0xa6, 0xbb, 0x7d, 0x3d, 0xbe, 0x4e, 0xad, 0x77, 0xd7, 0x71, 0x86, 0x1d, 0xa7, 0x61, 0x14, - 0x27, 0x59, 0x39, 0xc4, 0xe1, 0x26, 0x84, 0x04, 0x19, 0xef, 0x10, 0x59, 0xd9, 0xd9, 0x0c, 0x65, - 0x6f, 0x02, 0x12, 0x51, 0xab, 0xc7, 0x2e, 0x79, 0x1a, 0xdb, 0xdd, 0x4e, 0x57, 0xd9, 0x61, 0x78, - 0x40, 0xf9, 0x07, 0x11, 0x0f, 0x48, 0x68, 0x85, 0x84, 0x90, 0x90, 0x90, 0x90, 0x78, 0x45, 0x02, - 0x5e, 0x78, 0xe3, 0x11, 0xf1, 0xc4, 0x3b, 0x7f, 0x00, 0x89, 0x5f, 0x80, 0xba, 0xaa, 0xfa, 0xe2, - 0x9e, 0xb1, 0xc7, 0xe3, 0xb9, 0xc8, 0xfb, 0xe4, 0xae, 0x53, 0xb7, 0xaf, 0xbe, 0xf3, 0xd5, 0xa9, - 0xd3, 0xd5, 0x86, 0xfc, 0x9c, 0x0d, 0x4d, 0x46, 0x9a, 0x53, 0xd7, 0x61, 0x0e, 0x4a, 0x89, 0x52, - 0x2d, 0xf7, 0xe9, 0x8c, 0xb8, 0x67, 0xc2, 0x58, 0x2b, 0x32, 0x67, 0xea, 0x0c, 0x4c, 0x66, 0xca, - 0x72, 0x6e, 0xce, 0xdc, 0x69, 0x5f, 0x14, 0xf4, 0x3f, 0x6a, 0x90, 0xee, 0x12, 0x4a, 0x2d, 0xc7, - 0x46, 0xfb, 0x50, 0xb4, 0x6c, 0x83, 0xb9, 0xa6, 0x4d, 0xcd, 0x3e, 0xb3, 0x1c, 0xbb, 0xaa, 0xd4, - 0x95, 0x46, 0x06, 0x17, 0x2c, 0xbb, 0x17, 0x1a, 0x51, 0x1b, 0x8a, 0xf4, 0xd4, 0x74, 0x07, 0x06, - 0x15, 0xfd, 0x68, 0x55, 0xad, 0x6b, 0x8d, 0x5c, 0x6b, 0xb7, 0x29, 0xb1, 0xc8, 0xf1, 0x9a, 0x5d, - 0xaf, 0x95, 0x2c, 0xe0, 0x02, 0x8d, 0x94, 0x28, 0x7a, 0x15, 0xb2, 0xd4, 0xb2, 0x87, 0x63, 0x62, - 0x0c, 0x4e, 0xaa, 0x1a, 0x9f, 0x26, 0x23, 0x0c, 0x4f, 0x4e, 0xd0, 0x23, 0x00, 0x73, 0xc6, 0x9c, - 0xbe, 0x33, 0x99, 0x58, 0xac, 0x9a, 0xe0, 0xb5, 0x11, 0x0b, 0xfa, 0x0a, 0x14, 0x98, 0xe9, 0x0e, - 0x09, 0x33, 0x28, 0x73, 0x2d, 0x7b, 0x58, 0x4d, 0xd6, 0x95, 0x46, 0x16, 0xe7, 0x85, 0xb1, 0xcb, - 0x6d, 0xe8, 0x6d, 0x48, 0x3b, 0x53, 0xc6, 0xf1, 0xa5, 0xea, 0x4a, 0x23, 0xd7, 0xba, 0xdf, 0x14, - 0xac, 0x1c, 0xfe, 0x8c, 0xf4, 0x67, 0x8c, 0x7c, 0x28, 0x2a, 0xb1, 0xdf, 0x0a, 0x1d, 0x40, 0x39, - 0xb2, 0x76, 0x63, 0xe2, 0x0c, 0x48, 0x35, 0x5d, 0x57, 0x1a, 0xc5, 0xd6, 0x43, 0x7f, 0x65, 0x11, - 0x1a, 0x8e, 0x9c, 0x01, 0xc1, 0x25, 0xb6, 0x68, 0xa8, 0xfd, 0x04, 0xf2, 0xd1, 0x55, 0xa3, 0x7d, - 0x48, 0x09, 0x50, 0x9c, 0xca, 0x5c, 0xab, 0x20, 0x31, 0xf4, 0xb8, 0x11, 0xcb, 0x4a, 0x8f, 0xf9, - 0xe8, 0xd4, 0xd6, 0xa0, 0xaa, 0xd6, 0x95, 0x86, 0x86, 0x0b, 0x11, 0x6b, 0x67, 0xa0, 0xff, 0x53, - 0x85, 0xa2, 0x44, 0x8f, 0xc9, 0xa7, 0x33, 0x42, 0x19, 0x7a, 0x0c, 0xd9, 0xbe, 0x39, 0x1e, 0x13, - 0xd7, 0xeb, 0x24, 0xe6, 0x28, 0x35, 0x85, 0x83, 0xdb, 0xdc, 0xde, 0x79, 0x82, 0x33, 0xa2, 0x45, - 0x67, 0x80, 0xde, 0x80, 0xb4, 0x74, 0x1a, 0x9f, 0x40, 0xb4, 0x8d, 0xfa, 0x0c, 0xfb, 0xf5, 0xe8, - 0x75, 0x48, 0x72, 0xa8, 0xdc, 0x39, 0xb9, 0xd6, 0x8e, 0x04, 0x7e, 0xe0, 0xcc, 0xec, 0xc1, 0x0f, - 0xbd, 0x47, 0x2c, 0xea, 0xd1, 0x37, 0x20, 0xc7, 0xcc, 0x93, 0x31, 0x61, 0x06, 0x3b, 0x9b, 0x12, - 0xee, 0xad, 0x62, 0xab, 0xd2, 0x0c, 0x44, 0xd7, 0xe3, 0x95, 0xbd, 0xb3, 0x29, 0xc1, 0xc0, 0x82, - 0x67, 0xf4, 0x18, 0x90, 0xed, 0x30, 0x23, 0x26, 0xb8, 0x24, 0xf7, 0x75, 0xd9, 0x76, 0x58, 0x67, - 0x41, 0x73, 0xfb, 0x50, 0x1c, 0x91, 0x33, 0x3a, 0x35, 0xfb, 0xc4, 0xe0, 0x42, 0xe2, 0x3e, 0xcd, - 0xe2, 0x82, 0x6f, 0xe5, 0xac, 0x47, 0x7d, 0x9e, 0x5e, 0xc7, 0xe7, 0xfa, 0x17, 0x0a, 0x94, 0x02, - 0x46, 0xe9, 0xd4, 0xb1, 0x29, 0x41, 0xfb, 0x90, 0x24, 0xae, 0xeb, 0xb8, 0x31, 0x3a, 0xf1, 0x71, - 0xfb, 0xd0, 0x33, 0x63, 0x51, 0x7b, 0x15, 0x2e, 0xdf, 0x84, 0x94, 0x4b, 0xe8, 0x6c, 0xcc, 0x24, - 0x99, 0x48, 0xa2, 0x12, 0x3c, 0xf2, 0x1a, 0x2c, 0x5b, 0xe8, 0xff, 0x51, 0xa1, 0x22, 0x11, 0xf1, - 0x35, 0xd1, 0xed, 0xf1, 0x74, 0x0d, 0x32, 0x3e, 0xdd, 0xdc, 0xcd, 0x59, 0x1c, 0x94, 0xd1, 0x03, - 0x48, 0x71, 0xbf, 0xd0, 0x6a, 0xb2, 0xae, 0x35, 0xb2, 0x58, 0x96, 0xe2, 0xea, 0x48, 0x5d, 0x4b, - 0x1d, 0xe9, 0x25, 0xea, 0x88, 0xb8, 0x3d, 0xb3, 0x96, 0xdb, 0x7f, 0xa5, 0xc0, 0xfd, 0x18, 0xc9, - 0x5b, 0xe1, 0xfc, 0xff, 0xa9, 0xf0, 0x8a, 0xc4, 0xf5, 0x81, 0x64, 0xb6, 0xf3, 0xb2, 0x28, 0xe0, - 0x35, 0xc8, 0x07, 0x5b, 0xd4, 0x92, 0x3a, 0xc8, 0xe3, 0xdc, 0x28, 0x5c, 0xc7, 0x96, 0x8a, 0xe1, - 0x85, 0x02, 0xb5, 0x8b, 0x48, 0xdf, 0x0a, 0x45, 0x7c, 0xae, 0xc1, 0xc3, 0x10, 0x1c, 0x36, 0xed, - 0x21, 0x79, 0x49, 0xf4, 0xf0, 0x0e, 0xc0, 0x88, 0x9c, 0x19, 0x2e, 0x87, 0xcc, 0xd5, 0xe0, 0xad, - 0x34, 0xf0, 0xb5, 0xbf, 0x1a, 0x9c, 0x1d, 0xf9, 0xeb, 0xda, 0x52, 0x7d, 0xfc, 0x5a, 0x81, 0xea, - 0x79, 0x17, 0x6c, 0x85, 0x3a, 0xfe, 0x92, 0x08, 0xd4, 0x71, 0x68, 0x33, 0x8b, 0x9d, 0xbd, 0x34, - 0xd1, 0xe2, 0x31, 0x20, 0xc2, 0x11, 0x1b, 0x7d, 0x67, 0x3c, 0x9b, 0xd8, 0x86, 0x6d, 0x4e, 0x88, - 0xcc, 0xe3, 0xca, 0xa2, 0xa6, 0xcd, 0x2b, 0x9e, 0x99, 0x13, 0x82, 0x7e, 0x04, 0xf7, 0x64, 0xeb, - 0x85, 0x10, 0x93, 0xe2, 0xa2, 0x6a, 0xf8, 0x48, 0x97, 0x30, 0xd1, 0xf4, 0x0d, 0x78, 0x47, 0x0c, - 0xf2, 0xc1, 0xf2, 0x90, 0x94, 0xbe, 0x96, 0xe4, 0x32, 0x97, 0x4b, 0x2e, 0xbb, 0x8e, 0xe4, 0x6a, - 0x27, 0x90, 0xf1, 0x41, 0xa3, 0x3d, 0x48, 0x70, 0x68, 0x0a, 0x87, 0x96, 0xf3, 0x13, 0x48, 0x0f, - 0x11, 0xaf, 0x40, 0x15, 0x48, 0xce, 0xcd, 0xf1, 0x8c, 0x70, 0xc7, 0xe5, 0xb1, 0x28, 0xa0, 0x3d, - 0xc8, 0x45, 0xb8, 0xe2, 0xbe, 0xca, 0x63, 0x08, 0xa3, 0x71, 0x54, 0xd6, 0x11, 0xc6, 0xb6, 0x42, - 0xd6, 0xff, 0x52, 0xe1, 0x9e, 0x84, 0x76, 0x60, 0xb2, 0xfe, 0xe9, 0xad, 0x4b, 0xfa, 0x2d, 0x48, - 0x7b, 0x68, 0x2c, 0x42, 0xab, 0x1a, 0xd7, 0xd4, 0x05, 0xa2, 0xf6, 0x5b, 0x6c, 0x9a, 0xf0, 0xee, - 0x43, 0xd1, 0xa4, 0x17, 0x24, 0xbb, 0x05, 0x93, 0xde, 0x45, 0xa6, 0xfb, 0x42, 0x09, 0xf2, 0x4a, - 0xc9, 0xe9, 0xad, 0xb9, 0xfa, 0x6b, 0x90, 0x16, 0x8e, 0xf4, 0xd9, 0x7c, 0x20, 0xb1, 0x09, 0x37, - 0x7f, 0x6c, 0xb1, 0x53, 0x31, 0xb4, 0xdf, 0x4c, 0xb7, 0xa1, 0xc4, 0x99, 0xe6, 0x6b, 0xe3, 0x74, - 0x87, 0x51, 0x46, 0xb9, 0x42, 0x94, 0x51, 0x97, 0x66, 0xa5, 0x5a, 0x34, 0x2b, 0xd5, 0xff, 0x1c, - 0xe6, 0x59, 0x9c, 0x8c, 0x3b, 0xca, 0xb4, 0xdf, 0x89, 0xcb, 0x2c, 0x78, 0xb1, 0x8c, 0xad, 0xfe, - 0xae, 0xc4, 0x76, 0xd5, 0x77, 0x64, 0xfd, 0x37, 0x61, 0xae, 0xb4, 0x40, 0xdc, 0xad, 0x69, 0xe9, - 0x71, 0x5c, 0x4b, 0x17, 0xc5, 0x8d, 0x40, 0x47, 0xbf, 0x80, 0x0a, 0x67, 0x32, 0x8c, 0xf0, 0x37, - 0x28, 0xa6, 0x78, 0x82, 0xab, 0x9d, 0x4b, 0x70, 0xf5, 0xbf, 0xab, 0xf0, 0x28, 0x4a, 0xcf, 0x5d, - 0x26, 0xf1, 0xdf, 0x8c, 0x8b, 0x6b, 0x77, 0x41, 0x5c, 0x31, 0x4a, 0xb6, 0x56, 0x61, 0xbf, 0x53, - 0x60, 0x6f, 0x29, 0x85, 0x5b, 0x22, 0xb3, 0x3f, 0xa8, 0x50, 0xe9, 0x32, 0x97, 0x98, 0x93, 0x6b, - 0xdd, 0xc6, 0x04, 0xaa, 0x54, 0xaf, 0x76, 0xc5, 0xa2, 0xad, 0xef, 0xa2, 0xd8, 0x51, 0x92, 0xb8, - 0xe4, 0x28, 0x49, 0xae, 0x75, 0x51, 0x16, 0xe1, 0x35, 0xb5, 0x9a, 0x57, 0xbd, 0x0d, 0xf7, 0x63, - 0x44, 0x49, 0x17, 0x86, 0xe9, 0x80, 0x72, 0x69, 0x3a, 0xf0, 0x85, 0x0a, 0xb5, 0x85, 0x51, 0xae, - 0x13, 0xae, 0xd7, 0x26, 0x3d, 0x1a, 0x0a, 0xb4, 0xa5, 0xe7, 0x4a, 0x62, 0xd5, 0x6d, 0x47, 0x72, - 0x4d, 0x47, 0x5d, 0x79, 0x93, 0x74, 0xe0, 0xd5, 0x0b, 0x09, 0xd9, 0x80, 0xdc, 0xdf, 0xaa, 0xb0, - 0xb7, 0x30, 0xd6, 0xb5, 0x63, 0xd6, 0x8d, 0x30, 0x1c, 0x0f, 0xb6, 0x89, 0x4b, 0x6f, 0x13, 0x6e, - 0x8d, 0xec, 0x67, 0x50, 0x5f, 0x4e, 0xd0, 0x06, 0x8c, 0xff, 0x49, 0x85, 0x2f, 0xc7, 0x07, 0xbc, - 0xce, 0x8b, 0xfd, 0x8d, 0xf0, 0xbd, 0xf8, 0xb6, 0x9e, 0xd8, 0xe0, 0x6d, 0xfd, 0xd6, 0xf8, 0x7f, - 0x0a, 0x8f, 0x96, 0xd1, 0xb5, 0x01, 0xfb, 0x3f, 0x86, 0xfc, 0x01, 0x19, 0x5a, 0xf6, 0x66, 0x5c, - 0x2f, 0x7c, 0xb6, 0x50, 0x17, 0x3f, 0x5b, 0xe8, 0xdf, 0x81, 0x82, 0x1c, 0x5a, 0xe2, 0x8a, 0x04, - 0x4a, 0xe5, 0x92, 0x40, 0xf9, 0xb9, 0x02, 0x85, 0x36, 0xff, 0xba, 0x71, 0xeb, 0x89, 0xc2, 0x03, - 0x48, 0x99, 0xcc, 0x99, 0x58, 0x7d, 0xf9, 0xdd, 0x45, 0x96, 0xf4, 0x32, 0x14, 0x7d, 0x04, 0x02, - 0xbf, 0xfe, 0x53, 0x28, 0x61, 0x67, 0x3c, 0x3e, 0x31, 0xfb, 0xa3, 0xdb, 0x46, 0xa5, 0x23, 0x28, - 0x87, 0x73, 0xc9, 0xf9, 0x3f, 0x81, 0x57, 0x30, 0xa1, 0xce, 0x78, 0x4e, 0x22, 0x29, 0xc5, 0x66, - 0x48, 0x10, 0x24, 0x06, 0x4c, 0x7e, 0x57, 0xc9, 0x62, 0xfe, 0xac, 0xff, 0x4d, 0x81, 0xca, 0x11, - 0xa1, 0xd4, 0x1c, 0x12, 0x21, 0xb0, 0xcd, 0x86, 0x5e, 0x95, 0x33, 0x56, 0x20, 0x29, 0x4e, 0x5e, - 0xb1, 0xdf, 0x44, 0x01, 0xbd, 0x0d, 0xd9, 0x60, 0xb3, 0xf1, 0x33, 0xf9, 0xe2, 0xbd, 0x96, 0xf1, - 0xf7, 0x9a, 0x87, 0x3e, 0x72, 0x3f, 0xc2, 0x9f, 0xf5, 0x5f, 0x2a, 0xb0, 0x23, 0xd1, 0xbf, 0xb7, - 0xa9, 0x7f, 0x56, 0x41, 0xf7, 0xe7, 0xd4, 0xc2, 0x39, 0xd1, 0x23, 0xd0, 0xfc, 0x60, 0x9c, 0x6b, - 0xe5, 0xe5, 0x2e, 0xfb, 0xc8, 0x1c, 0xcf, 0x08, 0xf6, 0x2a, 0xf4, 0x23, 0xc8, 0x77, 0x22, 0x99, - 0x26, 0xda, 0x05, 0x35, 0x80, 0xb1, 0xd8, 0x5c, 0xb5, 0x06, 0xf1, 0x2b, 0x0a, 0xf5, 0xdc, 0x15, - 0xc5, 0x5f, 0x15, 0xd8, 0x0d, 0x97, 0x78, 0xed, 0x83, 0xe9, 0xaa, 0xab, 0xfd, 0x2e, 0x94, 0xac, - 0x81, 0x71, 0xee, 0x18, 0xca, 0xb5, 0x2a, 0xbe, 0x8a, 0xa3, 0x8b, 0xc5, 0x05, 0x2b, 0x52, 0xa2, - 0xfa, 0x2e, 0xd4, 0x2e, 0x12, 0xaf, 0x94, 0xf6, 0x7f, 0x55, 0xd8, 0xe9, 0x4e, 0xc7, 0x16, 0x93, - 0x31, 0xea, 0xa6, 0xd7, 0xb3, 0xf6, 0x25, 0xdd, 0x6b, 0x90, 0xa7, 0x1e, 0x0e, 0x79, 0x0f, 0x27, - 0x13, 0x9a, 0x1c, 0xb7, 0x89, 0x1b, 0x38, 0xcf, 0x4f, 0x7e, 0x93, 0x99, 0xcd, 0xb8, 0x08, 0x35, - 0x0c, 0xb2, 0xc5, 0xcc, 0x66, 0xe8, 0xeb, 0xf0, 0xd0, 0x9e, 0x4d, 0x0c, 0xd7, 0xf9, 0x8c, 0x1a, - 0x53, 0xe2, 0x1a, 0x7c, 0x64, 0x63, 0x6a, 0xba, 0x8c, 0x87, 0x78, 0x0d, 0xdf, 0xb3, 0x67, 0x13, - 0xec, 0x7c, 0x46, 0x8f, 0x89, 0xcb, 0x27, 0x3f, 0x36, 0x5d, 0x86, 0xbe, 0x0f, 0x59, 0x73, 0x3c, - 0x74, 0x5c, 0x8b, 0x9d, 0x4e, 0xe4, 0xc5, 0x9b, 0x2e, 0x61, 0x9e, 0x63, 0xa6, 0xf9, 0x9e, 0xdf, - 0x12, 0x87, 0x9d, 0xd0, 0x5b, 0x80, 0x66, 0x94, 0x18, 0x02, 0x9c, 0x98, 0x74, 0xde, 0x92, 0xb7, - 0x70, 0xa5, 0x19, 0x25, 0xe1, 0x30, 0x1f, 0xb5, 0xf4, 0x7f, 0x68, 0x80, 0xa2, 0xe3, 0xca, 0x18, - 0xfd, 0x2d, 0x48, 0xf1, 0xfe, 0xb4, 0xaa, 0x70, 0xdf, 0xee, 0x05, 0x11, 0xea, 0x5c, 0xdb, 0xa6, - 0x07, 0x1b, 0xcb, 0xe6, 0xb5, 0x4f, 0x20, 0xef, 0xef, 0x54, 0xbe, 0x9c, 0xa8, 0x37, 0x94, 0x95, - 0xa7, 0xab, 0xba, 0xc6, 0xe9, 0x5a, 0xfb, 0x1e, 0x64, 0x79, 0x56, 0x77, 0xe9, 0xd8, 0x61, 0x2e, - 0xaa, 0x46, 0x73, 0xd1, 0xda, 0xbf, 0x15, 0x48, 0xf0, 0xce, 0x6b, 0xbf, 0xfc, 0x1e, 0xf1, 0xf7, - 0x05, 0x81, 0x52, 0x78, 0x4f, 0x04, 0xed, 0xd7, 0x57, 0x50, 0x12, 0xa5, 0x00, 0xe7, 0x47, 0x51, - 0x42, 0xda, 0x00, 0xe2, 0x7f, 0x02, 0x7c, 0x28, 0xa1, 0xc3, 0xaf, 0xae, 0x18, 0x2a, 0x58, 0x2e, - 0xce, 0xd2, 0x60, 0xe5, 0x08, 0x12, 0xd4, 0xfa, 0xb9, 0x88, 0x92, 0x1a, 0xe6, 0xcf, 0xfa, 0xbb, - 0x70, 0xff, 0x7d, 0xc2, 0xba, 0xee, 0xdc, 0xdf, 0x6e, 0xfe, 0xf6, 0x59, 0x41, 0x93, 0x8e, 0xe1, - 0x41, 0xbc, 0x93, 0x54, 0xc0, 0xb7, 0x21, 0x4f, 0xdd, 0xb9, 0xb1, 0xd0, 0xd3, 0xcb, 0x4a, 0x02, - 0xf7, 0x44, 0x3b, 0xe5, 0x68, 0x58, 0xd0, 0x7f, 0xaf, 0xc2, 0xbd, 0xe7, 0xd3, 0x81, 0xc9, 0xb6, - 0xfd, 0xfc, 0xd8, 0x30, 0x55, 0xdb, 0x85, 0x2c, 0xb3, 0x26, 0x84, 0x32, 0x73, 0x32, 0x95, 0x3b, - 0x39, 0x34, 0x78, 0xba, 0x22, 0x73, 0x62, 0x33, 0x79, 0x01, 0xe9, 0xeb, 0xea, 0xd0, 0xb3, 0xf5, - 0x9c, 0x11, 0xb1, 0xb1, 0xa8, 0xd7, 0x47, 0x50, 0x59, 0x64, 0x49, 0x12, 0xdf, 0xf0, 0x07, 0x58, - 0xcc, 0xda, 0x64, 0xb2, 0xe7, 0xd5, 0xc8, 0x11, 0xd0, 0x1b, 0x50, 0xf6, 0xd2, 0xb7, 0x09, 0x31, - 0x42, 0x3c, 0xe2, 0x1f, 0x12, 0x25, 0x61, 0xef, 0xf9, 0xe6, 0x37, 0x9f, 0x40, 0x29, 0xf6, 0x2f, - 0x0d, 0x54, 0x82, 0xdc, 0xf3, 0x67, 0xdd, 0xe3, 0xc3, 0x76, 0xe7, 0x07, 0x9d, 0xc3, 0x27, 0xe5, - 0x2f, 0x21, 0x80, 0x54, 0xb7, 0xf3, 0xec, 0xfd, 0xa7, 0x87, 0x65, 0x05, 0x65, 0x21, 0x79, 0xf4, - 0xfc, 0x69, 0xaf, 0x53, 0x56, 0xbd, 0xc7, 0xde, 0xc7, 0x1f, 0x1e, 0xb7, 0xcb, 0xda, 0xc1, 0x0e, - 0x94, 0x2c, 0xa7, 0x39, 0xb7, 0x18, 0xa1, 0x54, 0xfc, 0x53, 0xe6, 0x24, 0xc5, 0x7f, 0xde, 0xfd, - 0x7f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe8, 0x09, 0x06, 0xcb, 0x72, 0x23, 0x00, 0x00, + 0x15, 0xa6, 0xbb, 0x7d, 0x3d, 0xbe, 0x6e, 0xad, 0x77, 0xd7, 0x71, 0x86, 0x1d, 0xa7, 0xc3, 0x28, + 0x4e, 0xb2, 0xf2, 0x10, 0x07, 0x02, 0x42, 0x48, 0x90, 0xf1, 0x0e, 0x91, 0x95, 0x9d, 0xcd, 0x50, + 0xf6, 0x26, 0x80, 0x88, 0x5a, 0x3d, 0x76, 0xc9, 0xdb, 0xd8, 0xee, 0x76, 0xba, 0xca, 0x0e, 0xc3, + 0x03, 0xca, 0x3f, 0x88, 0x78, 0x40, 0x42, 0x11, 0x12, 0x42, 0x42, 0x42, 0x42, 0xe2, 0x15, 0x09, + 0x78, 0xe1, 0x8d, 0x47, 0xc4, 0x13, 0xef, 0xfc, 0x01, 0x24, 0x7e, 0x41, 0xd4, 0x55, 0xd5, 0x17, + 0xf7, 0x8c, 0x3d, 0x1e, 0xcf, 0x45, 0xde, 0xb7, 0xae, 0x53, 0xd5, 0x55, 0xdf, 0xf9, 0xce, 0x57, + 0xa7, 0x4e, 0x97, 0x0d, 0xf9, 0x39, 0x1b, 0x9a, 0x8c, 0x34, 0xa7, 0xae, 0xc3, 0x1c, 0x94, 0x12, + 0xad, 0x5a, 0xee, 0x93, 0x19, 0x71, 0x4f, 0x85, 0xb1, 0x56, 0x64, 0xce, 0xd4, 0x19, 0x98, 0xcc, + 0x94, 0xed, 0xdc, 0x9c, 0xb9, 0xd3, 0xbe, 0x68, 0xe8, 0x7f, 0xd2, 0x20, 0xdd, 0x25, 0x94, 0x5a, + 0x8e, 0x8d, 0xf6, 0xa0, 0x68, 0xd9, 0x06, 0x73, 0x4d, 0x9b, 0x9a, 0x7d, 0x66, 0x39, 0x76, 0x55, + 0xa9, 0x2b, 0x8d, 0x0c, 0x2e, 0x58, 0x76, 0x2f, 0x34, 0xa2, 0x36, 0x14, 0xe9, 0x73, 0xd3, 0x1d, + 0x18, 0x54, 0xbc, 0x47, 0xab, 0x6a, 0x5d, 0x6b, 0xe4, 0x5a, 0x3b, 0x4d, 0x89, 0x45, 0xce, 0xd7, + 0xec, 0x7a, 0xa3, 0x64, 0x03, 0x17, 0x68, 0xa4, 0x45, 0xd1, 0xcb, 0x90, 0xa5, 0x96, 0x3d, 0x1c, + 0x13, 0x63, 0x70, 0x52, 0xd5, 0xf8, 0x32, 0x19, 0x61, 0x78, 0x7c, 0x82, 0x1e, 0x02, 0x98, 0x33, + 0xe6, 0xf4, 0x9d, 0xc9, 0xc4, 0x62, 0xd5, 0x04, 0xef, 0x8d, 0x58, 0xd0, 0xab, 0x50, 0x60, 0xa6, + 0x3b, 0x24, 0xcc, 0xa0, 0xcc, 0xb5, 0xec, 0x61, 0x35, 0x59, 0x57, 0x1a, 0x59, 0x9c, 0x17, 0xc6, + 0x2e, 0xb7, 0xa1, 0x7d, 0x48, 0x3b, 0x53, 0xc6, 0xf1, 0xa5, 0xea, 0x4a, 0x23, 0xd7, 0xba, 0xd7, + 0x14, 0xac, 0x1c, 0xfe, 0x9c, 0xf4, 0x67, 0x8c, 0x7c, 0x20, 0x3a, 0xb1, 0x3f, 0x0a, 0x1d, 0x40, + 0x39, 0xe2, 0xbb, 0x31, 0x71, 0x06, 0xa4, 0x9a, 0xae, 0x2b, 0x8d, 0x62, 0xeb, 0x81, 0xef, 0x59, + 0x84, 0x86, 0x23, 0x67, 0x40, 0x70, 0x89, 0x2d, 0x1a, 0x6a, 0x3f, 0x85, 0x7c, 0xd4, 0x6b, 0xb4, + 0x07, 0x29, 0x01, 0x8a, 0x53, 0x99, 0x6b, 0x15, 0x24, 0x86, 0x1e, 0x37, 0x62, 0xd9, 0xe9, 0x31, + 0x1f, 0x5d, 0xda, 0x1a, 0x54, 0xd5, 0xba, 0xd2, 0xd0, 0x70, 0x21, 0x62, 0xed, 0x0c, 0xf4, 0x7f, + 0xa9, 0x50, 0x94, 0xe8, 0x31, 0xf9, 0x64, 0x46, 0x28, 0x43, 0x8f, 0x20, 0xdb, 0x37, 0xc7, 0x63, + 0xe2, 0x7a, 0x2f, 0x89, 0x35, 0x4a, 0x4d, 0x11, 0xe0, 0x36, 0xb7, 0x77, 0x1e, 0xe3, 0x8c, 0x18, + 0xd1, 0x19, 0xa0, 0xd7, 0x21, 0x2d, 0x83, 0xc6, 0x17, 0x10, 0x63, 0xa3, 0x31, 0xc3, 0x7e, 0x3f, + 0x7a, 0x0d, 0x92, 0x1c, 0x2a, 0x0f, 0x4e, 0xae, 0x75, 0x47, 0x02, 0x3f, 0x70, 0x66, 0xf6, 0xe0, + 0x87, 0xde, 0x23, 0x16, 0xfd, 0xe8, 0x9b, 0x90, 0x63, 0xe6, 0xc9, 0x98, 0x30, 0x83, 0x9d, 0x4e, + 0x09, 0x8f, 0x56, 0xb1, 0x55, 0x69, 0x06, 0xa2, 0xeb, 0xf1, 0xce, 0xde, 0xe9, 0x94, 0x60, 0x60, + 0xc1, 0x33, 0x7a, 0x04, 0xc8, 0x76, 0x98, 0x11, 0x13, 0x5c, 0x92, 0xc7, 0xba, 0x6c, 0x3b, 0xac, + 0xb3, 0xa0, 0xb9, 0x3d, 0x28, 0x8e, 0xc8, 0x29, 0x9d, 0x9a, 0x7d, 0x62, 0x70, 0x21, 0xf1, 0x98, + 0x66, 0x71, 0xc1, 0xb7, 0x72, 0xd6, 0xa3, 0x31, 0x4f, 0xaf, 0x13, 0x73, 0xfd, 0x73, 0x05, 0x4a, + 0x01, 0xa3, 0x74, 0xea, 0xd8, 0x94, 0xa0, 0x3d, 0x48, 0x12, 0xd7, 0x75, 0xdc, 0x18, 0x9d, 0xf8, + 0xb8, 0x7d, 0xe8, 0x99, 0xb1, 0xe8, 0xbd, 0x0c, 0x97, 0x6f, 0x40, 0xca, 0x25, 0x74, 0x36, 0x66, + 0x92, 0x4c, 0x24, 0x51, 0x09, 0x1e, 0x79, 0x0f, 0x96, 0x23, 0xf4, 0xff, 0xaa, 0x50, 0x91, 0x88, + 0xb8, 0x4f, 0x74, 0x7b, 0x22, 0x5d, 0x83, 0x8c, 0x4f, 0x37, 0x0f, 0x73, 0x16, 0x07, 0x6d, 0x74, + 0x1f, 0x52, 0x3c, 0x2e, 0xb4, 0x9a, 0xac, 0x6b, 0x8d, 0x2c, 0x96, 0xad, 0xb8, 0x3a, 0x52, 0x57, + 0x52, 0x47, 0x7a, 0x89, 0x3a, 0x22, 0x61, 0xcf, 0xac, 0x15, 0xf6, 0x5f, 0x2b, 0x70, 0x2f, 0x46, + 0xf2, 0x56, 0x04, 0xff, 0xff, 0x2a, 0xbc, 0x24, 0x71, 0xbd, 0x2f, 0x99, 0xed, 0xbc, 0x28, 0x0a, + 0x78, 0x05, 0xf2, 0xc1, 0x16, 0xb5, 0xa4, 0x0e, 0xf2, 0x38, 0x37, 0x0a, 0xfd, 0xd8, 0x52, 0x31, + 0x7c, 0xa1, 0x40, 0xed, 0x3c, 0xd2, 0xb7, 0x42, 0x11, 0x9f, 0x69, 0xf0, 0x20, 0x04, 0x87, 0x4d, + 0x7b, 0x48, 0x5e, 0x10, 0x3d, 0xbc, 0x05, 0x30, 0x22, 0xa7, 0x86, 0xcb, 0x21, 0x73, 0x35, 0x78, + 0x9e, 0x06, 0xb1, 0xf6, 0xbd, 0xc1, 0xd9, 0x91, 0xef, 0xd7, 0x96, 0xea, 0xe3, 0x37, 0x0a, 0x54, + 0xcf, 0x86, 0x60, 0x2b, 0xd4, 0xf1, 0xd7, 0x44, 0xa0, 0x8e, 0x43, 0x9b, 0x59, 0xec, 0xf4, 0x85, + 0xc9, 0x16, 0x8f, 0x00, 0x11, 0x8e, 0xd8, 0xe8, 0x3b, 0xe3, 0xd9, 0xc4, 0x36, 0x6c, 0x73, 0x42, + 0x64, 0x1d, 0x57, 0x16, 0x3d, 0x6d, 0xde, 0xf1, 0xd4, 0x9c, 0x10, 0xf4, 0x23, 0xb8, 0x2b, 0x47, + 0x2f, 0xa4, 0x98, 0x14, 0x17, 0x55, 0xc3, 0x47, 0xba, 0x84, 0x89, 0xa6, 0x6f, 0xc0, 0x77, 0xc4, + 0x24, 0xef, 0x2f, 0x4f, 0x49, 0xe9, 0x2b, 0x49, 0x2e, 0x73, 0xb1, 0xe4, 0xb2, 0xeb, 0x48, 0xae, + 0x76, 0x02, 0x19, 0x1f, 0x34, 0xda, 0x85, 0x04, 0x87, 0xa6, 0x70, 0x68, 0x39, 0xbf, 0x80, 0xf4, + 0x10, 0xf1, 0x0e, 0x54, 0x81, 0xe4, 0xdc, 0x1c, 0xcf, 0x08, 0x0f, 0x5c, 0x1e, 0x8b, 0x06, 0xda, + 0x85, 0x5c, 0x84, 0x2b, 0x1e, 0xab, 0x3c, 0x86, 0x30, 0x1b, 0x47, 0x65, 0x1d, 0x61, 0x6c, 0x2b, + 0x64, 0xfd, 0x6f, 0x15, 0xee, 0x4a, 0x68, 0x07, 0x26, 0xeb, 0x3f, 0xbf, 0x71, 0x49, 0xbf, 0x09, + 0x69, 0x0f, 0x8d, 0x45, 0x68, 0x55, 0xe3, 0x9a, 0x3a, 0x47, 0xd4, 0xfe, 0x88, 0x4d, 0x0b, 0xde, + 0x3d, 0x28, 0x9a, 0xf4, 0x9c, 0x62, 0xb7, 0x60, 0xd2, 0xdb, 0xa8, 0x74, 0xbf, 0x50, 0x82, 0xba, + 0x52, 0x72, 0x7a, 0x63, 0xa1, 0xfe, 0x3a, 0xa4, 0x45, 0x20, 0x7d, 0x36, 0xef, 0x4b, 0x6c, 0x22, + 0xcc, 0x1f, 0x59, 0xec, 0xb9, 0x98, 0xda, 0x1f, 0xa6, 0xdb, 0x50, 0xe2, 0x4c, 0x73, 0xdf, 0x38, + 0xdd, 0x61, 0x96, 0x51, 0x2e, 0x91, 0x65, 0xd4, 0xa5, 0x55, 0xa9, 0x16, 0xad, 0x4a, 0xf5, 0xbf, + 0x84, 0x75, 0x16, 0x27, 0xe3, 0x96, 0x2a, 0xed, 0xb7, 0xe2, 0x32, 0x0b, 0x3e, 0x2c, 0x63, 0xde, + 0xdf, 0x96, 0xd8, 0x2e, 0xfb, 0x8d, 0xac, 0xff, 0x36, 0xac, 0x95, 0x16, 0x88, 0xbb, 0x31, 0x2d, + 0x3d, 0x8a, 0x6b, 0xe9, 0xbc, 0xbc, 0x11, 0xe8, 0xe8, 0x97, 0x50, 0xe1, 0x4c, 0x86, 0x19, 0xfe, + 0x1a, 0xc5, 0x14, 0x2f, 0x70, 0xb5, 0x33, 0x05, 0xae, 0xfe, 0x0f, 0x15, 0x1e, 0x46, 0xe9, 0xb9, + 0xcd, 0x22, 0xfe, 0x9d, 0xb8, 0xb8, 0x76, 0x16, 0xc4, 0x15, 0xa3, 0x64, 0x6b, 0x15, 0xf6, 0x7b, + 0x05, 0x76, 0x97, 0x52, 0xb8, 0x25, 0x32, 0xfb, 0xa3, 0x0a, 0x95, 0x2e, 0x73, 0x89, 0x39, 0xb9, + 0xd2, 0x6d, 0x4c, 0xa0, 0x4a, 0xf5, 0x72, 0x57, 0x2c, 0xda, 0xfa, 0x21, 0x8a, 0x1d, 0x25, 0x89, + 0x0b, 0x8e, 0x92, 0xe4, 0x5a, 0x17, 0x65, 0x11, 0x5e, 0x53, 0xab, 0x79, 0xd5, 0xdb, 0x70, 0x2f, + 0x46, 0x94, 0x0c, 0x61, 0x58, 0x0e, 0x28, 0x17, 0x96, 0x03, 0x9f, 0xab, 0x50, 0x5b, 0x98, 0xe5, + 0x2a, 0xe9, 0x7a, 0x6d, 0xd2, 0xa3, 0xa9, 0x40, 0x5b, 0x7a, 0xae, 0x24, 0x56, 0xdd, 0x76, 0x24, + 0xd7, 0x0c, 0xd4, 0xa5, 0x37, 0x49, 0x07, 0x5e, 0x3e, 0x97, 0x90, 0x0d, 0xc8, 0xfd, 0x9d, 0x0a, + 0xbb, 0x0b, 0x73, 0x5d, 0x39, 0x67, 0x5d, 0x0b, 0xc3, 0xf1, 0x64, 0x9b, 0xb8, 0xf0, 0x36, 0xe1, + 0xc6, 0xc8, 0x7e, 0x0a, 0xf5, 0xe5, 0x04, 0x6d, 0xc0, 0xf8, 0x9f, 0x55, 0xf8, 0x6a, 0x7c, 0xc2, + 0xab, 0x7c, 0xd8, 0x5f, 0x0b, 0xdf, 0x8b, 0x5f, 0xeb, 0x89, 0x0d, 0xbe, 0xd6, 0x6f, 0x8c, 0xff, + 0x27, 0xf0, 0x70, 0x19, 0x5d, 0x1b, 0xb0, 0xff, 0x63, 0xc8, 0x1f, 0x90, 0xa1, 0x65, 0x6f, 0xc6, + 0xf5, 0xc2, 0xcf, 0x16, 0xea, 0xe2, 0xcf, 0x16, 0xfa, 0x77, 0xa0, 0x20, 0xa7, 0x96, 0xb8, 0x22, + 0x89, 0x52, 0xb9, 0x20, 0x51, 0x7e, 0xa6, 0x40, 0xa1, 0xcd, 0x7f, 0xdd, 0xb8, 0xf1, 0x42, 0xe1, + 0x3e, 0xa4, 0x4c, 0xe6, 0x4c, 0xac, 0xbe, 0xfc, 0xdd, 0x45, 0xb6, 0xf4, 0x32, 0x14, 0x7d, 0x04, + 0x02, 0xbf, 0xfe, 0x33, 0x28, 0x61, 0x67, 0x3c, 0x3e, 0x31, 0xfb, 0xa3, 0x9b, 0x46, 0xa5, 0x23, + 0x28, 0x87, 0x6b, 0xc9, 0xf5, 0x3f, 0x86, 0x97, 0x30, 0xa1, 0xce, 0x78, 0x4e, 0x22, 0x25, 0xc5, + 0x66, 0x48, 0x10, 0x24, 0x06, 0x4c, 0xfe, 0xae, 0x92, 0xc5, 0xfc, 0x59, 0xff, 0xbb, 0x02, 0x95, + 0x23, 0x42, 0xa9, 0x39, 0x24, 0x42, 0x60, 0x9b, 0x4d, 0xbd, 0xaa, 0x66, 0xac, 0x40, 0x52, 0x9c, + 0xbc, 0x62, 0xbf, 0x89, 0x06, 0xda, 0x87, 0x6c, 0xb0, 0xd9, 0xf8, 0x99, 0x7c, 0xfe, 0x5e, 0xcb, + 0xf8, 0x7b, 0xcd, 0x43, 0x1f, 0xb9, 0x1f, 0xe1, 0xcf, 0xfa, 0xaf, 0x14, 0xb8, 0x23, 0xd1, 0xbf, + 0xbb, 0x69, 0x7c, 0x56, 0x41, 0xf7, 0xd7, 0xd4, 0xc2, 0x35, 0xd1, 0x43, 0xd0, 0xfc, 0x64, 0x9c, + 0x6b, 0xe5, 0xe5, 0x2e, 0xfb, 0xd0, 0x1c, 0xcf, 0x08, 0xf6, 0x3a, 0xf4, 0x23, 0xc8, 0x77, 0x22, + 0x95, 0x26, 0xda, 0x01, 0x35, 0x80, 0xb1, 0x38, 0x5c, 0xb5, 0x06, 0xf1, 0x2b, 0x0a, 0xf5, 0xcc, + 0x15, 0xc5, 0xdf, 0x14, 0xd8, 0x09, 0x5d, 0xbc, 0xf2, 0xc1, 0x74, 0x59, 0x6f, 0xbf, 0x0b, 0x25, + 0x6b, 0x60, 0x9c, 0x39, 0x86, 0x72, 0xad, 0x8a, 0xaf, 0xe2, 0xa8, 0xb3, 0xb8, 0x60, 0x45, 0x5a, + 0x54, 0xdf, 0x81, 0xda, 0x79, 0xe2, 0x95, 0xd2, 0xfe, 0x9f, 0x0a, 0x77, 0xba, 0xd3, 0xb1, 0xc5, + 0x64, 0x8e, 0xba, 0x6e, 0x7f, 0xd6, 0xbe, 0xa4, 0x7b, 0x05, 0xf2, 0xd4, 0xc3, 0x21, 0xef, 0xe1, + 0x64, 0x41, 0x93, 0xe3, 0x36, 0x71, 0x03, 0xe7, 0xc5, 0xc9, 0x1f, 0x32, 0xb3, 0x19, 0x17, 0xa1, + 0x86, 0x41, 0x8e, 0x98, 0xd9, 0x0c, 0x7d, 0x03, 0x1e, 0xd8, 0xb3, 0x89, 0xe1, 0x3a, 0x9f, 0x52, + 0x63, 0x4a, 0x5c, 0x83, 0xcf, 0x6c, 0x4c, 0x4d, 0x97, 0xf1, 0x14, 0xaf, 0xe1, 0xbb, 0xf6, 0x6c, + 0x82, 0x9d, 0x4f, 0xe9, 0x31, 0x71, 0xf9, 0xe2, 0xc7, 0xa6, 0xcb, 0xd0, 0xf7, 0x21, 0x6b, 0x8e, + 0x87, 0x8e, 0x6b, 0xb1, 0xe7, 0x13, 0x79, 0xf1, 0xa6, 0x4b, 0x98, 0x67, 0x98, 0x69, 0xbe, 0xeb, + 0x8f, 0xc4, 0xe1, 0x4b, 0xe8, 0x4d, 0x40, 0x33, 0x4a, 0x0c, 0x01, 0x4e, 0x2c, 0x3a, 0x6f, 0xc9, + 0x5b, 0xb8, 0xd2, 0x8c, 0x92, 0x70, 0x9a, 0x0f, 0x5b, 0xfa, 0x3f, 0x35, 0x40, 0xd1, 0x79, 0x65, + 0x8e, 0xfe, 0x16, 0xa4, 0xf8, 0xfb, 0xb4, 0xaa, 0xf0, 0xd8, 0xee, 0x06, 0x19, 0xea, 0xcc, 0xd8, + 0xa6, 0x07, 0x1b, 0xcb, 0xe1, 0xb5, 0x8f, 0x21, 0xef, 0xef, 0x54, 0xee, 0x4e, 0x34, 0x1a, 0xca, + 0xca, 0xd3, 0x55, 0x5d, 0xe3, 0x74, 0xad, 0x7d, 0x0f, 0xb2, 0xbc, 0xaa, 0xbb, 0x70, 0xee, 0xb0, + 0x16, 0x55, 0xa3, 0xb5, 0x68, 0xed, 0x3f, 0x0a, 0x24, 0xf8, 0xcb, 0x6b, 0x7f, 0xfc, 0x1e, 0xf1, + 0xef, 0x05, 0x81, 0x52, 0x44, 0x4f, 0x24, 0xed, 0xd7, 0x56, 0x50, 0x12, 0xa5, 0x00, 0xe7, 0x47, + 0x51, 0x42, 0xda, 0x00, 0xe2, 0x7f, 0x02, 0x7c, 0x2a, 0xa1, 0xc3, 0xaf, 0xad, 0x98, 0x2a, 0x70, + 0x17, 0x67, 0x69, 0xe0, 0x39, 0x82, 0x04, 0xb5, 0x7e, 0x21, 0xb2, 0xa4, 0x86, 0xf9, 0xb3, 0xfe, + 0x36, 0xdc, 0x7b, 0x8f, 0xb0, 0xae, 0x3b, 0xf7, 0xb7, 0x9b, 0xbf, 0x7d, 0x56, 0xd0, 0xa4, 0x63, + 0xb8, 0x1f, 0x7f, 0x49, 0x2a, 0xe0, 0xdb, 0x90, 0xa7, 0xee, 0xdc, 0x58, 0x78, 0xd3, 0xab, 0x4a, + 0x82, 0xf0, 0x44, 0x5f, 0xca, 0xd1, 0xb0, 0xa1, 0xff, 0x41, 0x85, 0xbb, 0xcf, 0xa6, 0x03, 0x93, + 0x6d, 0xfb, 0xf9, 0xb1, 0x61, 0xa9, 0xb6, 0x03, 0x59, 0x66, 0x4d, 0x08, 0x65, 0xe6, 0x64, 0x2a, + 0x77, 0x72, 0x68, 0xf0, 0x74, 0x45, 0xe6, 0xc4, 0x66, 0xf2, 0x02, 0xd2, 0xd7, 0xd5, 0xa1, 0x67, + 0xeb, 0x39, 0x23, 0x62, 0x63, 0xd1, 0xaf, 0x8f, 0xa0, 0xb2, 0xc8, 0x92, 0x24, 0xbe, 0xe1, 0x4f, + 0xb0, 0x58, 0xb5, 0xc9, 0x62, 0xcf, 0xeb, 0x91, 0x33, 0xa0, 0xd7, 0xa1, 0xec, 0x95, 0x6f, 0x13, + 0x62, 0x84, 0x78, 0xc4, 0x3f, 0x24, 0x4a, 0xc2, 0xde, 0xf3, 0xcd, 0x6f, 0x3c, 0x86, 0x52, 0xec, + 0x5f, 0x1a, 0xa8, 0x04, 0xb9, 0x67, 0x4f, 0xbb, 0xc7, 0x87, 0xed, 0xce, 0x0f, 0x3a, 0x87, 0x8f, + 0xcb, 0x5f, 0x41, 0x00, 0xa9, 0x6e, 0xe7, 0xe9, 0x7b, 0x4f, 0x0e, 0xcb, 0x0a, 0xca, 0x42, 0xf2, + 0xe8, 0xd9, 0x93, 0x5e, 0xa7, 0xac, 0x7a, 0x8f, 0xbd, 0x8f, 0x3e, 0x38, 0x6e, 0x97, 0xb5, 0x83, + 0x77, 0xa0, 0x64, 0x39, 0xcd, 0xb9, 0xc5, 0x08, 0xa5, 0xe2, 0x9f, 0x32, 0x3f, 0x79, 0x55, 0xb6, + 0x2c, 0x67, 0x5f, 0x3c, 0xed, 0x0f, 0x9d, 0xfd, 0x39, 0xdb, 0xe7, 0xbd, 0xfb, 0x42, 0xd6, 0x27, + 0x29, 0xde, 0x7a, 0xfb, 0xcb, 0x00, 0x00, 0x00, 0xff, 0xff, 0x61, 0xd9, 0xf8, 0xab, 0x97, 0x23, + 0x00, 0x00, } diff --git a/go/vt/proto/vtgateservice/vtgateservice.pb.go b/go/vt/proto/vtgateservice/vtgateservice.pb.go index e2d50ee7b25..a4e0e248e9a 100644 --- a/go/vt/proto/vtgateservice/vtgateservice.pb.go +++ b/go/vt/proto/vtgateservice/vtgateservice.pb.go @@ -1,21 +1,13 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: vtgateservice.proto -/* -Package vtgateservice is a generated protocol buffer package. - -It is generated from these files: - vtgateservice.proto - -It has these top-level messages: -*/ -package vtgateservice +package vtgateservice // import "vitess.io/vitess/go/vt/proto/vtgateservice" import proto "github.com/golang/protobuf/proto" import fmt "fmt" import math "math" -import vtgate "vitess.io/vitess/go/vt/proto/vtgate" import query "vitess.io/vitess/go/vt/proto/query" +import vtgate "vitess.io/vitess/go/vt/proto/vtgate" import ( context "golang.org/x/net/context" @@ -1077,43 +1069,45 @@ var _Vitess_serviceDesc = grpc.ServiceDesc{ Metadata: "vtgateservice.proto", } -func init() { proto.RegisterFile("vtgateservice.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 559 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x95, 0xdb, 0x8b, 0xd3, 0x40, - 0x14, 0xc6, 0xf5, 0xc1, 0x55, 0x8e, 0xed, 0x22, 0xb3, 0xbb, 0xdd, 0xdd, 0x7a, 0xdd, 0xaa, 0xbb, - 0x3e, 0x15, 0x51, 0x10, 0x04, 0x41, 0x5a, 0x2d, 0x22, 0xcb, 0xaa, 0xdb, 0x7a, 0x01, 0xc1, 0x87, - 0x69, 0x7a, 0xc8, 0x86, 0xa6, 0x49, 0x9a, 0x99, 0x06, 0xfb, 0x0f, 0xfa, 0x77, 0xc9, 0x26, 0x73, - 0xcf, 0xa4, 0x7d, 0x4b, 0xbe, 0xef, 0x3b, 0xbf, 0xcc, 0x9c, 0x1c, 0x66, 0x60, 0xaf, 0xe0, 0x21, - 0xe5, 0xc8, 0x30, 0x2f, 0xa2, 0x00, 0xfb, 0x59, 0x9e, 0xf2, 0x94, 0xb4, 0x2d, 0xb1, 0xdb, 0xaa, - 0x5e, 0x2b, 0xb3, 0x7b, 0x77, 0xb9, 0xc2, 0x7c, 0x5d, 0xbd, 0xbc, 0xfa, 0xb7, 0x0b, 0x3b, 0x3f, - 0x23, 0x8e, 0x8c, 0x91, 0x77, 0x70, 0x7b, 0xf4, 0x17, 0x83, 0x15, 0x47, 0xd2, 0xe9, 0x8b, 0x0a, - 0x21, 0x8c, 0x71, 0xb9, 0x42, 0xc6, 0xbb, 0x87, 0x35, 0x9d, 0x65, 0x69, 0xc2, 0xb0, 0x77, 0x83, - 0x9c, 0x43, 0x4b, 0x88, 0x43, 0xca, 0x83, 0x2b, 0x72, 0xdf, 0x89, 0x96, 0xaa, 0xe4, 0x3c, 0xf0, - 0x9b, 0x0a, 0xf6, 0x0d, 0xda, 0x13, 0x9e, 0x23, 0x5d, 0xc8, 0x05, 0xa9, 0x02, 0x4b, 0x96, 0xb8, - 0x87, 0x0d, 0xae, 0xe4, 0xbd, 0xbc, 0x49, 0xbe, 0x40, 0x5b, 0xc8, 0x93, 0x2b, 0x9a, 0xcf, 0x18, - 0x71, 0x97, 0x50, 0xc9, 0x35, 0xa2, 0xe3, 0xaa, 0x15, 0xfe, 0x01, 0x22, 0xac, 0x73, 0x5c, 0xb3, - 0x8c, 0x06, 0xf8, 0x79, 0xc6, 0xc8, 0x89, 0x53, 0x66, 0x78, 0x92, 0xdc, 0xdb, 0x14, 0x51, 0xf8, - 0x5f, 0x70, 0x4f, 0xfb, 0x63, 0x9a, 0x84, 0xc8, 0xc8, 0xe3, 0x7a, 0x65, 0xe5, 0x48, 0xf4, 0x93, - 0xe6, 0x80, 0x07, 0x3c, 0x4a, 0x78, 0xc4, 0xd7, 0xd7, 0xab, 0x76, 0xc1, 0xca, 0x69, 0x02, 0x1b, - 0x01, 0x4f, 0x43, 0xca, 0x9f, 0x29, 0xba, 0x7c, 0xe2, 0xfb, 0xd1, 0x76, 0xab, 0x7b, 0x9b, 0x22, - 0x0a, 0x1f, 0xc3, 0xa1, 0xe9, 0x9b, 0x4d, 0x3f, 0xf5, 0x01, 0x3c, 0x9d, 0x3f, 0xdb, 0x9a, 0x53, - 0x5f, 0x9b, 0xc2, 0x9e, 0x35, 0x4a, 0x62, 0x37, 0x3d, 0xef, 0x9c, 0xd9, 0xdb, 0x79, 0xba, 0x31, - 0x63, 0x4c, 0xe4, 0x12, 0x8e, 0xac, 0x88, 0xb9, 0xa5, 0x33, 0x2f, 0xc4, 0xb3, 0xa7, 0x17, 0xdb, - 0x83, 0xc6, 0x27, 0xe7, 0xd0, 0x71, 0x73, 0x62, 0xb6, 0x9e, 0x37, 0x71, 0xec, 0x09, 0x3b, 0xdd, - 0x16, 0x33, 0x3e, 0xf6, 0x06, 0x6e, 0x0d, 0x31, 0x8c, 0x12, 0xb2, 0x2f, 0x8b, 0xca, 0x57, 0x89, - 0x3a, 0x70, 0x54, 0xd5, 0xfb, 0xb7, 0xb0, 0xf3, 0x21, 0x5d, 0x2c, 0x22, 0x4e, 0x54, 0xa4, 0x7a, - 0x97, 0x95, 0x1d, 0x57, 0x56, 0xa5, 0xef, 0xe1, 0xce, 0x38, 0x8d, 0xe3, 0x29, 0x0d, 0xe6, 0x44, - 0x1d, 0x55, 0x52, 0x91, 0xe5, 0x47, 0x75, 0xc3, 0x1c, 0xe2, 0x31, 0xb2, 0x34, 0x2e, 0xf0, 0x7b, - 0x4e, 0x13, 0x46, 0x03, 0x1e, 0xa5, 0x89, 0x1e, 0xe2, 0xba, 0x57, 0x1b, 0x62, 0x5f, 0x44, 0xe1, - 0xbf, 0x42, 0xfb, 0x02, 0x19, 0xa3, 0x21, 0x56, 0xfd, 0xd3, 0x87, 0x90, 0x25, 0xeb, 0x53, 0xb2, - 0x3a, 0xa9, 0x1d, 0xd3, 0xe8, 0xf1, 0x47, 0x00, 0x61, 0x0e, 0x82, 0x39, 0x39, 0x76, 0x68, 0x03, - 0xbd, 0xe9, 0x63, 0x1b, 0x35, 0xb0, 0x76, 0xfd, 0x1b, 0x0e, 0xb4, 0x6e, 0x8e, 0xe1, 0xb3, 0x3a, - 0xd0, 0x33, 0x83, 0x1b, 0xd9, 0x23, 0x80, 0x49, 0x16, 0x47, 0xfc, 0xf2, 0x3a, 0xa2, 0x57, 0xa8, - 0x35, 0x49, 0xe9, 0xfa, 0x2c, 0x85, 0xb9, 0x84, 0xdd, 0x4f, 0xc8, 0x27, 0x79, 0x21, 0xbf, 0x4f, - 0xd4, 0x09, 0x6d, 0xeb, 0x12, 0xf7, 0xa8, 0xc9, 0x56, 0xc8, 0x0b, 0x68, 0xfd, 0xc8, 0x66, 0x94, - 0xcb, 0x7f, 0xa1, 0x2e, 0x2c, 0x53, 0xad, 0x5d, 0x58, 0xb6, 0xa9, 0x7f, 0xc5, 0xb0, 0x03, 0xfb, - 0x51, 0xda, 0x2f, 0xca, 0xab, 0xb4, 0xba, 0x5b, 0xfb, 0x61, 0x9e, 0x05, 0xd3, 0x9d, 0xf2, 0xf9, - 0xf5, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x58, 0xd7, 0x14, 0x4d, 0xa8, 0x07, 0x00, 0x00, +func init() { proto.RegisterFile("vtgateservice.proto", fileDescriptor_vtgateservice_7815d679f21c0eb2) } + +var fileDescriptor_vtgateservice_7815d679f21c0eb2 = []byte{ + // 579 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x95, 0xdb, 0x6f, 0xd3, 0x30, + 0x14, 0xc6, 0xe1, 0x81, 0x82, 0x0e, 0xed, 0x84, 0xbc, 0xad, 0xdb, 0xca, 0x75, 0x05, 0x36, 0xc4, + 0x43, 0x8b, 0x40, 0x42, 0x42, 0x42, 0x42, 0x2d, 0x54, 0x08, 0x4d, 0x03, 0xd6, 0x72, 0x91, 0x26, + 0xf1, 0xe0, 0xa6, 0x47, 0x59, 0xd4, 0x36, 0x49, 0x63, 0x37, 0xa2, 0xff, 0x20, 0x7f, 0x17, 0x5a, + 0x7c, 0x89, 0xed, 0xb8, 0xed, 0x5b, 0xf2, 0x7d, 0xdf, 0xf9, 0xc5, 0x3e, 0x39, 0xb2, 0x61, 0x37, + 0xe7, 0x21, 0xe5, 0xc8, 0x30, 0xcb, 0xa3, 0x00, 0x3b, 0x69, 0x96, 0xf0, 0x84, 0x34, 0x2c, 0xb1, + 0x55, 0x17, 0xaf, 0xc2, 0x6c, 0xdd, 0x5d, 0x2c, 0x31, 0x5b, 0x89, 0x97, 0xd7, 0xff, 0x76, 0xa0, + 0xf6, 0x2b, 0xe2, 0xc8, 0x18, 0x79, 0x0f, 0xb7, 0x07, 0x7f, 0x31, 0x58, 0x72, 0x24, 0xcd, 0x8e, + 0xac, 0x90, 0xc2, 0x10, 0x17, 0x4b, 0x64, 0xbc, 0x75, 0x50, 0xd1, 0x59, 0x9a, 0xc4, 0x0c, 0xdb, + 0x37, 0xc8, 0x19, 0xd4, 0xa5, 0xd8, 0xa7, 0x3c, 0xb8, 0x22, 0xf7, 0x9d, 0x68, 0xa1, 0x2a, 0xce, + 0x03, 0xbf, 0xa9, 0x61, 0xdf, 0xa1, 0x31, 0xe2, 0x19, 0xd2, 0xb9, 0x5a, 0x90, 0x2e, 0xb0, 0x64, + 0x85, 0x7b, 0xb8, 0xc6, 0x55, 0xbc, 0x57, 0x37, 0xc9, 0x57, 0x68, 0x48, 0x79, 0x74, 0x45, 0xb3, + 0x09, 0x23, 0xee, 0x12, 0x84, 0x5c, 0x21, 0x3a, 0xae, 0x5e, 0xe1, 0x1f, 0x20, 0xd2, 0x3a, 0xc3, + 0x15, 0x4b, 0x69, 0x80, 0x5f, 0x26, 0x8c, 0x1c, 0x3b, 0x65, 0x86, 0xa7, 0xc8, 0xed, 0x4d, 0x11, + 0x8d, 0xff, 0x0d, 0xf7, 0x4a, 0x7f, 0x48, 0xe3, 0x10, 0x19, 0x79, 0x5c, 0xad, 0x14, 0x8e, 0x42, + 0x3f, 0x59, 0x1f, 0xf0, 0x80, 0x07, 0x31, 0x8f, 0xf8, 0xea, 0x7a, 0xd5, 0x2e, 0x58, 0x3b, 0xeb, + 0xc0, 0x46, 0xc0, 0xd3, 0x90, 0xe2, 0x67, 0xca, 0x2e, 0x1f, 0xfb, 0x7e, 0xb4, 0xdd, 0xea, 0xf6, + 0xa6, 0x88, 0xc6, 0xcf, 0xe0, 0xc0, 0xf4, 0xcd, 0xa6, 0x9f, 0xf8, 0x00, 0x9e, 0xce, 0x9f, 0x6e, + 0xcd, 0xe9, 0xaf, 0x8d, 0x61, 0xd7, 0x1a, 0x25, 0xb9, 0x9b, 0xb6, 0x77, 0xce, 0xec, 0xed, 0x3c, + 0xdd, 0x98, 0x31, 0x26, 0x72, 0x01, 0x87, 0x56, 0xc4, 0xdc, 0xd2, 0xa9, 0x17, 0xe2, 0xd9, 0xd3, + 0x8b, 0xed, 0x41, 0xe3, 0x93, 0x53, 0x68, 0xba, 0x39, 0x39, 0x5b, 0xcf, 0xd7, 0x71, 0xec, 0x09, + 0x3b, 0xd9, 0x16, 0x33, 0x3e, 0xf6, 0x16, 0x6e, 0xf5, 0x31, 0x8c, 0x62, 0xb2, 0xa7, 0x8a, 0x8a, + 0x57, 0x85, 0xda, 0x77, 0x54, 0xdd, 0xfb, 0x77, 0x50, 0xfb, 0x98, 0xcc, 0xe7, 0x11, 0x27, 0x3a, + 0x22, 0xde, 0x55, 0x65, 0xd3, 0x95, 0x75, 0xe9, 0x07, 0xb8, 0x33, 0x4c, 0x66, 0xb3, 0x31, 0x0d, + 0xa6, 0x44, 0x1f, 0x55, 0x4a, 0x51, 0xe5, 0x87, 0x55, 0xc3, 0x1c, 0xe2, 0x21, 0xb2, 0x64, 0x96, + 0xe3, 0x8f, 0x8c, 0xc6, 0x8c, 0x06, 0x3c, 0x4a, 0xe2, 0x72, 0x88, 0xab, 0x5e, 0x65, 0x88, 0x7d, + 0x11, 0x8d, 0xff, 0x06, 0x8d, 0x73, 0x64, 0x8c, 0x86, 0x28, 0xfa, 0x57, 0x1e, 0x42, 0x96, 0x5c, + 0x9e, 0x92, 0xe2, 0xa4, 0x76, 0x4c, 0xa3, 0xc7, 0x9f, 0x00, 0xa4, 0xd9, 0x0b, 0xa6, 0xe4, 0xc8, + 0xa1, 0xf5, 0xca, 0x4d, 0x1f, 0xd9, 0xa8, 0x9e, 0xb5, 0xeb, 0x4b, 0xd8, 0x2f, 0x75, 0x73, 0x0c, + 0x9f, 0x55, 0x81, 0x9e, 0x19, 0xdc, 0xc8, 0x1e, 0x00, 0x8c, 0xd2, 0x59, 0xc4, 0x2f, 0xae, 0x23, + 0xe5, 0x0a, 0x4b, 0x4d, 0x51, 0x5a, 0x3e, 0x4b, 0x63, 0x2e, 0x60, 0xe7, 0x33, 0xf2, 0x51, 0x96, + 0xab, 0xef, 0x13, 0x7d, 0x42, 0xdb, 0xba, 0xc2, 0x3d, 0x5a, 0x67, 0x6b, 0xe4, 0x39, 0xd4, 0x7f, + 0xa6, 0x13, 0xca, 0xd5, 0xbf, 0xd0, 0x17, 0x96, 0xa9, 0x56, 0x2e, 0x2c, 0xdb, 0x2c, 0x7f, 0x45, + 0xbf, 0x0f, 0x7b, 0x51, 0xd2, 0xc9, 0x8b, 0xab, 0x54, 0xdc, 0xad, 0x9d, 0x30, 0x4b, 0x83, 0xcb, + 0x97, 0x52, 0x8a, 0x92, 0xae, 0x78, 0xea, 0x86, 0x49, 0x37, 0xe7, 0xdd, 0x22, 0xd2, 0xb5, 0xee, + 0xe9, 0x71, 0xad, 0x10, 0xdf, 0xfc, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x38, 0xcc, 0x87, 0x4b, 0xd4, + 0x07, 0x00, 0x00, } diff --git a/go/vt/proto/vtrpc/vtrpc.pb.go b/go/vt/proto/vtrpc/vtrpc.pb.go index e033ef5a545..d3f112e6087 100644 --- a/go/vt/proto/vtrpc/vtrpc.pb.go +++ b/go/vt/proto/vtrpc/vtrpc.pb.go @@ -1,17 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: vtrpc.proto -/* -Package vtrpc is a generated protocol buffer package. - -It is generated from these files: - vtrpc.proto - -It has these top-level messages: - CallerID - RPCError -*/ -package vtrpc +package vtrpc // import "vitess.io/vitess/go/vt/proto/vtrpc" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -177,7 +167,9 @@ var Code_value = map[string]int32{ func (x Code) String() string { return proto.EnumName(Code_name, int32(x)) } -func (Code) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (Code) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_vtrpc_63266364cf161411, []int{0} +} // LegacyErrorCode is the enum values for Errors. This type is deprecated. // Use Code instead. Background: In the initial design, we thought @@ -283,7 +275,9 @@ var LegacyErrorCode_value = map[string]int32{ func (x LegacyErrorCode) String() string { return proto.EnumName(LegacyErrorCode_name, int32(x)) } -func (LegacyErrorCode) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +func (LegacyErrorCode) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_vtrpc_63266364cf161411, []int{1} +} // CallerID is passed along RPCs to identify the originating client // for a request. It is not meant to be secure, but only @@ -307,13 +301,35 @@ type CallerID struct { // subcomponent describes a component inisde the immediate caller which // is responsible for generating is request. Suggested values are a // servlet name or an API endpoint name. - Subcomponent string `protobuf:"bytes,3,opt,name=subcomponent" json:"subcomponent,omitempty"` + Subcomponent string `protobuf:"bytes,3,opt,name=subcomponent" json:"subcomponent,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *CallerID) Reset() { *m = CallerID{} } +func (m *CallerID) String() string { return proto.CompactTextString(m) } +func (*CallerID) ProtoMessage() {} +func (*CallerID) Descriptor() ([]byte, []int) { + return fileDescriptor_vtrpc_63266364cf161411, []int{0} +} +func (m *CallerID) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_CallerID.Unmarshal(m, b) +} +func (m *CallerID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_CallerID.Marshal(b, m, deterministic) +} +func (dst *CallerID) XXX_Merge(src proto.Message) { + xxx_messageInfo_CallerID.Merge(dst, src) +} +func (m *CallerID) XXX_Size() int { + return xxx_messageInfo_CallerID.Size(m) +} +func (m *CallerID) XXX_DiscardUnknown() { + xxx_messageInfo_CallerID.DiscardUnknown(m) } -func (m *CallerID) Reset() { *m = CallerID{} } -func (m *CallerID) String() string { return proto.CompactTextString(m) } -func (*CallerID) ProtoMessage() {} -func (*CallerID) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +var xxx_messageInfo_CallerID proto.InternalMessageInfo func (m *CallerID) GetPrincipal() string { if m != nil { @@ -341,15 +357,37 @@ func (m *CallerID) GetSubcomponent() string { // We use this so the clients don't have to parse the error messages, // but instead can depend on the value of the code. type RPCError struct { - LegacyCode LegacyErrorCode `protobuf:"varint,1,opt,name=legacy_code,json=legacyCode,enum=vtrpc.LegacyErrorCode" json:"legacy_code,omitempty"` - Message string `protobuf:"bytes,2,opt,name=message" json:"message,omitempty"` - Code Code `protobuf:"varint,3,opt,name=code,enum=vtrpc.Code" json:"code,omitempty"` + LegacyCode LegacyErrorCode `protobuf:"varint,1,opt,name=legacy_code,json=legacyCode,enum=vtrpc.LegacyErrorCode" json:"legacy_code,omitempty"` + Message string `protobuf:"bytes,2,opt,name=message" json:"message,omitempty"` + Code Code `protobuf:"varint,3,opt,name=code,enum=vtrpc.Code" json:"code,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *RPCError) Reset() { *m = RPCError{} } +func (m *RPCError) String() string { return proto.CompactTextString(m) } +func (*RPCError) ProtoMessage() {} +func (*RPCError) Descriptor() ([]byte, []int) { + return fileDescriptor_vtrpc_63266364cf161411, []int{1} +} +func (m *RPCError) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_RPCError.Unmarshal(m, b) +} +func (m *RPCError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_RPCError.Marshal(b, m, deterministic) +} +func (dst *RPCError) XXX_Merge(src proto.Message) { + xxx_messageInfo_RPCError.Merge(dst, src) +} +func (m *RPCError) XXX_Size() int { + return xxx_messageInfo_RPCError.Size(m) +} +func (m *RPCError) XXX_DiscardUnknown() { + xxx_messageInfo_RPCError.DiscardUnknown(m) } -func (m *RPCError) Reset() { *m = RPCError{} } -func (m *RPCError) String() string { return proto.CompactTextString(m) } -func (*RPCError) ProtoMessage() {} -func (*RPCError) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +var xxx_messageInfo_RPCError proto.InternalMessageInfo func (m *RPCError) GetLegacyCode() LegacyErrorCode { if m != nil { @@ -379,45 +417,46 @@ func init() { proto.RegisterEnum("vtrpc.LegacyErrorCode", LegacyErrorCode_name, LegacyErrorCode_value) } -func init() { proto.RegisterFile("vtrpc.proto", fileDescriptor0) } +func init() { proto.RegisterFile("vtrpc.proto", fileDescriptor_vtrpc_63266364cf161411) } -var fileDescriptor0 = []byte{ - // 584 bytes of a gzipped FileDescriptorProto +var fileDescriptor_vtrpc_63266364cf161411 = []byte{ + // 605 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x93, 0x4d, 0x4f, 0x1b, 0x3b, - 0x14, 0x86, 0xc9, 0x07, 0xf9, 0x38, 0x13, 0x88, 0x39, 0x7c, 0x85, 0x7b, 0xb9, 0xba, 0x57, 0xac, - 0xae, 0x58, 0xb0, 0x68, 0x17, 0x5d, 0x3b, 0xe3, 0x43, 0xb0, 0x18, 0x3c, 0xa9, 0xc7, 0xa6, 0x64, - 0x65, 0x85, 0x30, 0x42, 0xa9, 0x02, 0x13, 0x4d, 0x52, 0xa4, 0x6e, 0xfa, 0xb3, 0xfa, 0x9b, 0xfa, - 0x33, 0x2a, 0x4f, 0x32, 0x45, 0x81, 0x55, 0xe2, 0xf7, 0x39, 0x3e, 0x7e, 0xcf, 0x7b, 0x34, 0x10, - 0xbc, 0x2c, 0xf3, 0xf9, 0xe4, 0x62, 0x9e, 0x67, 0xcb, 0x0c, 0xb7, 0x8b, 0xc3, 0xd9, 0x57, 0x68, - 0x85, 0xe3, 0xd9, 0x2c, 0xcd, 0xa5, 0xc0, 0x53, 0x68, 0xcf, 0xf3, 0xe9, 0xf3, 0x64, 0x3a, 0x1f, - 0xcf, 0x7a, 0x95, 0xff, 0x2a, 0xff, 0xb7, 0xf5, 0xab, 0xe0, 0xe9, 0x24, 0x7b, 0x9a, 0x67, 0xcf, - 0xe9, 0xf3, 0xb2, 0x57, 0x5d, 0xd1, 0x3f, 0x02, 0x9e, 0x41, 0x67, 0xf1, 0xed, 0xfe, 0xb5, 0xa0, - 0x56, 0x14, 0x6c, 0x68, 0x67, 0x3f, 0xa0, 0xa5, 0x87, 0x21, 0xe5, 0x79, 0x96, 0xe3, 0x27, 0x08, - 0x66, 0xe9, 0xe3, 0x78, 0xf2, 0xdd, 0x4d, 0xb2, 0x87, 0xb4, 0x78, 0x6d, 0xf7, 0xc3, 0xd1, 0xc5, - 0xca, 0x61, 0x54, 0x90, 0xa2, 0x30, 0xcc, 0x1e, 0x52, 0x0d, 0xab, 0x52, 0xff, 0x1f, 0x7b, 0xd0, - 0x7c, 0x4a, 0x17, 0x8b, 0xf1, 0x63, 0xba, 0x36, 0x51, 0x1e, 0xf1, 0x5f, 0xa8, 0x17, 0xbd, 0x6a, - 0x45, 0xaf, 0x60, 0xdd, 0xab, 0x68, 0x50, 0x80, 0xf3, 0x9f, 0x55, 0xa8, 0x17, 0x3d, 0x1a, 0x50, - 0x8d, 0xaf, 0xd9, 0x16, 0x76, 0xa0, 0x15, 0x72, 0x15, 0x52, 0x44, 0x82, 0x55, 0x30, 0x80, 0xa6, - 0x55, 0xd7, 0x2a, 0xfe, 0xa2, 0x58, 0x15, 0x0f, 0x80, 0x49, 0x75, 0xcb, 0x23, 0x29, 0x1c, 0xd7, - 0x03, 0x7b, 0x43, 0xca, 0xb0, 0x1a, 0x1e, 0xc2, 0x9e, 0x20, 0x2e, 0x22, 0xa9, 0xc8, 0xd1, 0x5d, - 0x48, 0x24, 0x48, 0xb0, 0x3a, 0xee, 0x40, 0x5b, 0xc5, 0xc6, 0x5d, 0xc6, 0x56, 0x09, 0xb6, 0x8d, - 0x08, 0xbb, 0x3c, 0xd2, 0xc4, 0xc5, 0xc8, 0xd1, 0x9d, 0x4c, 0x4c, 0xc2, 0x1a, 0xfe, 0xe6, 0x90, - 0xf4, 0x8d, 0x4c, 0x12, 0x19, 0x2b, 0x27, 0x48, 0x49, 0x12, 0xac, 0x89, 0xfb, 0xd0, 0xb5, 0x8a, - 0x5b, 0x73, 0x45, 0xca, 0xc8, 0x90, 0x1b, 0x12, 0x8c, 0xe1, 0x11, 0xa0, 0xa6, 0x24, 0xb6, 0x3a, - 0xf4, 0xaf, 0x5c, 0x71, 0x9b, 0x78, 0xbd, 0x85, 0xc7, 0xb0, 0x7f, 0xc9, 0x65, 0x44, 0xc2, 0x0d, - 0x35, 0x85, 0xb1, 0x12, 0xd2, 0xc8, 0x58, 0xb1, 0xb6, 0x77, 0xce, 0xfb, 0xb1, 0xf6, 0x55, 0x80, - 0x0c, 0x3a, 0xb1, 0x35, 0x2e, 0xbe, 0x74, 0x9a, 0xab, 0x01, 0xb1, 0x00, 0xf7, 0x60, 0xc7, 0x2a, - 0x79, 0x33, 0x8c, 0xc8, 0x8f, 0x41, 0x82, 0x75, 0xfc, 0xe4, 0x52, 0x19, 0xd2, 0x8a, 0x47, 0x6c, - 0x07, 0xbb, 0x10, 0x58, 0xc5, 0x6f, 0xb9, 0x8c, 0x78, 0x3f, 0x22, 0xb6, 0xeb, 0x07, 0x12, 0xdc, - 0x70, 0x17, 0xc5, 0x49, 0xc2, 0xba, 0xe7, 0xbf, 0xaa, 0xd0, 0x7d, 0xb3, 0x13, 0x3f, 0x64, 0x62, - 0xc3, 0x90, 0x92, 0xc4, 0x45, 0x34, 0xe0, 0xe1, 0x88, 0x6d, 0xf9, 0xd0, 0x56, 0x79, 0x7a, 0x8f, - 0x6b, 0xb5, 0x82, 0x3d, 0x38, 0x58, 0xe7, 0xea, 0x48, 0xeb, 0x58, 0x97, 0xa4, 0x08, 0xb9, 0xcf, - 0x85, 0x93, 0x6a, 0x68, 0x4d, 0xa9, 0xd6, 0xf0, 0x14, 0x7a, 0xef, 0x42, 0x2e, 0x69, 0x1d, 0xff, - 0x82, 0x23, 0xef, 0x7c, 0xa0, 0xa5, 0x19, 0x6d, 0xf6, 0xdb, 0xf6, 0x37, 0xdf, 0x85, 0x5c, 0xd2, - 0x06, 0xfe, 0x03, 0x27, 0xef, 0x63, 0x2d, 0x71, 0x13, 0xff, 0x86, 0xe3, 0xcf, 0x96, 0xf4, 0xc8, - 0xf9, 0x55, 0x26, 0xa4, 0x6f, 0x5f, 0x61, 0xcb, 0x3b, 0xf5, 0xb2, 0x54, 0xce, 0xdc, 0x95, 0x6a, - 0x1b, 0x4f, 0xe0, 0xb0, 0x4c, 0x71, 0xd3, 0x0a, 0x78, 0x9b, 0x46, 0x73, 0x95, 0x48, 0x52, 0x66, - 0x93, 0x05, 0x9e, 0xbd, 0x59, 0x7a, 0xc9, 0x3a, 0xfd, 0x3d, 0xe8, 0x4e, 0xb3, 0x8b, 0x97, 0xe9, - 0x32, 0x5d, 0x2c, 0x56, 0x5f, 0xea, 0x7d, 0xa3, 0xf8, 0xf9, 0xf8, 0x3b, 0x00, 0x00, 0xff, 0xff, - 0xdd, 0xc2, 0x4b, 0x19, 0xbf, 0x03, 0x00, 0x00, + 0x14, 0x86, 0xc9, 0x07, 0xf9, 0x38, 0x13, 0x88, 0x31, 0x5f, 0xe1, 0x5e, 0xae, 0xee, 0x55, 0x56, + 0x57, 0x2c, 0x88, 0xd4, 0xaa, 0xea, 0xda, 0x19, 0x1f, 0x82, 0xc5, 0xe0, 0x49, 0x3d, 0x36, 0x25, + 0xdd, 0x58, 0x21, 0x8c, 0x50, 0xaa, 0xc0, 0x44, 0x93, 0x14, 0xa9, 0x9b, 0xfe, 0xac, 0xfe, 0xa6, + 0xfe, 0x8c, 0xca, 0x4e, 0xa6, 0x28, 0xb0, 0x9b, 0xf3, 0x3e, 0xc7, 0xc7, 0xef, 0x79, 0x9d, 0x40, + 0xf0, 0xbc, 0xcc, 0xe7, 0x93, 0xf3, 0x79, 0x9e, 0x2d, 0x33, 0xba, 0xed, 0x8b, 0xee, 0x57, 0x68, + 0x84, 0xe3, 0xd9, 0x2c, 0xcd, 0x05, 0xa7, 0xa7, 0xd0, 0x9c, 0xe7, 0xd3, 0xa7, 0xc9, 0x74, 0x3e, + 0x9e, 0x75, 0x4a, 0xff, 0x95, 0xfe, 0x6f, 0xaa, 0x17, 0xc1, 0xd1, 0x49, 0xf6, 0x38, 0xcf, 0x9e, + 0xd2, 0xa7, 0x65, 0xa7, 0xbc, 0xa2, 0x7f, 0x04, 0xda, 0x85, 0xd6, 0xe2, 0xdb, 0xdd, 0x4b, 0x43, + 0xc5, 0x37, 0x6c, 0x68, 0xdd, 0x1f, 0xd0, 0x50, 0xc3, 0x10, 0xf3, 0x3c, 0xcb, 0xe9, 0x47, 0x08, + 0x66, 0xe9, 0xc3, 0x78, 0xf2, 0xdd, 0x4e, 0xb2, 0xfb, 0xd4, 0xdf, 0xb6, 0xfb, 0xee, 0xe8, 0x7c, + 0xe5, 0x30, 0xf2, 0xc4, 0x37, 0x86, 0xd9, 0x7d, 0xaa, 0x60, 0xd5, 0xea, 0xbe, 0x69, 0x07, 0xea, + 0x8f, 0xe9, 0x62, 0x31, 0x7e, 0x48, 0xd7, 0x26, 0x8a, 0x92, 0xfe, 0x0b, 0x55, 0x3f, 0xab, 0xe2, + 0x67, 0x05, 0xeb, 0x59, 0x7e, 0x80, 0x07, 0x67, 0x3f, 0xcb, 0x50, 0xf5, 0x33, 0x6a, 0x50, 0x8e, + 0xaf, 0xc8, 0x16, 0x6d, 0x41, 0x23, 0x64, 0x32, 0xc4, 0x08, 0x39, 0x29, 0xd1, 0x00, 0xea, 0x46, + 0x5e, 0xc9, 0xf8, 0xb3, 0x24, 0x65, 0x7a, 0x00, 0x44, 0xc8, 0x1b, 0x16, 0x09, 0x6e, 0x99, 0x1a, + 0x98, 0x6b, 0x94, 0x9a, 0x54, 0xe8, 0x21, 0xec, 0x71, 0x64, 0x3c, 0x12, 0x12, 0x2d, 0xde, 0x86, + 0x88, 0x1c, 0x39, 0xa9, 0xd2, 0x1d, 0x68, 0xca, 0x58, 0xdb, 0x8b, 0xd8, 0x48, 0x4e, 0xb6, 0x29, + 0x85, 0x5d, 0x16, 0x29, 0x64, 0x7c, 0x64, 0xf1, 0x56, 0x24, 0x3a, 0x21, 0x35, 0x77, 0x72, 0x88, + 0xea, 0x5a, 0x24, 0x89, 0x88, 0xa5, 0xe5, 0x28, 0x05, 0x72, 0x52, 0xa7, 0xfb, 0xd0, 0x36, 0x92, + 0x19, 0x7d, 0x89, 0x52, 0x8b, 0x90, 0x69, 0xe4, 0x84, 0xd0, 0x23, 0xa0, 0x0a, 0x93, 0xd8, 0xa8, + 0xd0, 0xdd, 0x72, 0xc9, 0x4c, 0xe2, 0xf4, 0x06, 0x3d, 0x86, 0xfd, 0x0b, 0x26, 0x22, 0xe4, 0x76, + 0xa8, 0x30, 0x8c, 0x25, 0x17, 0x5a, 0xc4, 0x92, 0x34, 0x9d, 0x73, 0xd6, 0x8f, 0x95, 0xeb, 0x02, + 0x4a, 0xa0, 0x15, 0x1b, 0x6d, 0xe3, 0x0b, 0xab, 0x98, 0x1c, 0x20, 0x09, 0xe8, 0x1e, 0xec, 0x18, + 0x29, 0xae, 0x87, 0x11, 0xba, 0x35, 0x90, 0x93, 0x96, 0xdb, 0x5c, 0x48, 0x8d, 0x4a, 0xb2, 0x88, + 0xec, 0xd0, 0x36, 0x04, 0x46, 0xb2, 0x1b, 0x26, 0x22, 0xd6, 0x8f, 0x90, 0xec, 0xba, 0x85, 0x38, + 0xd3, 0xcc, 0x46, 0x71, 0x92, 0x90, 0xf6, 0xd9, 0xaf, 0x32, 0xb4, 0x5f, 0xbd, 0x89, 0x5b, 0x32, + 0x31, 0x61, 0x88, 0x49, 0x62, 0x23, 0x1c, 0xb0, 0x70, 0x44, 0xb6, 0x5c, 0x68, 0xab, 0x3c, 0x9d, + 0xc7, 0xb5, 0x5a, 0xa2, 0x1d, 0x38, 0x58, 0xe7, 0x6a, 0x51, 0xa9, 0x58, 0x15, 0xc4, 0x87, 0xdc, + 0x67, 0xdc, 0x0a, 0x39, 0x34, 0xba, 0x50, 0x2b, 0xf4, 0x14, 0x3a, 0x6f, 0x42, 0x2e, 0x68, 0x95, + 0xfe, 0x05, 0x47, 0xce, 0xf9, 0x40, 0x09, 0x3d, 0xda, 0x9c, 0xb7, 0xed, 0x4e, 0xbe, 0x09, 0xb9, + 0xa0, 0x35, 0xfa, 0x0f, 0x9c, 0xbc, 0x8d, 0xb5, 0xc0, 0x75, 0xfa, 0x37, 0x1c, 0x7f, 0x32, 0xa8, + 0x46, 0xd6, 0x3d, 0x65, 0x82, 0xea, 0xe6, 0x05, 0x36, 0x9c, 0x53, 0x27, 0x0b, 0x69, 0xf5, 0x6d, + 0xa1, 0x36, 0xe9, 0x09, 0x1c, 0x16, 0x29, 0x6e, 0x5a, 0x01, 0x67, 0x53, 0x2b, 0x26, 0x13, 0x81, + 0x52, 0x6f, 0xb2, 0xc0, 0xb1, 0x57, 0x8f, 0x5e, 0xb0, 0x56, 0xff, 0x03, 0xb4, 0xa7, 0xd9, 0xf9, + 0xf3, 0x74, 0x99, 0x2e, 0x16, 0xab, 0x7f, 0xea, 0x97, 0xee, 0xba, 0x9a, 0x66, 0xbd, 0xd5, 0x57, + 0xef, 0x21, 0xeb, 0x3d, 0x2f, 0x7b, 0x9e, 0xf6, 0xfc, 0xaf, 0xfc, 0xae, 0xe6, 0x8b, 0xf7, 0xbf, + 0x03, 0x00, 0x00, 0xff, 0xff, 0x27, 0xae, 0x20, 0x34, 0xe3, 0x03, 0x00, 0x00, } diff --git a/go/vt/proto/vttest/vttest.pb.go b/go/vt/proto/vttest/vttest.pb.go index 5e81310665f..f1041a15600 100644 --- a/go/vt/proto/vttest/vttest.pb.go +++ b/go/vt/proto/vttest/vttest.pb.go @@ -1,18 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: vttest.proto -/* -Package vttest is a generated protocol buffer package. - -It is generated from these files: - vttest.proto - -It has these top-level messages: - Shard - Keyspace - VTTestTopology -*/ -package vttest +package vttest // import "vitess.io/vitess/go/vt/proto/vttest" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -38,13 +27,35 @@ type Shard struct { // db_name_override is the mysql db name for this shard. Has to be // globally unique. If not specified, we will by default use // 'vt__'. - DbNameOverride string `protobuf:"bytes,2,opt,name=db_name_override,json=dbNameOverride" json:"db_name_override,omitempty"` + DbNameOverride string `protobuf:"bytes,2,opt,name=db_name_override,json=dbNameOverride" json:"db_name_override,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Shard) Reset() { *m = Shard{} } +func (m *Shard) String() string { return proto.CompactTextString(m) } +func (*Shard) ProtoMessage() {} +func (*Shard) Descriptor() ([]byte, []int) { + return fileDescriptor_vttest_beaece7261b82562, []int{0} +} +func (m *Shard) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Shard.Unmarshal(m, b) +} +func (m *Shard) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Shard.Marshal(b, m, deterministic) +} +func (dst *Shard) XXX_Merge(src proto.Message) { + xxx_messageInfo_Shard.Merge(dst, src) +} +func (m *Shard) XXX_Size() int { + return xxx_messageInfo_Shard.Size(m) +} +func (m *Shard) XXX_DiscardUnknown() { + xxx_messageInfo_Shard.DiscardUnknown(m) } -func (m *Shard) Reset() { *m = Shard{} } -func (m *Shard) String() string { return proto.CompactTextString(m) } -func (*Shard) ProtoMessage() {} -func (*Shard) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +var xxx_messageInfo_Shard proto.InternalMessageInfo func (m *Shard) GetName() string { if m != nil { @@ -75,13 +86,35 @@ type Keyspace struct { // number of replica tablets to instantiate. This includes the master tablet. ReplicaCount int32 `protobuf:"varint,6,opt,name=replica_count,json=replicaCount" json:"replica_count,omitempty"` // number of rdonly tablets to instantiate. - RdonlyCount int32 `protobuf:"varint,7,opt,name=rdonly_count,json=rdonlyCount" json:"rdonly_count,omitempty"` + RdonlyCount int32 `protobuf:"varint,7,opt,name=rdonly_count,json=rdonlyCount" json:"rdonly_count,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *Keyspace) Reset() { *m = Keyspace{} } -func (m *Keyspace) String() string { return proto.CompactTextString(m) } -func (*Keyspace) ProtoMessage() {} -func (*Keyspace) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +func (m *Keyspace) Reset() { *m = Keyspace{} } +func (m *Keyspace) String() string { return proto.CompactTextString(m) } +func (*Keyspace) ProtoMessage() {} +func (*Keyspace) Descriptor() ([]byte, []int) { + return fileDescriptor_vttest_beaece7261b82562, []int{1} +} +func (m *Keyspace) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Keyspace.Unmarshal(m, b) +} +func (m *Keyspace) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Keyspace.Marshal(b, m, deterministic) +} +func (dst *Keyspace) XXX_Merge(src proto.Message) { + xxx_messageInfo_Keyspace.Merge(dst, src) +} +func (m *Keyspace) XXX_Size() int { + return xxx_messageInfo_Keyspace.Size(m) +} +func (m *Keyspace) XXX_DiscardUnknown() { + xxx_messageInfo_Keyspace.DiscardUnknown(m) +} + +var xxx_messageInfo_Keyspace proto.InternalMessageInfo func (m *Keyspace) GetName() string { if m != nil { @@ -137,13 +170,35 @@ type VTTestTopology struct { // all keyspaces in the topology. Keyspaces []*Keyspace `protobuf:"bytes,1,rep,name=keyspaces" json:"keyspaces,omitempty"` // list of cells the keyspaces reside in. Vtgate is started in only the first cell. - Cells []string `protobuf:"bytes,2,rep,name=cells" json:"cells,omitempty"` + Cells []string `protobuf:"bytes,2,rep,name=cells" json:"cells,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *VTTestTopology) Reset() { *m = VTTestTopology{} } +func (m *VTTestTopology) String() string { return proto.CompactTextString(m) } +func (*VTTestTopology) ProtoMessage() {} +func (*VTTestTopology) Descriptor() ([]byte, []int) { + return fileDescriptor_vttest_beaece7261b82562, []int{2} +} +func (m *VTTestTopology) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_VTTestTopology.Unmarshal(m, b) +} +func (m *VTTestTopology) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_VTTestTopology.Marshal(b, m, deterministic) +} +func (dst *VTTestTopology) XXX_Merge(src proto.Message) { + xxx_messageInfo_VTTestTopology.Merge(dst, src) +} +func (m *VTTestTopology) XXX_Size() int { + return xxx_messageInfo_VTTestTopology.Size(m) +} +func (m *VTTestTopology) XXX_DiscardUnknown() { + xxx_messageInfo_VTTestTopology.DiscardUnknown(m) } -func (m *VTTestTopology) Reset() { *m = VTTestTopology{} } -func (m *VTTestTopology) String() string { return proto.CompactTextString(m) } -func (*VTTestTopology) ProtoMessage() {} -func (*VTTestTopology) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } +var xxx_messageInfo_VTTestTopology proto.InternalMessageInfo func (m *VTTestTopology) GetKeyspaces() []*Keyspace { if m != nil { @@ -165,27 +220,29 @@ func init() { proto.RegisterType((*VTTestTopology)(nil), "vttest.VTTestTopology") } -func init() { proto.RegisterFile("vttest.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 297 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x51, 0xcd, 0x6a, 0xf3, 0x30, - 0x10, 0xc4, 0x49, 0xec, 0xef, 0xcb, 0xe6, 0x87, 0x20, 0x72, 0xd0, 0xad, 0x69, 0x4a, 0xc1, 0xa7, - 0x50, 0xda, 0x47, 0x08, 0xed, 0xa5, 0xd0, 0x82, 0x6b, 0x72, 0x35, 0x8e, 0xb5, 0x4d, 0x4d, 0x65, - 0x4b, 0x48, 0x8a, 0xc1, 0xaf, 0xd1, 0x27, 0x2e, 0x5e, 0xcb, 0xf4, 0xe2, 0xdb, 0x68, 0x66, 0x76, - 0x67, 0x19, 0xc1, 0xb2, 0x71, 0x0e, 0xad, 0x3b, 0x68, 0xa3, 0x9c, 0x62, 0x51, 0xff, 0xda, 0x3f, - 0x43, 0xf8, 0xf1, 0x95, 0x1b, 0xc1, 0x18, 0xcc, 0xea, 0xbc, 0x42, 0x1e, 0xec, 0x82, 0x78, 0x9e, - 0x10, 0x66, 0x31, 0x6c, 0xc4, 0x39, 0xeb, 0x60, 0xa6, 0x1a, 0x34, 0xa6, 0x14, 0xc8, 0x27, 0xa4, - 0xaf, 0xc5, 0xf9, 0x2d, 0xaf, 0xf0, 0xdd, 0xb3, 0xfb, 0x9f, 0x09, 0xfc, 0x7f, 0xc5, 0xd6, 0xea, - 0xbc, 0xc0, 0xd1, 0x55, 0xf7, 0x10, 0xd9, 0x2e, 0xc7, 0xf2, 0xc9, 0x6e, 0x1a, 0x2f, 0x1e, 0x57, - 0x07, 0x7f, 0x0e, 0xa5, 0x27, 0x5e, 0x64, 0x0f, 0xb0, 0x25, 0x54, 0xd6, 0x97, 0xac, 0x50, 0xf2, - 0x5a, 0xd5, 0x14, 0xcf, 0xa7, 0xb4, 0x8a, 0x0d, 0xda, 0x91, 0xa4, 0xee, 0x82, 0xb1, 0x09, 0xd7, - 0x6a, 0xe4, 0xb3, 0xb1, 0x89, 0xb4, 0xd5, 0xc8, 0x6e, 0x60, 0x61, 0xd1, 0x34, 0x28, 0xb2, 0x4f, - 0xa3, 0x2a, 0x1e, 0x92, 0x11, 0x7a, 0xea, 0xc5, 0xa8, 0x8a, 0xdd, 0xc1, 0xca, 0xa0, 0x96, 0x65, - 0x91, 0x67, 0x85, 0xba, 0xd6, 0x8e, 0x47, 0xbb, 0x20, 0x0e, 0x93, 0xa5, 0x27, 0x8f, 0x1d, 0xc7, - 0x6e, 0x61, 0x69, 0x84, 0xaa, 0x65, 0xeb, 0x3d, 0xff, 0xc8, 0xb3, 0xe8, 0x39, 0xb2, 0xec, 0x4f, - 0xb0, 0x3e, 0xa5, 0x29, 0x5a, 0x97, 0x2a, 0xad, 0xa4, 0xba, 0xb4, 0xec, 0x00, 0xf3, 0x6f, 0xdf, - 0x92, 0xe5, 0x01, 0x15, 0xb1, 0x19, 0x8a, 0x18, 0xea, 0x4b, 0xfe, 0x2c, 0x6c, 0x0b, 0x61, 0x81, - 0x52, 0xf6, 0xa5, 0xcd, 0x93, 0xfe, 0x71, 0x8e, 0xe8, 0x0b, 0x9f, 0x7e, 0x03, 0x00, 0x00, 0xff, - 0xff, 0x05, 0x4a, 0xea, 0xbc, 0xd2, 0x01, 0x00, 0x00, +func init() { proto.RegisterFile("vttest.proto", fileDescriptor_vttest_beaece7261b82562) } + +var fileDescriptor_vttest_beaece7261b82562 = []byte{ + // 322 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x51, 0xcb, 0x6a, 0xe3, 0x40, + 0x10, 0x44, 0xb6, 0xa5, 0x5d, 0xb7, 0x1f, 0x98, 0xc1, 0x87, 0xb9, 0xad, 0xd7, 0xc6, 0xa0, 0x93, + 0xb4, 0x6c, 0xfe, 0x20, 0x26, 0xb9, 0x04, 0x12, 0x50, 0x84, 0x0f, 0xb9, 0x08, 0x59, 0xea, 0x38, + 0x22, 0x92, 0x5a, 0xcc, 0x8c, 0x05, 0xfa, 0x8d, 0x7c, 0x71, 0x50, 0x8f, 0x4c, 0x2e, 0xbe, 0x55, + 0x57, 0xd5, 0x74, 0x35, 0x35, 0x30, 0x6f, 0x8d, 0x41, 0x6d, 0x82, 0x46, 0x91, 0x21, 0xe1, 0xd9, + 0x69, 0xfb, 0x00, 0xee, 0xeb, 0x47, 0xaa, 0x72, 0x21, 0x60, 0x52, 0xa7, 0x15, 0x4a, 0x67, 0xe3, + 0xf8, 0xd3, 0x88, 0xb1, 0xf0, 0x61, 0x95, 0x9f, 0x92, 0x1e, 0x26, 0xd4, 0xa2, 0x52, 0x45, 0x8e, + 0x72, 0xc4, 0xfa, 0x32, 0x3f, 0x3d, 0xa7, 0x15, 0xbe, 0x0c, 0xec, 0xf6, 0x6b, 0x04, 0xbf, 0x9f, + 0xb0, 0xd3, 0x4d, 0x9a, 0xe1, 0xcd, 0x55, 0x7b, 0xf0, 0x74, 0x9f, 0xa3, 0xe5, 0x68, 0x33, 0xf6, + 0x67, 0xff, 0x17, 0xc1, 0x70, 0x0e, 0xa7, 0x47, 0x83, 0x28, 0xfe, 0xc1, 0x9a, 0x51, 0x51, 0x9f, + 0x93, 0x8c, 0xca, 0x4b, 0x55, 0x73, 0xbc, 0x1c, 0xf3, 0x2a, 0x71, 0xd5, 0x0e, 0x2c, 0xf5, 0x17, + 0xdc, 0x7a, 0x61, 0xba, 0x06, 0xe5, 0xe4, 0xd6, 0x8b, 0xb8, 0x6b, 0x50, 0xfc, 0x81, 0x99, 0x46, + 0xd5, 0x62, 0x9e, 0xbc, 0x2b, 0xaa, 0xa4, 0xcb, 0x46, 0xb0, 0xd4, 0xa3, 0xa2, 0x4a, 0xec, 0x60, + 0xa1, 0xb0, 0x29, 0x8b, 0x2c, 0x4d, 0x32, 0xba, 0xd4, 0x46, 0x7a, 0x1b, 0xc7, 0x77, 0xa3, 0xf9, + 0x40, 0x1e, 0x7a, 0x4e, 0xfc, 0x85, 0xb9, 0xca, 0xa9, 0x2e, 0xbb, 0xc1, 0xf3, 0x8b, 0x3d, 0x33, + 0xcb, 0xb1, 0x65, 0x7b, 0x84, 0xe5, 0x31, 0x8e, 0x51, 0x9b, 0x98, 0x1a, 0x2a, 0xe9, 0xdc, 0x89, + 0x00, 0xa6, 0x9f, 0x43, 0x4b, 0x5a, 0x3a, 0x5c, 0xc4, 0xea, 0x5a, 0xc4, 0xb5, 0xbe, 0xe8, 0xc7, + 0x22, 0xd6, 0xe0, 0x66, 0x58, 0x96, 0xb6, 0xb4, 0x69, 0x64, 0x87, 0xfb, 0xfd, 0xdb, 0xae, 0x2d, + 0x0c, 0x6a, 0x1d, 0x14, 0x14, 0x5a, 0x14, 0x9e, 0x29, 0x6c, 0x4d, 0xc8, 0x7f, 0x1b, 0xda, 0x85, + 0x27, 0x8f, 0xa7, 0xbb, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x57, 0x0f, 0xe6, 0xb4, 0xf9, 0x01, + 0x00, 0x00, } diff --git a/go/vt/proto/vtworkerdata/vtworkerdata.pb.go b/go/vt/proto/vtworkerdata/vtworkerdata.pb.go index e5b69d584bc..87ef5c1d866 100644 --- a/go/vt/proto/vtworkerdata/vtworkerdata.pb.go +++ b/go/vt/proto/vtworkerdata/vtworkerdata.pb.go @@ -1,17 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: vtworkerdata.proto -/* -Package vtworkerdata is a generated protocol buffer package. - -It is generated from these files: - vtworkerdata.proto - -It has these top-level messages: - ExecuteVtworkerCommandRequest - ExecuteVtworkerCommandResponse -*/ -package vtworkerdata +package vtworkerdata // import "vitess.io/vitess/go/vt/proto/vtworkerdata" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -31,13 +21,35 @@ const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package // ExecuteVtworkerCommandRequest is the payload for ExecuteVtworkerCommand. type ExecuteVtworkerCommandRequest struct { - Args []string `protobuf:"bytes,1,rep,name=args" json:"args,omitempty"` + Args []string `protobuf:"bytes,1,rep,name=args" json:"args,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteVtworkerCommandRequest) Reset() { *m = ExecuteVtworkerCommandRequest{} } +func (m *ExecuteVtworkerCommandRequest) String() string { return proto.CompactTextString(m) } +func (*ExecuteVtworkerCommandRequest) ProtoMessage() {} +func (*ExecuteVtworkerCommandRequest) Descriptor() ([]byte, []int) { + return fileDescriptor_vtworkerdata_9c94bc714251542b, []int{0} +} +func (m *ExecuteVtworkerCommandRequest) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteVtworkerCommandRequest.Unmarshal(m, b) +} +func (m *ExecuteVtworkerCommandRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteVtworkerCommandRequest.Marshal(b, m, deterministic) +} +func (dst *ExecuteVtworkerCommandRequest) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteVtworkerCommandRequest.Merge(dst, src) +} +func (m *ExecuteVtworkerCommandRequest) XXX_Size() int { + return xxx_messageInfo_ExecuteVtworkerCommandRequest.Size(m) +} +func (m *ExecuteVtworkerCommandRequest) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteVtworkerCommandRequest.DiscardUnknown(m) } -func (m *ExecuteVtworkerCommandRequest) Reset() { *m = ExecuteVtworkerCommandRequest{} } -func (m *ExecuteVtworkerCommandRequest) String() string { return proto.CompactTextString(m) } -func (*ExecuteVtworkerCommandRequest) ProtoMessage() {} -func (*ExecuteVtworkerCommandRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +var xxx_messageInfo_ExecuteVtworkerCommandRequest proto.InternalMessageInfo func (m *ExecuteVtworkerCommandRequest) GetArgs() []string { if m != nil { @@ -48,13 +60,35 @@ func (m *ExecuteVtworkerCommandRequest) GetArgs() []string { // ExecuteVtworkerCommandResponse is streamed back by ExecuteVtworkerCommand. type ExecuteVtworkerCommandResponse struct { - Event *logutil.Event `protobuf:"bytes,1,opt,name=event" json:"event,omitempty"` + Event *logutil.Event `protobuf:"bytes,1,opt,name=event" json:"event,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *ExecuteVtworkerCommandResponse) Reset() { *m = ExecuteVtworkerCommandResponse{} } +func (m *ExecuteVtworkerCommandResponse) String() string { return proto.CompactTextString(m) } +func (*ExecuteVtworkerCommandResponse) ProtoMessage() {} +func (*ExecuteVtworkerCommandResponse) Descriptor() ([]byte, []int) { + return fileDescriptor_vtworkerdata_9c94bc714251542b, []int{1} +} +func (m *ExecuteVtworkerCommandResponse) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_ExecuteVtworkerCommandResponse.Unmarshal(m, b) +} +func (m *ExecuteVtworkerCommandResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_ExecuteVtworkerCommandResponse.Marshal(b, m, deterministic) +} +func (dst *ExecuteVtworkerCommandResponse) XXX_Merge(src proto.Message) { + xxx_messageInfo_ExecuteVtworkerCommandResponse.Merge(dst, src) +} +func (m *ExecuteVtworkerCommandResponse) XXX_Size() int { + return xxx_messageInfo_ExecuteVtworkerCommandResponse.Size(m) +} +func (m *ExecuteVtworkerCommandResponse) XXX_DiscardUnknown() { + xxx_messageInfo_ExecuteVtworkerCommandResponse.DiscardUnknown(m) } -func (m *ExecuteVtworkerCommandResponse) Reset() { *m = ExecuteVtworkerCommandResponse{} } -func (m *ExecuteVtworkerCommandResponse) String() string { return proto.CompactTextString(m) } -func (*ExecuteVtworkerCommandResponse) ProtoMessage() {} -func (*ExecuteVtworkerCommandResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +var xxx_messageInfo_ExecuteVtworkerCommandResponse proto.InternalMessageInfo func (m *ExecuteVtworkerCommandResponse) GetEvent() *logutil.Event { if m != nil { @@ -68,10 +102,10 @@ func init() { proto.RegisterType((*ExecuteVtworkerCommandResponse)(nil), "vtworkerdata.ExecuteVtworkerCommandResponse") } -func init() { proto.RegisterFile("vtworkerdata.proto", fileDescriptor0) } +func init() { proto.RegisterFile("vtworkerdata.proto", fileDescriptor_vtworkerdata_9c94bc714251542b) } -var fileDescriptor0 = []byte{ - // 147 bytes of a gzipped FileDescriptorProto +var fileDescriptor_vtworkerdata_9c94bc714251542b = []byte{ + // 175 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2a, 0x2b, 0x29, 0xcf, 0x2f, 0xca, 0x4e, 0x2d, 0x4a, 0x49, 0x2c, 0x49, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x41, 0x16, 0x93, 0xe2, 0xcd, 0xc9, 0x4f, 0x2f, 0x2d, 0xc9, 0xcc, 0x81, 0x48, 0x2a, 0x19, 0x73, @@ -80,6 +114,7 @@ var fileDescriptor0 = []byte{ 0x17, 0x4b, 0x30, 0x2a, 0x30, 0x6b, 0x70, 0x06, 0x81, 0xd9, 0x4a, 0x6e, 0x5c, 0x72, 0xb8, 0x34, 0x15, 0x17, 0xe4, 0xe7, 0x15, 0xa7, 0x0a, 0xa9, 0x70, 0xb1, 0xa6, 0x96, 0xa5, 0xe6, 0x95, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x1b, 0xf1, 0xe9, 0xc1, 0x6c, 0x75, 0x05, 0x89, 0x06, 0x41, 0x24, - 0x93, 0xd8, 0xc0, 0x6e, 0x30, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x0c, 0xa2, 0xb2, 0x95, 0xb6, - 0x00, 0x00, 0x00, + 0x9d, 0xb4, 0xa3, 0x34, 0xcb, 0x32, 0x4b, 0x52, 0x8b, 0x8b, 0xf5, 0x32, 0xf3, 0xf5, 0x21, 0x2c, + 0xfd, 0xf4, 0x7c, 0xfd, 0xb2, 0x12, 0x7d, 0xb0, 0xe3, 0xf4, 0x91, 0x1d, 0x9e, 0xc4, 0x06, 0x16, + 0x33, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xcf, 0x82, 0xc8, 0x11, 0xe3, 0x00, 0x00, 0x00, } diff --git a/go/vt/proto/vtworkerservice/vtworkerservice.pb.go b/go/vt/proto/vtworkerservice/vtworkerservice.pb.go index ec62af46e8b..b8833e0b607 100644 --- a/go/vt/proto/vtworkerservice/vtworkerservice.pb.go +++ b/go/vt/proto/vtworkerservice/vtworkerservice.pb.go @@ -1,15 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: vtworkerservice.proto -/* -Package vtworkerservice is a generated protocol buffer package. - -It is generated from these files: - vtworkerservice.proto - -It has these top-level messages: -*/ -package vtworkerservice +package vtworkerservice // import "vitess.io/vitess/go/vt/proto/vtworkerservice" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -135,16 +127,20 @@ var _Vtworker_serviceDesc = grpc.ServiceDesc{ Metadata: "vtworkerservice.proto", } -func init() { proto.RegisterFile("vtworkerservice.proto", fileDescriptor0) } +func init() { + proto.RegisterFile("vtworkerservice.proto", fileDescriptor_vtworkerservice_0d36cb3c7cfddd2b) +} -var fileDescriptor0 = []byte{ - // 123 bytes of a gzipped FileDescriptorProto +var fileDescriptor_vtworkerservice_0d36cb3c7cfddd2b = []byte{ + // 151 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2d, 0x2b, 0x29, 0xcf, 0x2f, 0xca, 0x4e, 0x2d, 0x2a, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x47, 0x13, 0x96, 0x12, 0x82, 0x09, 0xa4, 0x24, 0x96, 0x24, 0x42, 0x14, 0x19, 0x35, 0x33, 0x72, 0x71, 0x84, 0x41, 0x85, 0x85, 0xca, 0xb9, 0xc4, 0x5c, 0x2b, 0x52, 0x93, 0x4b, 0x4b, 0x52, 0x61, 0x42, 0xce, 0xf9, 0xb9, 0xb9, 0x89, 0x79, 0x29, 0x42, 0xda, 0x7a, 0x28, 0x7a, 0xb1, 0xab, 0x0a, 0x4a, 0x2d, 0x2c, 0x4d, 0x2d, 0x2e, 0x91, 0xd2, 0x21, 0x4e, 0x71, 0x71, 0x41, - 0x7e, 0x5e, 0x71, 0xaa, 0x12, 0x83, 0x01, 0x63, 0x12, 0x1b, 0xd8, 0x31, 0xc6, 0x80, 0x00, 0x00, - 0x00, 0xff, 0xff, 0x9e, 0x58, 0xac, 0x01, 0xca, 0x00, 0x00, 0x00, + 0x7e, 0x5e, 0x71, 0xaa, 0x12, 0x83, 0x01, 0xa3, 0x93, 0x5e, 0x94, 0x4e, 0x59, 0x66, 0x49, 0x6a, + 0x71, 0xb1, 0x5e, 0x66, 0xbe, 0x3e, 0x84, 0xa5, 0x9f, 0x9e, 0xaf, 0x5f, 0x56, 0xa2, 0x0f, 0x76, + 0xa5, 0x3e, 0x9a, 0x4f, 0x92, 0xd8, 0xc0, 0xc2, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x1c, + 0x01, 0x4d, 0x17, 0xfa, 0x00, 0x00, 0x00, } diff --git a/go/vt/proto/workflow/workflow.pb.go b/go/vt/proto/workflow/workflow.pb.go index 03c6b91ba64..9d1a9658165 100644 --- a/go/vt/proto/workflow/workflow.pb.go +++ b/go/vt/proto/workflow/workflow.pb.go @@ -1,18 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // source: workflow.proto -/* -Package workflow is a generated protocol buffer package. - -It is generated from these files: - workflow.proto - -It has these top-level messages: - Workflow - WorkflowCheckpoint - Task -*/ -package workflow +package workflow // import "vitess.io/vitess/go/vt/proto/workflow" import proto "github.com/golang/protobuf/proto" import fmt "fmt" @@ -55,7 +44,9 @@ var WorkflowState_value = map[string]int32{ func (x WorkflowState) String() string { return proto.EnumName(WorkflowState_name, int32(x)) } -func (WorkflowState) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (WorkflowState) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_workflow_35b1cca913e8ce26, []int{0} +} type TaskState int32 @@ -79,7 +70,9 @@ var TaskState_value = map[string]int32{ func (x TaskState) String() string { return proto.EnumName(TaskState_name, int32(x)) } -func (TaskState) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +func (TaskState) EnumDescriptor() ([]byte, []int) { + return fileDescriptor_workflow_35b1cca913e8ce26, []int{1} +} // Workflow is the persisted state of a long-running workflow. type Workflow struct { @@ -114,13 +107,35 @@ type Workflow struct { StartTime int64 `protobuf:"varint,7,opt,name=start_time,json=startTime" json:"start_time,omitempty"` // end_time is set when the workflow is finished. // This field only makes sense if 'state' is Done. - EndTime int64 `protobuf:"varint,8,opt,name=end_time,json=endTime" json:"end_time,omitempty"` + EndTime int64 `protobuf:"varint,8,opt,name=end_time,json=endTime" json:"end_time,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *Workflow) Reset() { *m = Workflow{} } -func (m *Workflow) String() string { return proto.CompactTextString(m) } -func (*Workflow) ProtoMessage() {} -func (*Workflow) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } +func (m *Workflow) Reset() { *m = Workflow{} } +func (m *Workflow) String() string { return proto.CompactTextString(m) } +func (*Workflow) ProtoMessage() {} +func (*Workflow) Descriptor() ([]byte, []int) { + return fileDescriptor_workflow_35b1cca913e8ce26, []int{0} +} +func (m *Workflow) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Workflow.Unmarshal(m, b) +} +func (m *Workflow) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Workflow.Marshal(b, m, deterministic) +} +func (dst *Workflow) XXX_Merge(src proto.Message) { + xxx_messageInfo_Workflow.Merge(dst, src) +} +func (m *Workflow) XXX_Size() int { + return xxx_messageInfo_Workflow.Size(m) +} +func (m *Workflow) XXX_DiscardUnknown() { + xxx_messageInfo_Workflow.DiscardUnknown(m) +} + +var xxx_messageInfo_Workflow proto.InternalMessageInfo func (m *Workflow) GetUuid() string { if m != nil { @@ -189,13 +204,35 @@ type WorkflowCheckpoint struct { Tasks map[string]*Task `protobuf:"bytes,2,rep,name=tasks" json:"tasks,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` // settings includes workflow specific data, e.g. the resharding workflow // would store the source shards and destination shards. - Settings map[string]string `protobuf:"bytes,3,rep,name=settings" json:"settings,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + Settings map[string]string `protobuf:"bytes,3,rep,name=settings" json:"settings,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } -func (m *WorkflowCheckpoint) Reset() { *m = WorkflowCheckpoint{} } -func (m *WorkflowCheckpoint) String() string { return proto.CompactTextString(m) } -func (*WorkflowCheckpoint) ProtoMessage() {} -func (*WorkflowCheckpoint) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } +func (m *WorkflowCheckpoint) Reset() { *m = WorkflowCheckpoint{} } +func (m *WorkflowCheckpoint) String() string { return proto.CompactTextString(m) } +func (*WorkflowCheckpoint) ProtoMessage() {} +func (*WorkflowCheckpoint) Descriptor() ([]byte, []int) { + return fileDescriptor_workflow_35b1cca913e8ce26, []int{1} +} +func (m *WorkflowCheckpoint) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_WorkflowCheckpoint.Unmarshal(m, b) +} +func (m *WorkflowCheckpoint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_WorkflowCheckpoint.Marshal(b, m, deterministic) +} +func (dst *WorkflowCheckpoint) XXX_Merge(src proto.Message) { + xxx_messageInfo_WorkflowCheckpoint.Merge(dst, src) +} +func (m *WorkflowCheckpoint) XXX_Size() int { + return xxx_messageInfo_WorkflowCheckpoint.Size(m) +} +func (m *WorkflowCheckpoint) XXX_DiscardUnknown() { + xxx_messageInfo_WorkflowCheckpoint.DiscardUnknown(m) +} + +var xxx_messageInfo_WorkflowCheckpoint proto.InternalMessageInfo func (m *WorkflowCheckpoint) GetCodeVersion() int32 { if m != nil { @@ -222,14 +259,36 @@ type Task struct { Id string `protobuf:"bytes,1,opt,name=id" json:"id,omitempty"` State TaskState `protobuf:"varint,2,opt,name=state,enum=workflow.TaskState" json:"state,omitempty"` // attributes includes the parameters the task needs. - Attributes map[string]string `protobuf:"bytes,3,rep,name=attributes" json:"attributes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` - Error string `protobuf:"bytes,4,opt,name=error" json:"error,omitempty"` + Attributes map[string]string `protobuf:"bytes,3,rep,name=attributes" json:"attributes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"` + Error string `protobuf:"bytes,4,opt,name=error" json:"error,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` +} + +func (m *Task) Reset() { *m = Task{} } +func (m *Task) String() string { return proto.CompactTextString(m) } +func (*Task) ProtoMessage() {} +func (*Task) Descriptor() ([]byte, []int) { + return fileDescriptor_workflow_35b1cca913e8ce26, []int{2} +} +func (m *Task) XXX_Unmarshal(b []byte) error { + return xxx_messageInfo_Task.Unmarshal(m, b) +} +func (m *Task) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { + return xxx_messageInfo_Task.Marshal(b, m, deterministic) +} +func (dst *Task) XXX_Merge(src proto.Message) { + xxx_messageInfo_Task.Merge(dst, src) +} +func (m *Task) XXX_Size() int { + return xxx_messageInfo_Task.Size(m) +} +func (m *Task) XXX_DiscardUnknown() { + xxx_messageInfo_Task.DiscardUnknown(m) } -func (m *Task) Reset() { *m = Task{} } -func (m *Task) String() string { return proto.CompactTextString(m) } -func (*Task) ProtoMessage() {} -func (*Task) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } +var xxx_messageInfo_Task proto.InternalMessageInfo func (m *Task) GetId() string { if m != nil { @@ -262,43 +321,48 @@ func (m *Task) GetError() string { func init() { proto.RegisterType((*Workflow)(nil), "workflow.Workflow") proto.RegisterType((*WorkflowCheckpoint)(nil), "workflow.WorkflowCheckpoint") + proto.RegisterMapType((map[string]string)(nil), "workflow.WorkflowCheckpoint.SettingsEntry") + proto.RegisterMapType((map[string]*Task)(nil), "workflow.WorkflowCheckpoint.TasksEntry") proto.RegisterType((*Task)(nil), "workflow.Task") + proto.RegisterMapType((map[string]string)(nil), "workflow.Task.AttributesEntry") proto.RegisterEnum("workflow.WorkflowState", WorkflowState_name, WorkflowState_value) proto.RegisterEnum("workflow.TaskState", TaskState_name, TaskState_value) } -func init() { proto.RegisterFile("workflow.proto", fileDescriptor0) } - -var fileDescriptor0 = []byte{ - // 477 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0xdb, 0x6e, 0xd3, 0x40, - 0x10, 0x65, 0x7d, 0x69, 0x9c, 0x71, 0xea, 0x46, 0x43, 0x25, 0x4c, 0x24, 0x90, 0x89, 0x90, 0x30, - 0x91, 0xc8, 0x43, 0x90, 0x10, 0x02, 0xb5, 0x12, 0xe2, 0x22, 0x9e, 0xfa, 0xe0, 0x54, 0xf0, 0x18, - 0x6d, 0xe3, 0x6d, 0x59, 0xa5, 0xd9, 0xad, 0xd6, 0xeb, 0x56, 0xf9, 0x40, 0x7e, 0x81, 0x6f, 0xe0, - 0x33, 0xd0, 0xee, 0xc6, 0x4e, 0x0c, 0x08, 0x89, 0xb7, 0x99, 0x39, 0x73, 0xce, 0x78, 0xf6, 0x8c, - 0x21, 0xb9, 0x93, 0x6a, 0x75, 0x79, 0x2d, 0xef, 0xa6, 0x37, 0x4a, 0x6a, 0x89, 0x51, 0x93, 0x8f, - 0x7f, 0x12, 0x88, 0xbe, 0x6e, 0x13, 0x44, 0x08, 0xea, 0x9a, 0x97, 0x29, 0xc9, 0x48, 0xde, 0x2f, - 0x6c, 0x8c, 0x4f, 0x60, 0x70, 0x49, 0x97, 0x5a, 0xaa, 0xcd, 0x42, 0xd0, 0x35, 0x4b, 0x3d, 0x8b, - 0xc5, 0xdb, 0xda, 0x19, 0x5d, 0x33, 0x43, 0xb3, 0x90, 0xef, 0x68, 0x26, 0xc6, 0x17, 0x10, 0x56, - 0x9a, 0x6a, 0x96, 0x06, 0x19, 0xc9, 0x93, 0xd9, 0x83, 0x69, 0xfb, 0x05, 0xcd, 0xb4, 0xb9, 0x81, - 0x0b, 0xd7, 0x65, 0x24, 0x4a, 0xaa, 0x69, 0x1a, 0x66, 0x24, 0x1f, 0x14, 0x36, 0xc6, 0x63, 0x08, - 0x99, 0x52, 0x52, 0xa5, 0x07, 0x56, 0xd7, 0x25, 0xf8, 0x08, 0xa0, 0xd2, 0x54, 0xe9, 0x85, 0xe6, - 0x6b, 0x96, 0xf6, 0x32, 0x92, 0xfb, 0x45, 0xdf, 0x56, 0xce, 0xf9, 0x9a, 0xe1, 0x43, 0x88, 0x98, - 0x28, 0x1d, 0x18, 0x59, 0xb0, 0xc7, 0x44, 0x69, 0xa0, 0xf1, 0x77, 0x0f, 0xb0, 0x19, 0xfe, 0xfe, - 0x1b, 0x5b, 0xae, 0x6e, 0x24, 0x17, 0xda, 0x2c, 0xb8, 0x94, 0x25, 0x5b, 0xdc, 0x32, 0x55, 0x71, - 0x29, 0xec, 0xf2, 0x61, 0x11, 0x9b, 0xda, 0x17, 0x57, 0xc2, 0x13, 0x08, 0x35, 0xad, 0x56, 0x55, - 0xea, 0x65, 0x7e, 0x1e, 0xcf, 0x9e, 0xfd, 0xb9, 0xcc, 0x4e, 0x6f, 0x7a, 0x6e, 0x3a, 0x3f, 0x0a, - 0xad, 0x36, 0x85, 0x63, 0xe1, 0x27, 0x88, 0x2a, 0xa6, 0x35, 0x17, 0x57, 0x55, 0xea, 0x5b, 0x85, - 0xc9, 0x3f, 0x15, 0xe6, 0xdb, 0x66, 0x27, 0xd2, 0x72, 0x47, 0x9f, 0x01, 0x76, 0xe2, 0x38, 0x04, - 0x7f, 0xc5, 0x36, 0x5b, 0xaf, 0x4c, 0x88, 0x4f, 0x21, 0xbc, 0xa5, 0xd7, 0xb5, 0xf3, 0x28, 0x9e, - 0x25, 0xbb, 0x21, 0x86, 0x56, 0x38, 0xf0, 0x8d, 0xf7, 0x9a, 0x8c, 0xde, 0xc2, 0x61, 0x67, 0xc8, - 0x5f, 0xc4, 0x8e, 0xf7, 0xc5, 0xfa, 0x7b, 0xe4, 0xf1, 0x0f, 0x02, 0x81, 0x11, 0xc4, 0x04, 0xbc, - 0xf6, 0x58, 0x3c, 0x5e, 0xe2, 0xf3, 0xc6, 0x73, 0xcf, 0x7a, 0x7e, 0xbf, 0x3b, 0xbf, 0xe3, 0xf7, - 0x29, 0x00, 0xd5, 0x5a, 0xf1, 0x8b, 0x5a, 0xb3, 0xe6, 0x51, 0x1e, 0x77, 0xfb, 0xa7, 0xef, 0xda, - 0x06, 0xf7, 0x10, 0x7b, 0x8c, 0xdd, 0x6d, 0x04, 0x7b, 0xb7, 0x31, 0x3a, 0x81, 0xa3, 0xdf, 0x48, - 0xff, 0xb3, 0xd8, 0xe4, 0x15, 0x1c, 0x76, 0x8e, 0x13, 0x13, 0x80, 0x33, 0xa9, 0xe7, 0xe6, 0xb8, - 0x58, 0x39, 0xbc, 0x87, 0x31, 0xf4, 0x8a, 0x5a, 0x08, 0x2e, 0xae, 0x86, 0x04, 0x23, 0x08, 0x3e, - 0x48, 0xc1, 0x86, 0xde, 0xe4, 0x14, 0xfa, 0xed, 0x82, 0x88, 0x90, 0x98, 0xa4, 0xc3, 0x3b, 0x82, - 0xd8, 0x3a, 0xd0, 0x72, 0x07, 0x10, 0x99, 0x82, 0xe3, 0x5f, 0x1c, 0xd8, 0x9f, 0xf2, 0xe5, 0xaf, - 0x00, 0x00, 0x00, 0xff, 0xff, 0x72, 0x5c, 0x6d, 0x7f, 0xa6, 0x03, 0x00, 0x00, +func init() { proto.RegisterFile("workflow.proto", fileDescriptor_workflow_35b1cca913e8ce26) } + +var fileDescriptor_workflow_35b1cca913e8ce26 = []byte{ + // 501 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0x6d, 0x8b, 0xd3, 0x40, + 0x10, 0x36, 0x69, 0x73, 0x4d, 0x27, 0xbd, 0x5c, 0x19, 0x0f, 0x8c, 0x05, 0xa5, 0x16, 0xe5, 0x62, + 0xc1, 0x04, 0x2a, 0x88, 0x28, 0x77, 0xe0, 0x2b, 0x7e, 0xba, 0x0f, 0xe9, 0xa1, 0xe0, 0x97, 0xb2, + 0xd7, 0xec, 0xd5, 0xa5, 0xd7, 0xdd, 0x63, 0xb3, 0xe9, 0xd1, 0x1f, 0xe8, 0x5f, 0xf0, 0x37, 0xf8, + 0x33, 0x64, 0x77, 0x9b, 0xb4, 0x51, 0x11, 0xfc, 0x36, 0x33, 0xcf, 0x3c, 0xcf, 0x64, 0xf6, 0x99, + 0x40, 0x78, 0x2b, 0xe4, 0xf2, 0xea, 0x5a, 0xdc, 0x26, 0x37, 0x52, 0x28, 0x81, 0x7e, 0x95, 0x8f, + 0x7e, 0x3a, 0xe0, 0x7f, 0xd9, 0x26, 0x88, 0xd0, 0x2e, 0x4b, 0x96, 0x47, 0xce, 0xd0, 0x89, 0xbb, + 0x99, 0x89, 0xf1, 0x11, 0xf4, 0xae, 0xc8, 0x5c, 0x09, 0xb9, 0x99, 0x71, 0xb2, 0xa2, 0x91, 0x6b, + 0xb0, 0x60, 0x5b, 0x3b, 0x27, 0x2b, 0xaa, 0x69, 0x06, 0x6a, 0x59, 0x9a, 0x8e, 0xf1, 0x19, 0x78, + 0x85, 0x22, 0x8a, 0x46, 0xed, 0xa1, 0x13, 0x87, 0x93, 0x7b, 0x49, 0xfd, 0x05, 0xd5, 0xb4, 0xa9, + 0x86, 0x33, 0xdb, 0xa5, 0x25, 0x72, 0xa2, 0x48, 0xe4, 0x0d, 0x9d, 0xb8, 0x97, 0x99, 0x18, 0x8f, + 0xc1, 0xa3, 0x52, 0x0a, 0x19, 0x1d, 0x18, 0x5d, 0x9b, 0xe0, 0x03, 0x80, 0x42, 0x11, 0xa9, 0x66, + 0x8a, 0xad, 0x68, 0xd4, 0x19, 0x3a, 0x71, 0x2b, 0xeb, 0x9a, 0xca, 0x05, 0x5b, 0x51, 0xbc, 0x0f, + 0x3e, 0xe5, 0xb9, 0x05, 0x7d, 0x03, 0x76, 0x28, 0xcf, 0x35, 0x34, 0xfa, 0xee, 0x02, 0x56, 0xc3, + 0xdf, 0x7d, 0xa3, 0xf3, 0xe5, 0x8d, 0x60, 0x5c, 0xe9, 0x05, 0xe7, 0x22, 0xa7, 0xb3, 0x35, 0x95, + 0x05, 0x13, 0xdc, 0x2c, 0xef, 0x65, 0x81, 0xae, 0x7d, 0xb6, 0x25, 0x3c, 0x05, 0x4f, 0x91, 0x62, + 0x59, 0x44, 0xee, 0xb0, 0x15, 0x07, 0x93, 0x93, 0x3f, 0x97, 0xd9, 0xe9, 0x25, 0x17, 0xba, 0xf3, + 0x03, 0x57, 0x72, 0x93, 0x59, 0x16, 0x7e, 0x04, 0xbf, 0xa0, 0x4a, 0x31, 0xbe, 0x28, 0xa2, 0x96, + 0x51, 0x18, 0xff, 0x53, 0x61, 0xba, 0x6d, 0xb6, 0x22, 0x35, 0x77, 0xf0, 0x09, 0x60, 0x27, 0x8e, + 0x7d, 0x68, 0x2d, 0xe9, 0x66, 0xeb, 0x95, 0x0e, 0xf1, 0x31, 0x78, 0x6b, 0x72, 0x5d, 0x5a, 0x8f, + 0x82, 0x49, 0xb8, 0x1b, 0xa2, 0x69, 0x99, 0x05, 0x5f, 0xb9, 0x2f, 0x9d, 0xc1, 0x6b, 0x38, 0x6c, + 0x0c, 0xf9, 0x8b, 0xd8, 0xf1, 0xbe, 0x58, 0x77, 0x8f, 0x3c, 0xfa, 0xe1, 0x40, 0x5b, 0x0b, 0x62, + 0x08, 0x6e, 0x7d, 0x2c, 0x2e, 0xcb, 0xf1, 0x69, 0xe5, 0xb9, 0x6b, 0x3c, 0xbf, 0xdb, 0x9c, 0xdf, + 0xf0, 0xfb, 0x0c, 0x80, 0x28, 0x25, 0xd9, 0x65, 0xa9, 0x68, 0xf5, 0x28, 0x0f, 0x9b, 0xfd, 0xc9, + 0x9b, 0xba, 0xc1, 0x3e, 0xc4, 0x1e, 0x63, 0x77, 0x1b, 0xed, 0xbd, 0xdb, 0x18, 0x9c, 0xc2, 0xd1, + 0x6f, 0xa4, 0xff, 0x59, 0x6c, 0xfc, 0x02, 0x0e, 0x1b, 0xc7, 0x89, 0x21, 0xc0, 0xb9, 0x50, 0x53, + 0x7d, 0x5c, 0x34, 0xef, 0xdf, 0xc1, 0x00, 0x3a, 0x59, 0xc9, 0x39, 0xe3, 0x8b, 0xbe, 0x83, 0x3e, + 0xb4, 0xdf, 0x0b, 0x4e, 0xfb, 0xee, 0xf8, 0x0c, 0xba, 0xf5, 0x82, 0x88, 0x10, 0xea, 0xa4, 0xc1, + 0x3b, 0x82, 0xc0, 0x38, 0x50, 0x73, 0x7b, 0xe0, 0xeb, 0x82, 0xe5, 0xbf, 0x3d, 0xf9, 0xfa, 0x64, + 0xcd, 0x14, 0x2d, 0x8a, 0x84, 0x89, 0xd4, 0x46, 0xe9, 0x42, 0xa4, 0x6b, 0x95, 0x9a, 0xbf, 0x35, + 0xad, 0x9e, 0xe5, 0xf2, 0xc0, 0xe4, 0xcf, 0x7f, 0x05, 0x00, 0x00, 0xff, 0xff, 0x42, 0xc0, 0xe7, + 0x77, 0xcf, 0x03, 0x00, 0x00, } diff --git a/proto/automation.proto b/proto/automation.proto index b2407f245ca..0dc91b3a1eb 100644 --- a/proto/automation.proto +++ b/proto/automation.proto @@ -20,6 +20,7 @@ limitations under the License. // (e.g. retrieving the current status of a pending cluster operation). syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/automation"; package automation; diff --git a/proto/automationservice.proto b/proto/automationservice.proto index bcad916ffad..b9604dd0718 100644 --- a/proto/automationservice.proto +++ b/proto/automationservice.proto @@ -17,6 +17,7 @@ limitations under the License. // Protobuf service for the automation framework. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/automationservice"; package automationservice; diff --git a/proto/binlogdata.proto b/proto/binlogdata.proto index 65f16c35a5b..4fb7cf56987 100644 --- a/proto/binlogdata.proto +++ b/proto/binlogdata.proto @@ -19,6 +19,7 @@ limitations under the License. // replication only. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/binlogdata"; package binlogdata; diff --git a/proto/binlogservice.proto b/proto/binlogservice.proto index b0760047a67..24e50a9fc6c 100644 --- a/proto/binlogservice.proto +++ b/proto/binlogservice.proto @@ -19,6 +19,7 @@ limitations under the License. // filtered replication only. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/binlogservice"; package binlogservice; diff --git a/proto/logutil.proto b/proto/logutil.proto index b048ead8aac..d720752314e 100644 --- a/proto/logutil.proto +++ b/proto/logutil.proto @@ -17,6 +17,7 @@ limitations under the License. // This package contains the data structures for the logging service. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/logutil"; package logutil; diff --git a/proto/mysqlctl.proto b/proto/mysqlctl.proto index eecce332897..df1fbd6ebd0 100644 --- a/proto/mysqlctl.proto +++ b/proto/mysqlctl.proto @@ -18,6 +18,7 @@ limitations under the License. // calls to mysqlctld. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/mysqlctl"; package mysqlctl; diff --git a/proto/query.proto b/proto/query.proto index 826cf992eff..5413fedd1a3 100644 --- a/proto/query.proto +++ b/proto/query.proto @@ -18,6 +18,7 @@ limitations under the License. // RPC calls to Vttablet. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/query"; package query; diff --git a/proto/queryservice.proto b/proto/queryservice.proto index cacb86abc52..a6a7074c9dc 100644 --- a/proto/queryservice.proto +++ b/proto/queryservice.proto @@ -19,6 +19,7 @@ limitations under the License. syntax = "proto3"; package queryservice; +option go_package = "vitess.io/vitess/go/vt/proto/queryservice"; import "query.proto"; diff --git a/proto/replicationdata.proto b/proto/replicationdata.proto index 868b97efb74..5a1a1e5ee14 100644 --- a/proto/replicationdata.proto +++ b/proto/replicationdata.proto @@ -17,6 +17,7 @@ limitations under the License. // This file defines the replication related structures we use. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/replicationdata"; package replicationdata; diff --git a/proto/tableacl.proto b/proto/tableacl.proto index 34560d17f2d..1fb1af3d915 100644 --- a/proto/tableacl.proto +++ b/proto/tableacl.proto @@ -17,6 +17,7 @@ limitations under the License. // Table ACL proto definitions. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/tableacl"; package tableacl; diff --git a/proto/tabletmanagerdata.proto b/proto/tabletmanagerdata.proto index f54ddf8741e..2ea3555ae84 100644 --- a/proto/tabletmanagerdata.proto +++ b/proto/tabletmanagerdata.proto @@ -18,6 +18,7 @@ limitations under the License. // RPC calls to VtTablet for the management API. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/tabletmanagerdata"; package tabletmanagerdata; diff --git a/proto/tabletmanagerservice.proto b/proto/tabletmanagerservice.proto index 05a10639ff4..99d08fc0fe5 100644 --- a/proto/tabletmanagerservice.proto +++ b/proto/tabletmanagerservice.proto @@ -18,6 +18,7 @@ limitations under the License. // calls to VtTablet. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/tabletmanagerservice"; package tabletmanagerservice; diff --git a/proto/throttlerdata.proto b/proto/throttlerdata.proto index bc08f5c270e..06ecc106495 100644 --- a/proto/throttlerdata.proto +++ b/proto/throttlerdata.proto @@ -17,6 +17,7 @@ limitations under the License. // Data structures for the throttler RPC interface. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/throttlerdata"; package throttlerdata; diff --git a/proto/throttlerservice.proto b/proto/throttlerservice.proto index 550629aeb34..0ab9fdac4a0 100644 --- a/proto/throttlerservice.proto +++ b/proto/throttlerservice.proto @@ -19,6 +19,7 @@ limitations under the License. // replication (vttablet). syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/throttlerservice"; package throttlerservice; diff --git a/proto/topodata.proto b/proto/topodata.proto index d5beadc8825..116fd3e6627 100644 --- a/proto/topodata.proto +++ b/proto/topodata.proto @@ -20,6 +20,7 @@ limitations under the License. // service. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/topodata"; option java_package="io.vitess.proto"; diff --git a/proto/vschema.proto b/proto/vschema.proto index 9fe3e96f81c..7dc8d3fb6db 100644 --- a/proto/vschema.proto +++ b/proto/vschema.proto @@ -17,6 +17,7 @@ limitations under the License. // This file contains the types needed to define a vschema. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/vschema"; package vschema; diff --git a/proto/vtctldata.proto b/proto/vtctldata.proto index 438e457d0d8..fee87b89793 100644 --- a/proto/vtctldata.proto +++ b/proto/vtctldata.proto @@ -18,6 +18,7 @@ limitations under the License. // you to use vtctld as a server for vt commands. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/vtctldata"; package vtctldata; diff --git a/proto/vtctlservice.proto b/proto/vtctlservice.proto index 10b9bc32fd6..f29e07d6f25 100644 --- a/proto/vtctlservice.proto +++ b/proto/vtctlservice.proto @@ -18,6 +18,7 @@ limitations under the License. // proxy for vt commands. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/vtctlservice"; package vtctlservice; diff --git a/proto/vtgate.proto b/proto/vtgate.proto index 26b0ce2f0b5..8d7f5009a6d 100644 --- a/proto/vtgate.proto +++ b/proto/vtgate.proto @@ -17,6 +17,7 @@ limitations under the License. // Data definitions for service vtgateservice. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/vtgate"; package vtgate; diff --git a/proto/vtgateservice.proto b/proto/vtgateservice.proto index 23f17bf2291..1749ad6527c 100644 --- a/proto/vtgateservice.proto +++ b/proto/vtgateservice.proto @@ -18,6 +18,7 @@ limitations under the License. // This is the main entry point to Vitess. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/vtgateservice"; option java_package="io.vitess.proto.grpc"; diff --git a/proto/vtrpc.proto b/proto/vtrpc.proto index 9a2b8218a68..9d659ff4347 100644 --- a/proto/vtrpc.proto +++ b/proto/vtrpc.proto @@ -17,6 +17,7 @@ limitations under the License. // This file contains useful data structures for RPCs in Vitess. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/vtrpc"; option java_package="io.vitess.proto"; diff --git a/proto/vttest.proto b/proto/vttest.proto index 7153ce2d9be..08c6f69907c 100644 --- a/proto/vttest.proto +++ b/proto/vttest.proto @@ -41,6 +41,7 @@ limitations under the License. // 'keyspaces { name: "test_keyspace" shards { name: "-80" } shards { name: "80-" } } keyspaces { name: "redirect" served_from: "test_keyspace" }' syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/vttest"; package vttest; diff --git a/proto/vtworkerdata.proto b/proto/vtworkerdata.proto index a5846aa20c7..9fa9640519b 100644 --- a/proto/vtworkerdata.proto +++ b/proto/vtworkerdata.proto @@ -17,6 +17,7 @@ limitations under the License. // Data structures for the vtworker RPC interface. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/vtworkerdata"; package vtworkerdata; diff --git a/proto/vtworkerservice.proto b/proto/vtworkerservice.proto index 90c9f63484d..0e4f5aed3f0 100644 --- a/proto/vtworkerservice.proto +++ b/proto/vtworkerservice.proto @@ -18,6 +18,7 @@ limitations under the License. // The interface is very similar to the vtctld interface (see vtctlservice.proto). syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/vtworkerservice"; package vtworkerservice; diff --git a/proto/workflow.proto b/proto/workflow.proto index cdd100c045b..e943e662f26 100644 --- a/proto/workflow.proto +++ b/proto/workflow.proto @@ -19,6 +19,7 @@ limitations under the License. // server. syntax = "proto3"; +option go_package = "vitess.io/vitess/go/vt/proto/workflow"; package workflow; diff --git a/py/vtproto/automation_pb2.py b/py/vtproto/automation_pb2.py index 69071296a90..61f1c344ba7 100644 --- a/py/vtproto/automation_pb2.py +++ b/py/vtproto/automation_pb2.py @@ -20,7 +20,7 @@ name='automation.proto', package='automation', syntax='proto3', - serialized_pb=_b('\n\x10\x61utomation.proto\x12\nautomation\"\x90\x01\n\x10\x43lusterOperation\x12\n\n\x02id\x18\x01 \x01(\t\x12/\n\x0cserial_tasks\x18\x02 \x03(\x0b\x32\x19.automation.TaskContainer\x12\x30\n\x05state\x18\x03 \x01(\x0e\x32!.automation.ClusterOperationState\x12\r\n\x05\x65rror\x18\x04 \x01(\t\"N\n\rTaskContainer\x12(\n\x0eparallel_tasks\x18\x01 \x03(\x0b\x32\x10.automation.Task\x12\x13\n\x0b\x63oncurrency\x18\x02 \x01(\x05\"\xce\x01\n\x04Task\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x34\n\nparameters\x18\x02 \x03(\x0b\x32 .automation.Task.ParametersEntry\x12\n\n\x02id\x18\x03 \x01(\t\x12$\n\x05state\x18\x04 \x01(\x0e\x32\x15.automation.TaskState\x12\x0e\n\x06output\x18\x05 \x01(\t\x12\r\n\x05\x65rror\x18\x06 \x01(\t\x1a\x31\n\x0fParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xb1\x01\n\x1e\x45nqueueClusterOperationRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12N\n\nparameters\x18\x02 \x03(\x0b\x32:.automation.EnqueueClusterOperationRequest.ParametersEntry\x1a\x31\n\x0fParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"-\n\x1f\x45nqueueClusterOperationResponse\x12\n\n\x02id\x18\x01 \x01(\t\"-\n\x1fGetClusterOperationStateRequest\x12\n\n\x02id\x18\x01 \x01(\t\"T\n GetClusterOperationStateResponse\x12\x30\n\x05state\x18\x01 \x01(\x0e\x32!.automation.ClusterOperationState\"/\n!GetClusterOperationDetailsRequest\x12\n\n\x02id\x18\x01 \x01(\t\"V\n\"GetClusterOperationDetailsResponse\x12\x30\n\ncluster_op\x18\x02 \x01(\x0b\x32\x1c.automation.ClusterOperation*\x9a\x01\n\x15\x43lusterOperationState\x12#\n\x1fUNKNOWN_CLUSTER_OPERATION_STATE\x10\x00\x12!\n\x1d\x43LUSTER_OPERATION_NOT_STARTED\x10\x01\x12\x1d\n\x19\x43LUSTER_OPERATION_RUNNING\x10\x02\x12\x1a\n\x16\x43LUSTER_OPERATION_DONE\x10\x03*K\n\tTaskState\x12\x16\n\x12UNKNOWN_TASK_STATE\x10\x00\x12\x0f\n\x0bNOT_STARTED\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\x08\n\x04\x44ONE\x10\x03\x62\x06proto3') + serialized_pb=_b('\n\x10\x61utomation.proto\x12\nautomation\"\x90\x01\n\x10\x43lusterOperation\x12\n\n\x02id\x18\x01 \x01(\t\x12/\n\x0cserial_tasks\x18\x02 \x03(\x0b\x32\x19.automation.TaskContainer\x12\x30\n\x05state\x18\x03 \x01(\x0e\x32!.automation.ClusterOperationState\x12\r\n\x05\x65rror\x18\x04 \x01(\t\"N\n\rTaskContainer\x12(\n\x0eparallel_tasks\x18\x01 \x03(\x0b\x32\x10.automation.Task\x12\x13\n\x0b\x63oncurrency\x18\x02 \x01(\x05\"\xce\x01\n\x04Task\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x34\n\nparameters\x18\x02 \x03(\x0b\x32 .automation.Task.ParametersEntry\x12\n\n\x02id\x18\x03 \x01(\t\x12$\n\x05state\x18\x04 \x01(\x0e\x32\x15.automation.TaskState\x12\x0e\n\x06output\x18\x05 \x01(\t\x12\r\n\x05\x65rror\x18\x06 \x01(\t\x1a\x31\n\x0fParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xb1\x01\n\x1e\x45nqueueClusterOperationRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12N\n\nparameters\x18\x02 \x03(\x0b\x32:.automation.EnqueueClusterOperationRequest.ParametersEntry\x1a\x31\n\x0fParametersEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"-\n\x1f\x45nqueueClusterOperationResponse\x12\n\n\x02id\x18\x01 \x01(\t\"-\n\x1fGetClusterOperationStateRequest\x12\n\n\x02id\x18\x01 \x01(\t\"T\n GetClusterOperationStateResponse\x12\x30\n\x05state\x18\x01 \x01(\x0e\x32!.automation.ClusterOperationState\"/\n!GetClusterOperationDetailsRequest\x12\n\n\x02id\x18\x01 \x01(\t\"V\n\"GetClusterOperationDetailsResponse\x12\x30\n\ncluster_op\x18\x02 \x01(\x0b\x32\x1c.automation.ClusterOperation*\x9a\x01\n\x15\x43lusterOperationState\x12#\n\x1fUNKNOWN_CLUSTER_OPERATION_STATE\x10\x00\x12!\n\x1d\x43LUSTER_OPERATION_NOT_STARTED\x10\x01\x12\x1d\n\x19\x43LUSTER_OPERATION_RUNNING\x10\x02\x12\x1a\n\x16\x43LUSTER_OPERATION_DONE\x10\x03*K\n\tTaskState\x12\x16\n\x12UNKNOWN_TASK_STATE\x10\x00\x12\x0f\n\x0bNOT_STARTED\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\x08\n\x04\x44ONE\x10\x03\x42)Z\'vitess.io/vitess/go/vt/proto/automationb\x06proto3') ) _CLUSTEROPERATIONSTATE = _descriptor.EnumDescriptor( @@ -621,6 +621,8 @@ _sym_db.RegisterMessage(GetClusterOperationDetailsResponse) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z\'vitess.io/vitess/go/vt/proto/automation')) _TASK_PARAMETERSENTRY.has_options = True _TASK_PARAMETERSENTRY._options = _descriptor._ParseOptions(descriptor_pb2.MessageOptions(), _b('8\001')) _ENQUEUECLUSTEROPERATIONREQUEST_PARAMETERSENTRY.has_options = True diff --git a/py/vtproto/automationservice_pb2.py b/py/vtproto/automationservice_pb2.py index 1526cf6620f..34ca83f9919 100644 --- a/py/vtproto/automationservice_pb2.py +++ b/py/vtproto/automationservice_pb2.py @@ -20,7 +20,7 @@ name='automationservice.proto', package='automationservice', syntax='proto3', - serialized_pb=_b('\n\x17\x61utomationservice.proto\x12\x11\x61utomationservice\x1a\x10\x61utomation.proto2\x81\x02\n\nAutomation\x12t\n\x17\x45nqueueClusterOperation\x12*.automation.EnqueueClusterOperationRequest\x1a+.automation.EnqueueClusterOperationResponse\"\x00\x12}\n\x1aGetClusterOperationDetails\x12-.automation.GetClusterOperationDetailsRequest\x1a..automation.GetClusterOperationDetailsResponse\"\x00\x62\x06proto3') + serialized_pb=_b('\n\x17\x61utomationservice.proto\x12\x11\x61utomationservice\x1a\x10\x61utomation.proto2\x81\x02\n\nAutomation\x12t\n\x17\x45nqueueClusterOperation\x12*.automation.EnqueueClusterOperationRequest\x1a+.automation.EnqueueClusterOperationResponse\"\x00\x12}\n\x1aGetClusterOperationDetails\x12-.automation.GetClusterOperationDetailsRequest\x1a..automation.GetClusterOperationDetailsResponse\"\x00\x42\x30Z.vitess.io/vitess/go/vt/proto/automationserviceb\x06proto3') , dependencies=[automation__pb2.DESCRIPTOR,]) @@ -29,6 +29,8 @@ _sym_db.RegisterFileDescriptor(DESCRIPTOR) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z.vitess.io/vitess/go/vt/proto/automationservice')) _AUTOMATION = _descriptor.ServiceDescriptor( name='Automation', diff --git a/py/vtproto/binlogdata_pb2.py b/py/vtproto/binlogdata_pb2.py index f40da0f0ab1..e22a3468718 100644 --- a/py/vtproto/binlogdata_pb2.py +++ b/py/vtproto/binlogdata_pb2.py @@ -21,7 +21,7 @@ name='binlogdata.proto', package='binlogdata', syntax='proto3', - serialized_pb=_b('\n\x10\x62inlogdata.proto\x12\nbinlogdata\x1a\x0bquery.proto\x1a\x0etopodata.proto\"7\n\x07\x43harset\x12\x0e\n\x06\x63lient\x18\x01 \x01(\x05\x12\x0c\n\x04\x63onn\x18\x02 \x01(\x05\x12\x0e\n\x06server\x18\x03 \x01(\x05\"\xb5\x03\n\x11\x42inlogTransaction\x12;\n\nstatements\x18\x01 \x03(\x0b\x32\'.binlogdata.BinlogTransaction.Statement\x12&\n\x0b\x65vent_token\x18\x04 \x01(\x0b\x32\x11.query.EventToken\x1a\xae\x02\n\tStatement\x12\x42\n\x08\x63\x61tegory\x18\x01 \x01(\x0e\x32\x30.binlogdata.BinlogTransaction.Statement.Category\x12$\n\x07\x63harset\x18\x02 \x01(\x0b\x32\x13.binlogdata.Charset\x12\x0b\n\x03sql\x18\x03 \x01(\x0c\"\xa9\x01\n\x08\x43\x61tegory\x12\x13\n\x0f\x42L_UNRECOGNIZED\x10\x00\x12\x0c\n\x08\x42L_BEGIN\x10\x01\x12\r\n\tBL_COMMIT\x10\x02\x12\x0f\n\x0b\x42L_ROLLBACK\x10\x03\x12\x15\n\x11\x42L_DML_DEPRECATED\x10\x04\x12\n\n\x06\x42L_DDL\x10\x05\x12\n\n\x06\x42L_SET\x10\x06\x12\r\n\tBL_INSERT\x10\x07\x12\r\n\tBL_UPDATE\x10\x08\x12\r\n\tBL_DELETE\x10\tJ\x04\x08\x02\x10\x03J\x04\x08\x03\x10\x04\"v\n\x15StreamKeyRangeRequest\x12\x10\n\x08position\x18\x01 \x01(\t\x12%\n\tkey_range\x18\x02 \x01(\x0b\x32\x12.topodata.KeyRange\x12$\n\x07\x63harset\x18\x03 \x01(\x0b\x32\x13.binlogdata.Charset\"S\n\x16StreamKeyRangeResponse\x12\x39\n\x12\x62inlog_transaction\x18\x01 \x01(\x0b\x32\x1d.binlogdata.BinlogTransaction\"]\n\x13StreamTablesRequest\x12\x10\n\x08position\x18\x01 \x01(\t\x12\x0e\n\x06tables\x18\x02 \x03(\t\x12$\n\x07\x63harset\x18\x03 \x01(\x0b\x32\x13.binlogdata.Charset\"Q\n\x14StreamTablesResponse\x12\x39\n\x12\x62inlog_transaction\x18\x01 \x01(\x0b\x32\x1d.binlogdata.BinlogTransactionb\x06proto3') + serialized_pb=_b('\n\x10\x62inlogdata.proto\x12\nbinlogdata\x1a\x0bquery.proto\x1a\x0etopodata.proto\"7\n\x07\x43harset\x12\x0e\n\x06\x63lient\x18\x01 \x01(\x05\x12\x0c\n\x04\x63onn\x18\x02 \x01(\x05\x12\x0e\n\x06server\x18\x03 \x01(\x05\"\xb5\x03\n\x11\x42inlogTransaction\x12;\n\nstatements\x18\x01 \x03(\x0b\x32\'.binlogdata.BinlogTransaction.Statement\x12&\n\x0b\x65vent_token\x18\x04 \x01(\x0b\x32\x11.query.EventToken\x1a\xae\x02\n\tStatement\x12\x42\n\x08\x63\x61tegory\x18\x01 \x01(\x0e\x32\x30.binlogdata.BinlogTransaction.Statement.Category\x12$\n\x07\x63harset\x18\x02 \x01(\x0b\x32\x13.binlogdata.Charset\x12\x0b\n\x03sql\x18\x03 \x01(\x0c\"\xa9\x01\n\x08\x43\x61tegory\x12\x13\n\x0f\x42L_UNRECOGNIZED\x10\x00\x12\x0c\n\x08\x42L_BEGIN\x10\x01\x12\r\n\tBL_COMMIT\x10\x02\x12\x0f\n\x0b\x42L_ROLLBACK\x10\x03\x12\x15\n\x11\x42L_DML_DEPRECATED\x10\x04\x12\n\n\x06\x42L_DDL\x10\x05\x12\n\n\x06\x42L_SET\x10\x06\x12\r\n\tBL_INSERT\x10\x07\x12\r\n\tBL_UPDATE\x10\x08\x12\r\n\tBL_DELETE\x10\tJ\x04\x08\x02\x10\x03J\x04\x08\x03\x10\x04\"v\n\x15StreamKeyRangeRequest\x12\x10\n\x08position\x18\x01 \x01(\t\x12%\n\tkey_range\x18\x02 \x01(\x0b\x32\x12.topodata.KeyRange\x12$\n\x07\x63harset\x18\x03 \x01(\x0b\x32\x13.binlogdata.Charset\"S\n\x16StreamKeyRangeResponse\x12\x39\n\x12\x62inlog_transaction\x18\x01 \x01(\x0b\x32\x1d.binlogdata.BinlogTransaction\"]\n\x13StreamTablesRequest\x12\x10\n\x08position\x18\x01 \x01(\t\x12\x0e\n\x06tables\x18\x02 \x03(\t\x12$\n\x07\x63harset\x18\x03 \x01(\x0b\x32\x13.binlogdata.Charset\"Q\n\x14StreamTablesResponse\x12\x39\n\x12\x62inlog_transaction\x18\x01 \x01(\x0b\x32\x1d.binlogdata.BinlogTransactionB)Z\'vitess.io/vitess/go/vt/proto/binlogdatab\x06proto3') , dependencies=[query__pb2.DESCRIPTOR,topodata__pb2.DESCRIPTOR,]) @@ -431,4 +431,6 @@ _sym_db.RegisterMessage(StreamTablesResponse) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z\'vitess.io/vitess/go/vt/proto/binlogdata')) # @@protoc_insertion_point(module_scope) diff --git a/py/vtproto/binlogservice_pb2.py b/py/vtproto/binlogservice_pb2.py index 2e9b7a4011d..0dfa47c16c1 100644 --- a/py/vtproto/binlogservice_pb2.py +++ b/py/vtproto/binlogservice_pb2.py @@ -20,7 +20,7 @@ name='binlogservice.proto', package='binlogservice', syntax='proto3', - serialized_pb=_b('\n\x13\x62inlogservice.proto\x12\rbinlogservice\x1a\x10\x62inlogdata.proto2\xc2\x01\n\x0cUpdateStream\x12[\n\x0eStreamKeyRange\x12!.binlogdata.StreamKeyRangeRequest\x1a\".binlogdata.StreamKeyRangeResponse\"\x00\x30\x01\x12U\n\x0cStreamTables\x12\x1f.binlogdata.StreamTablesRequest\x1a .binlogdata.StreamTablesResponse\"\x00\x30\x01\x62\x06proto3') + serialized_pb=_b('\n\x13\x62inlogservice.proto\x12\rbinlogservice\x1a\x10\x62inlogdata.proto2\xc2\x01\n\x0cUpdateStream\x12[\n\x0eStreamKeyRange\x12!.binlogdata.StreamKeyRangeRequest\x1a\".binlogdata.StreamKeyRangeResponse\"\x00\x30\x01\x12U\n\x0cStreamTables\x12\x1f.binlogdata.StreamTablesRequest\x1a .binlogdata.StreamTablesResponse\"\x00\x30\x01\x42,Z*vitess.io/vitess/go/vt/proto/binlogserviceb\x06proto3') , dependencies=[binlogdata__pb2.DESCRIPTOR,]) @@ -29,6 +29,8 @@ _sym_db.RegisterFileDescriptor(DESCRIPTOR) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z*vitess.io/vitess/go/vt/proto/binlogservice')) _UPDATESTREAM = _descriptor.ServiceDescriptor( name='UpdateStream', diff --git a/py/vtproto/logutil_pb2.py b/py/vtproto/logutil_pb2.py index 6c72cd9353e..7f8d6d237e5 100644 --- a/py/vtproto/logutil_pb2.py +++ b/py/vtproto/logutil_pb2.py @@ -20,7 +20,7 @@ name='logutil.proto', package='logutil', syntax='proto3', - serialized_pb=_b('\n\rlogutil.proto\x12\x07logutil\",\n\x04Time\x12\x0f\n\x07seconds\x18\x01 \x01(\x03\x12\x13\n\x0bnanoseconds\x18\x02 \x01(\x05\"n\n\x05\x45vent\x12\x1b\n\x04time\x18\x01 \x01(\x0b\x32\r.logutil.Time\x12\x1d\n\x05level\x18\x02 \x01(\x0e\x32\x0e.logutil.Level\x12\x0c\n\x04\x66ile\x18\x03 \x01(\t\x12\x0c\n\x04line\x18\x04 \x01(\x03\x12\r\n\x05value\x18\x05 \x01(\t*6\n\x05Level\x12\x08\n\x04INFO\x10\x00\x12\x0b\n\x07WARNING\x10\x01\x12\t\n\x05\x45RROR\x10\x02\x12\x0b\n\x07\x43ONSOLE\x10\x03\x62\x06proto3') + serialized_pb=_b('\n\rlogutil.proto\x12\x07logutil\",\n\x04Time\x12\x0f\n\x07seconds\x18\x01 \x01(\x03\x12\x13\n\x0bnanoseconds\x18\x02 \x01(\x05\"n\n\x05\x45vent\x12\x1b\n\x04time\x18\x01 \x01(\x0b\x32\r.logutil.Time\x12\x1d\n\x05level\x18\x02 \x01(\x0e\x32\x0e.logutil.Level\x12\x0c\n\x04\x66ile\x18\x03 \x01(\t\x12\x0c\n\x04line\x18\x04 \x01(\x03\x12\r\n\x05value\x18\x05 \x01(\t*6\n\x05Level\x12\x08\n\x04INFO\x10\x00\x12\x0b\n\x07WARNING\x10\x01\x12\t\n\x05\x45RROR\x10\x02\x12\x0b\n\x07\x43ONSOLE\x10\x03\x42&Z$vitess.io/vitess/go/vt/proto/logutilb\x06proto3') ) _LEVEL = _descriptor.EnumDescriptor( @@ -179,4 +179,6 @@ _sym_db.RegisterMessage(Event) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z$vitess.io/vitess/go/vt/proto/logutil')) # @@protoc_insertion_point(module_scope) diff --git a/py/vtproto/mysqlctl_pb2.py b/py/vtproto/mysqlctl_pb2.py index 4d651f2b3db..fc2545aaad8 100644 --- a/py/vtproto/mysqlctl_pb2.py +++ b/py/vtproto/mysqlctl_pb2.py @@ -19,7 +19,7 @@ name='mysqlctl.proto', package='mysqlctl', syntax='proto3', - serialized_pb=_b('\n\x0emysqlctl.proto\x12\x08mysqlctl\"#\n\x0cStartRequest\x12\x13\n\x0bmysqld_args\x18\x01 \x03(\t\"\x0f\n\rStartResponse\"*\n\x0fShutdownRequest\x12\x17\n\x0fwait_for_mysqld\x18\x01 \x01(\x08\"\x12\n\x10ShutdownResponse\"\x18\n\x16RunMysqlUpgradeRequest\"\x19\n\x17RunMysqlUpgradeResponse\"\x15\n\x13ReinitConfigRequest\"\x16\n\x14ReinitConfigResponse\"\x16\n\x14RefreshConfigRequest\"\x17\n\x15RefreshConfigResponse2\x8a\x03\n\x08MysqlCtl\x12:\n\x05Start\x12\x16.mysqlctl.StartRequest\x1a\x17.mysqlctl.StartResponse\"\x00\x12\x43\n\x08Shutdown\x12\x19.mysqlctl.ShutdownRequest\x1a\x1a.mysqlctl.ShutdownResponse\"\x00\x12X\n\x0fRunMysqlUpgrade\x12 .mysqlctl.RunMysqlUpgradeRequest\x1a!.mysqlctl.RunMysqlUpgradeResponse\"\x00\x12O\n\x0cReinitConfig\x12\x1d.mysqlctl.ReinitConfigRequest\x1a\x1e.mysqlctl.ReinitConfigResponse\"\x00\x12R\n\rRefreshConfig\x12\x1e.mysqlctl.RefreshConfigRequest\x1a\x1f.mysqlctl.RefreshConfigResponse\"\x00\x62\x06proto3') + serialized_pb=_b('\n\x0emysqlctl.proto\x12\x08mysqlctl\"#\n\x0cStartRequest\x12\x13\n\x0bmysqld_args\x18\x01 \x03(\t\"\x0f\n\rStartResponse\"*\n\x0fShutdownRequest\x12\x17\n\x0fwait_for_mysqld\x18\x01 \x01(\x08\"\x12\n\x10ShutdownResponse\"\x18\n\x16RunMysqlUpgradeRequest\"\x19\n\x17RunMysqlUpgradeResponse\"\x15\n\x13ReinitConfigRequest\"\x16\n\x14ReinitConfigResponse\"\x16\n\x14RefreshConfigRequest\"\x17\n\x15RefreshConfigResponse2\x8a\x03\n\x08MysqlCtl\x12:\n\x05Start\x12\x16.mysqlctl.StartRequest\x1a\x17.mysqlctl.StartResponse\"\x00\x12\x43\n\x08Shutdown\x12\x19.mysqlctl.ShutdownRequest\x1a\x1a.mysqlctl.ShutdownResponse\"\x00\x12X\n\x0fRunMysqlUpgrade\x12 .mysqlctl.RunMysqlUpgradeRequest\x1a!.mysqlctl.RunMysqlUpgradeResponse\"\x00\x12O\n\x0cReinitConfig\x12\x1d.mysqlctl.ReinitConfigRequest\x1a\x1e.mysqlctl.ReinitConfigResponse\"\x00\x12R\n\rRefreshConfig\x12\x1e.mysqlctl.RefreshConfigRequest\x1a\x1f.mysqlctl.RefreshConfigResponse\"\x00\x42\'Z%vitess.io/vitess/go/vt/proto/mysqlctlb\x06proto3') ) @@ -361,6 +361,8 @@ _sym_db.RegisterMessage(RefreshConfigResponse) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z%vitess.io/vitess/go/vt/proto/mysqlctl')) _MYSQLCTL = _descriptor.ServiceDescriptor( name='MysqlCtl', diff --git a/py/vtproto/query_pb2.py b/py/vtproto/query_pb2.py index 51e3245feae..9cdaa2e52e6 100644 --- a/py/vtproto/query_pb2.py +++ b/py/vtproto/query_pb2.py @@ -22,7 +22,7 @@ name='query.proto', package='query', syntax='proto3', - serialized_pb=_b('\n\x0bquery.proto\x12\x05query\x1a\x0etopodata.proto\x1a\x0bvtrpc.proto\"b\n\x06Target\x12\x10\n\x08keyspace\x18\x01 \x01(\t\x12\r\n\x05shard\x18\x02 \x01(\t\x12)\n\x0btablet_type\x18\x03 \x01(\x0e\x32\x14.topodata.TabletType\x12\x0c\n\x04\x63\x65ll\x18\x04 \x01(\t\"2\n\x0eVTGateCallerID\x12\x10\n\x08username\x18\x01 \x01(\t\x12\x0e\n\x06groups\x18\x02 \x03(\t\"@\n\nEventToken\x12\x11\n\ttimestamp\x18\x01 \x01(\x03\x12\r\n\x05shard\x18\x02 \x01(\t\x12\x10\n\x08position\x18\x03 \x01(\t\"1\n\x05Value\x12\x19\n\x04type\x18\x01 \x01(\x0e\x32\x0b.query.Type\x12\r\n\x05value\x18\x02 \x01(\x0c\"V\n\x0c\x42indVariable\x12\x19\n\x04type\x18\x01 \x01(\x0e\x32\x0b.query.Type\x12\r\n\x05value\x18\x02 \x01(\x0c\x12\x1c\n\x06values\x18\x03 \x03(\x0b\x32\x0c.query.Value\"\xa2\x01\n\nBoundQuery\x12\x0b\n\x03sql\x18\x01 \x01(\t\x12<\n\x0e\x62ind_variables\x18\x02 \x03(\x0b\x32$.query.BoundQuery.BindVariablesEntry\x1aI\n\x12\x42indVariablesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.query.BindVariable:\x02\x38\x01\"\xe0\x04\n\x0e\x45xecuteOptions\x12\x1b\n\x13include_event_token\x18\x02 \x01(\x08\x12.\n\x13\x63ompare_event_token\x18\x03 \x01(\x0b\x32\x11.query.EventToken\x12=\n\x0fincluded_fields\x18\x04 \x01(\x0e\x32$.query.ExecuteOptions.IncludedFields\x12\x19\n\x11\x63lient_found_rows\x18\x05 \x01(\x08\x12\x30\n\x08workload\x18\x06 \x01(\x0e\x32\x1e.query.ExecuteOptions.Workload\x12\x18\n\x10sql_select_limit\x18\x08 \x01(\x03\x12I\n\x15transaction_isolation\x18\t \x01(\x0e\x32*.query.ExecuteOptions.TransactionIsolation\x12\x1d\n\x15skip_query_plan_cache\x18\n \x01(\x08\";\n\x0eIncludedFields\x12\x11\n\rTYPE_AND_NAME\x10\x00\x12\r\n\tTYPE_ONLY\x10\x01\x12\x07\n\x03\x41LL\x10\x02\"8\n\x08Workload\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x08\n\x04OLTP\x10\x01\x12\x08\n\x04OLAP\x10\x02\x12\x07\n\x03\x44\x42\x41\x10\x03\"t\n\x14TransactionIsolation\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x00\x12\x13\n\x0fREPEATABLE_READ\x10\x01\x12\x12\n\x0eREAD_COMMITTED\x10\x02\x12\x14\n\x10READ_UNCOMMITTED\x10\x03\x12\x10\n\x0cSERIALIZABLE\x10\x04J\x04\x08\x01\x10\x02\"\xbf\x01\n\x05\x46ield\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x19\n\x04type\x18\x02 \x01(\x0e\x32\x0b.query.Type\x12\r\n\x05table\x18\x03 \x01(\t\x12\x11\n\torg_table\x18\x04 \x01(\t\x12\x10\n\x08\x64\x61tabase\x18\x05 \x01(\t\x12\x10\n\x08org_name\x18\x06 \x01(\t\x12\x15\n\rcolumn_length\x18\x07 \x01(\r\x12\x0f\n\x07\x63harset\x18\x08 \x01(\r\x12\x10\n\x08\x64\x65\x63imals\x18\t \x01(\r\x12\r\n\x05\x66lags\x18\n \x01(\r\"&\n\x03Row\x12\x0f\n\x07lengths\x18\x01 \x03(\x12\x12\x0e\n\x06values\x18\x02 \x01(\x0c\"G\n\x0cResultExtras\x12&\n\x0b\x65vent_token\x18\x01 \x01(\x0b\x32\x11.query.EventToken\x12\x0f\n\x07\x66resher\x18\x02 \x01(\x08\"\x94\x01\n\x0bQueryResult\x12\x1c\n\x06\x66ields\x18\x01 \x03(\x0b\x32\x0c.query.Field\x12\x15\n\rrows_affected\x18\x02 \x01(\x04\x12\x11\n\tinsert_id\x18\x03 \x01(\x04\x12\x18\n\x04rows\x18\x04 \x03(\x0b\x32\n.query.Row\x12#\n\x06\x65xtras\x18\x05 \x01(\x0b\x32\x13.query.ResultExtras\"\xca\x02\n\x0bStreamEvent\x12\x30\n\nstatements\x18\x01 \x03(\x0b\x32\x1c.query.StreamEvent.Statement\x12&\n\x0b\x65vent_token\x18\x02 \x01(\x0b\x32\x11.query.EventToken\x1a\xe0\x01\n\tStatement\x12\x37\n\x08\x63\x61tegory\x18\x01 \x01(\x0e\x32%.query.StreamEvent.Statement.Category\x12\x12\n\ntable_name\x18\x02 \x01(\t\x12(\n\x12primary_key_fields\x18\x03 \x03(\x0b\x32\x0c.query.Field\x12&\n\x12primary_key_values\x18\x04 \x03(\x0b\x32\n.query.Row\x12\x0b\n\x03sql\x18\x05 \x01(\x0c\"\'\n\x08\x43\x61tegory\x12\t\n\x05\x45rror\x10\x00\x12\x07\n\x03\x44ML\x10\x01\x12\x07\n\x03\x44\x44L\x10\x02\"\xf3\x01\n\x0e\x45xecuteRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12 \n\x05query\x18\x04 \x01(\x0b\x32\x11.query.BoundQuery\x12\x16\n\x0etransaction_id\x18\x05 \x01(\x03\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\"5\n\x0f\x45xecuteResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"U\n\x0fResultWithError\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12\"\n\x06result\x18\x02 \x01(\x0b\x32\x12.query.QueryResult\"\x92\x02\n\x13\x45xecuteBatchRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\"\n\x07queries\x18\x04 \x03(\x0b\x32\x11.query.BoundQuery\x12\x16\n\x0e\x61s_transaction\x18\x05 \x01(\x08\x12\x16\n\x0etransaction_id\x18\x06 \x01(\x03\x12&\n\x07options\x18\x07 \x01(\x0b\x32\x15.query.ExecuteOptions\";\n\x14\x45xecuteBatchResponse\x12#\n\x07results\x18\x01 \x03(\x0b\x32\x12.query.QueryResult\"\xe1\x01\n\x14StreamExecuteRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12 \n\x05query\x18\x04 \x01(\x0b\x32\x11.query.BoundQuery\x12&\n\x07options\x18\x05 \x01(\x0b\x32\x15.query.ExecuteOptions\";\n\x15StreamExecuteResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"\xb7\x01\n\x0c\x42\x65ginRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12&\n\x07options\x18\x04 \x01(\x0b\x32\x15.query.ExecuteOptions\"\'\n\rBeginResponse\x12\x16\n\x0etransaction_id\x18\x01 \x01(\x03\"\xa8\x01\n\rCommitRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x16\n\x0etransaction_id\x18\x04 \x01(\x03\"\x10\n\x0e\x43ommitResponse\"\xaa\x01\n\x0fRollbackRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x16\n\x0etransaction_id\x18\x04 \x01(\x03\"\x12\n\x10RollbackResponse\"\xb7\x01\n\x0ePrepareRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x16\n\x0etransaction_id\x18\x04 \x01(\x03\x12\x0c\n\x04\x64tid\x18\x05 \x01(\t\"\x11\n\x0fPrepareResponse\"\xa6\x01\n\x15\x43ommitPreparedRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x0c\n\x04\x64tid\x18\x04 \x01(\t\"\x18\n\x16\x43ommitPreparedResponse\"\xc0\x01\n\x17RollbackPreparedRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x16\n\x0etransaction_id\x18\x04 \x01(\x03\x12\x0c\n\x04\x64tid\x18\x05 \x01(\t\"\x1a\n\x18RollbackPreparedResponse\"\xce\x01\n\x18\x43reateTransactionRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x0c\n\x04\x64tid\x18\x04 \x01(\t\x12#\n\x0cparticipants\x18\x05 \x03(\x0b\x32\r.query.Target\"\x1b\n\x19\x43reateTransactionResponse\"\xbb\x01\n\x12StartCommitRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x16\n\x0etransaction_id\x18\x04 \x01(\x03\x12\x0c\n\x04\x64tid\x18\x05 \x01(\t\"\x15\n\x13StartCommitResponse\"\xbb\x01\n\x12SetRollbackRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x16\n\x0etransaction_id\x18\x04 \x01(\x03\x12\x0c\n\x04\x64tid\x18\x05 \x01(\t\"\x15\n\x13SetRollbackResponse\"\xab\x01\n\x1a\x43oncludeTransactionRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x0c\n\x04\x64tid\x18\x04 \x01(\t\"\x1d\n\x1b\x43oncludeTransactionResponse\"\xa7\x01\n\x16ReadTransactionRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x0c\n\x04\x64tid\x18\x04 \x01(\t\"G\n\x17ReadTransactionResponse\x12,\n\x08metadata\x18\x01 \x01(\x0b\x32\x1a.query.TransactionMetadata\"\xe0\x01\n\x13\x42\x65ginExecuteRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12 \n\x05query\x18\x04 \x01(\x0b\x32\x11.query.BoundQuery\x12&\n\x07options\x18\x05 \x01(\x0b\x32\x15.query.ExecuteOptions\"r\n\x14\x42\x65ginExecuteResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12\"\n\x06result\x18\x02 \x01(\x0b\x32\x12.query.QueryResult\x12\x16\n\x0etransaction_id\x18\x03 \x01(\x03\"\xff\x01\n\x18\x42\x65ginExecuteBatchRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\"\n\x07queries\x18\x04 \x03(\x0b\x32\x11.query.BoundQuery\x12\x16\n\x0e\x61s_transaction\x18\x05 \x01(\x08\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\"x\n\x19\x42\x65ginExecuteBatchResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12#\n\x07results\x18\x02 \x03(\x0b\x32\x12.query.QueryResult\x12\x16\n\x0etransaction_id\x18\x03 \x01(\x03\"\xa5\x01\n\x14MessageStreamRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x0c\n\x04name\x18\x04 \x01(\t\";\n\x15MessageStreamResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"\xbd\x01\n\x11MessageAckRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x0c\n\x04name\x18\x04 \x01(\t\x12\x19\n\x03ids\x18\x05 \x03(\x0b\x32\x0c.query.Value\"8\n\x12MessageAckResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"\xe7\x02\n\x11SplitQueryRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12 \n\x05query\x18\x04 \x01(\x0b\x32\x11.query.BoundQuery\x12\x14\n\x0csplit_column\x18\x05 \x03(\t\x12\x13\n\x0bsplit_count\x18\x06 \x01(\x03\x12\x1f\n\x17num_rows_per_query_part\x18\x08 \x01(\x03\x12\x35\n\talgorithm\x18\t \x01(\x0e\x32\".query.SplitQueryRequest.Algorithm\",\n\tAlgorithm\x12\x10\n\x0c\x45QUAL_SPLITS\x10\x00\x12\r\n\tFULL_SCAN\x10\x01\"A\n\nQuerySplit\x12 \n\x05query\x18\x01 \x01(\x0b\x32\x11.query.BoundQuery\x12\x11\n\trow_count\x18\x02 \x01(\x03\"8\n\x12SplitQueryResponse\x12\"\n\x07queries\x18\x01 \x03(\x0b\x32\x11.query.QuerySplit\"\x15\n\x13StreamHealthRequest\"\xb6\x01\n\rRealtimeStats\x12\x14\n\x0chealth_error\x18\x01 \x01(\t\x12\x1d\n\x15seconds_behind_master\x18\x02 \x01(\r\x12\x1c\n\x14\x62inlog_players_count\x18\x03 \x01(\x05\x12\x32\n*seconds_behind_master_filtered_replication\x18\x04 \x01(\x03\x12\x11\n\tcpu_usage\x18\x05 \x01(\x01\x12\x0b\n\x03qps\x18\x06 \x01(\x01\"\x94\x01\n\x0e\x41ggregateStats\x12\x1c\n\x14healthy_tablet_count\x18\x01 \x01(\x05\x12\x1e\n\x16unhealthy_tablet_count\x18\x02 \x01(\x05\x12!\n\x19seconds_behind_master_min\x18\x03 \x01(\r\x12!\n\x19seconds_behind_master_max\x18\x04 \x01(\r\"\x81\x02\n\x14StreamHealthResponse\x12\x1d\n\x06target\x18\x01 \x01(\x0b\x32\r.query.Target\x12\x0f\n\x07serving\x18\x02 \x01(\x08\x12.\n&tablet_externally_reparented_timestamp\x18\x03 \x01(\x03\x12,\n\x0erealtime_stats\x18\x04 \x01(\x0b\x32\x14.query.RealtimeStats\x12.\n\x0f\x61ggregate_stats\x18\x06 \x01(\x0b\x32\x15.query.AggregateStats\x12+\n\x0ctablet_alias\x18\x05 \x01(\x0b\x32\x15.topodata.TabletAlias\"\xbb\x01\n\x13UpdateStreamRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x10\n\x08position\x18\x04 \x01(\t\x12\x11\n\ttimestamp\x18\x05 \x01(\x03\"9\n\x14UpdateStreamResponse\x12!\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x12.query.StreamEvent\"\x86\x01\n\x13TransactionMetadata\x12\x0c\n\x04\x64tid\x18\x01 \x01(\t\x12&\n\x05state\x18\x02 \x01(\x0e\x32\x17.query.TransactionState\x12\x14\n\x0ctime_created\x18\x03 \x01(\x03\x12#\n\x0cparticipants\x18\x04 \x03(\x0b\x32\r.query.Target*\x92\x03\n\tMySqlFlag\x12\t\n\x05\x45MPTY\x10\x00\x12\x11\n\rNOT_NULL_FLAG\x10\x01\x12\x10\n\x0cPRI_KEY_FLAG\x10\x02\x12\x13\n\x0fUNIQUE_KEY_FLAG\x10\x04\x12\x15\n\x11MULTIPLE_KEY_FLAG\x10\x08\x12\r\n\tBLOB_FLAG\x10\x10\x12\x11\n\rUNSIGNED_FLAG\x10 \x12\x11\n\rZEROFILL_FLAG\x10@\x12\x10\n\x0b\x42INARY_FLAG\x10\x80\x01\x12\x0e\n\tENUM_FLAG\x10\x80\x02\x12\x18\n\x13\x41UTO_INCREMENT_FLAG\x10\x80\x04\x12\x13\n\x0eTIMESTAMP_FLAG\x10\x80\x08\x12\r\n\x08SET_FLAG\x10\x80\x10\x12\x1a\n\x15NO_DEFAULT_VALUE_FLAG\x10\x80 \x12\x17\n\x12ON_UPDATE_NOW_FLAG\x10\x80@\x12\x0e\n\x08NUM_FLAG\x10\x80\x80\x02\x12\x13\n\rPART_KEY_FLAG\x10\x80\x80\x01\x12\x10\n\nGROUP_FLAG\x10\x80\x80\x02\x12\x11\n\x0bUNIQUE_FLAG\x10\x80\x80\x04\x12\x11\n\x0b\x42INCMP_FLAG\x10\x80\x80\x08\x1a\x02\x10\x01*k\n\x04\x46lag\x12\x08\n\x04NONE\x10\x00\x12\x0f\n\nISINTEGRAL\x10\x80\x02\x12\x0f\n\nISUNSIGNED\x10\x80\x04\x12\x0c\n\x07ISFLOAT\x10\x80\x08\x12\r\n\x08ISQUOTED\x10\x80\x10\x12\x0b\n\x06ISTEXT\x10\x80 \x12\r\n\x08ISBINARY\x10\x80@*\x99\x03\n\x04Type\x12\r\n\tNULL_TYPE\x10\x00\x12\t\n\x04INT8\x10\x81\x02\x12\n\n\x05UINT8\x10\x82\x06\x12\n\n\x05INT16\x10\x83\x02\x12\x0b\n\x06UINT16\x10\x84\x06\x12\n\n\x05INT24\x10\x85\x02\x12\x0b\n\x06UINT24\x10\x86\x06\x12\n\n\x05INT32\x10\x87\x02\x12\x0b\n\x06UINT32\x10\x88\x06\x12\n\n\x05INT64\x10\x89\x02\x12\x0b\n\x06UINT64\x10\x8a\x06\x12\x0c\n\x07\x46LOAT32\x10\x8b\x08\x12\x0c\n\x07\x46LOAT64\x10\x8c\x08\x12\x0e\n\tTIMESTAMP\x10\x8d\x10\x12\t\n\x04\x44\x41TE\x10\x8e\x10\x12\t\n\x04TIME\x10\x8f\x10\x12\r\n\x08\x44\x41TETIME\x10\x90\x10\x12\t\n\x04YEAR\x10\x91\x06\x12\x0b\n\x07\x44\x45\x43IMAL\x10\x12\x12\t\n\x04TEXT\x10\x93\x30\x12\t\n\x04\x42LOB\x10\x94P\x12\x0c\n\x07VARCHAR\x10\x95\x30\x12\x0e\n\tVARBINARY\x10\x96P\x12\t\n\x04\x43HAR\x10\x97\x30\x12\x0b\n\x06\x42INARY\x10\x98P\x12\x08\n\x03\x42IT\x10\x99\x10\x12\t\n\x04\x45NUM\x10\x9a\x10\x12\x08\n\x03SET\x10\x9b\x10\x12\t\n\x05TUPLE\x10\x1c\x12\r\n\x08GEOMETRY\x10\x9d\x10\x12\t\n\x04JSON\x10\x9e\x10\x12\x0e\n\nEXPRESSION\x10\x1f*F\n\x10TransactionState\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x0b\n\x07PREPARE\x10\x01\x12\n\n\x06\x43OMMIT\x10\x02\x12\x0c\n\x08ROLLBACK\x10\x03\x42\x11\n\x0fio.vitess.protob\x06proto3') + serialized_pb=_b('\n\x0bquery.proto\x12\x05query\x1a\x0etopodata.proto\x1a\x0bvtrpc.proto\"b\n\x06Target\x12\x10\n\x08keyspace\x18\x01 \x01(\t\x12\r\n\x05shard\x18\x02 \x01(\t\x12)\n\x0btablet_type\x18\x03 \x01(\x0e\x32\x14.topodata.TabletType\x12\x0c\n\x04\x63\x65ll\x18\x04 \x01(\t\"2\n\x0eVTGateCallerID\x12\x10\n\x08username\x18\x01 \x01(\t\x12\x0e\n\x06groups\x18\x02 \x03(\t\"@\n\nEventToken\x12\x11\n\ttimestamp\x18\x01 \x01(\x03\x12\r\n\x05shard\x18\x02 \x01(\t\x12\x10\n\x08position\x18\x03 \x01(\t\"1\n\x05Value\x12\x19\n\x04type\x18\x01 \x01(\x0e\x32\x0b.query.Type\x12\r\n\x05value\x18\x02 \x01(\x0c\"V\n\x0c\x42indVariable\x12\x19\n\x04type\x18\x01 \x01(\x0e\x32\x0b.query.Type\x12\r\n\x05value\x18\x02 \x01(\x0c\x12\x1c\n\x06values\x18\x03 \x03(\x0b\x32\x0c.query.Value\"\xa2\x01\n\nBoundQuery\x12\x0b\n\x03sql\x18\x01 \x01(\t\x12<\n\x0e\x62ind_variables\x18\x02 \x03(\x0b\x32$.query.BoundQuery.BindVariablesEntry\x1aI\n\x12\x42indVariablesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\"\n\x05value\x18\x02 \x01(\x0b\x32\x13.query.BindVariable:\x02\x38\x01\"\xe0\x04\n\x0e\x45xecuteOptions\x12\x1b\n\x13include_event_token\x18\x02 \x01(\x08\x12.\n\x13\x63ompare_event_token\x18\x03 \x01(\x0b\x32\x11.query.EventToken\x12=\n\x0fincluded_fields\x18\x04 \x01(\x0e\x32$.query.ExecuteOptions.IncludedFields\x12\x19\n\x11\x63lient_found_rows\x18\x05 \x01(\x08\x12\x30\n\x08workload\x18\x06 \x01(\x0e\x32\x1e.query.ExecuteOptions.Workload\x12\x18\n\x10sql_select_limit\x18\x08 \x01(\x03\x12I\n\x15transaction_isolation\x18\t \x01(\x0e\x32*.query.ExecuteOptions.TransactionIsolation\x12\x1d\n\x15skip_query_plan_cache\x18\n \x01(\x08\";\n\x0eIncludedFields\x12\x11\n\rTYPE_AND_NAME\x10\x00\x12\r\n\tTYPE_ONLY\x10\x01\x12\x07\n\x03\x41LL\x10\x02\"8\n\x08Workload\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\x08\n\x04OLTP\x10\x01\x12\x08\n\x04OLAP\x10\x02\x12\x07\n\x03\x44\x42\x41\x10\x03\"t\n\x14TransactionIsolation\x12\x0b\n\x07\x44\x45\x46\x41ULT\x10\x00\x12\x13\n\x0fREPEATABLE_READ\x10\x01\x12\x12\n\x0eREAD_COMMITTED\x10\x02\x12\x14\n\x10READ_UNCOMMITTED\x10\x03\x12\x10\n\x0cSERIALIZABLE\x10\x04J\x04\x08\x01\x10\x02\"\xbf\x01\n\x05\x46ield\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x19\n\x04type\x18\x02 \x01(\x0e\x32\x0b.query.Type\x12\r\n\x05table\x18\x03 \x01(\t\x12\x11\n\torg_table\x18\x04 \x01(\t\x12\x10\n\x08\x64\x61tabase\x18\x05 \x01(\t\x12\x10\n\x08org_name\x18\x06 \x01(\t\x12\x15\n\rcolumn_length\x18\x07 \x01(\r\x12\x0f\n\x07\x63harset\x18\x08 \x01(\r\x12\x10\n\x08\x64\x65\x63imals\x18\t \x01(\r\x12\r\n\x05\x66lags\x18\n \x01(\r\"&\n\x03Row\x12\x0f\n\x07lengths\x18\x01 \x03(\x12\x12\x0e\n\x06values\x18\x02 \x01(\x0c\"G\n\x0cResultExtras\x12&\n\x0b\x65vent_token\x18\x01 \x01(\x0b\x32\x11.query.EventToken\x12\x0f\n\x07\x66resher\x18\x02 \x01(\x08\"\x94\x01\n\x0bQueryResult\x12\x1c\n\x06\x66ields\x18\x01 \x03(\x0b\x32\x0c.query.Field\x12\x15\n\rrows_affected\x18\x02 \x01(\x04\x12\x11\n\tinsert_id\x18\x03 \x01(\x04\x12\x18\n\x04rows\x18\x04 \x03(\x0b\x32\n.query.Row\x12#\n\x06\x65xtras\x18\x05 \x01(\x0b\x32\x13.query.ResultExtras\"\xca\x02\n\x0bStreamEvent\x12\x30\n\nstatements\x18\x01 \x03(\x0b\x32\x1c.query.StreamEvent.Statement\x12&\n\x0b\x65vent_token\x18\x02 \x01(\x0b\x32\x11.query.EventToken\x1a\xe0\x01\n\tStatement\x12\x37\n\x08\x63\x61tegory\x18\x01 \x01(\x0e\x32%.query.StreamEvent.Statement.Category\x12\x12\n\ntable_name\x18\x02 \x01(\t\x12(\n\x12primary_key_fields\x18\x03 \x03(\x0b\x32\x0c.query.Field\x12&\n\x12primary_key_values\x18\x04 \x03(\x0b\x32\n.query.Row\x12\x0b\n\x03sql\x18\x05 \x01(\x0c\"\'\n\x08\x43\x61tegory\x12\t\n\x05\x45rror\x10\x00\x12\x07\n\x03\x44ML\x10\x01\x12\x07\n\x03\x44\x44L\x10\x02\"\xf3\x01\n\x0e\x45xecuteRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12 \n\x05query\x18\x04 \x01(\x0b\x32\x11.query.BoundQuery\x12\x16\n\x0etransaction_id\x18\x05 \x01(\x03\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\"5\n\x0f\x45xecuteResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"U\n\x0fResultWithError\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12\"\n\x06result\x18\x02 \x01(\x0b\x32\x12.query.QueryResult\"\x92\x02\n\x13\x45xecuteBatchRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\"\n\x07queries\x18\x04 \x03(\x0b\x32\x11.query.BoundQuery\x12\x16\n\x0e\x61s_transaction\x18\x05 \x01(\x08\x12\x16\n\x0etransaction_id\x18\x06 \x01(\x03\x12&\n\x07options\x18\x07 \x01(\x0b\x32\x15.query.ExecuteOptions\";\n\x14\x45xecuteBatchResponse\x12#\n\x07results\x18\x01 \x03(\x0b\x32\x12.query.QueryResult\"\xe1\x01\n\x14StreamExecuteRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12 \n\x05query\x18\x04 \x01(\x0b\x32\x11.query.BoundQuery\x12&\n\x07options\x18\x05 \x01(\x0b\x32\x15.query.ExecuteOptions\";\n\x15StreamExecuteResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"\xb7\x01\n\x0c\x42\x65ginRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12&\n\x07options\x18\x04 \x01(\x0b\x32\x15.query.ExecuteOptions\"\'\n\rBeginResponse\x12\x16\n\x0etransaction_id\x18\x01 \x01(\x03\"\xa8\x01\n\rCommitRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x16\n\x0etransaction_id\x18\x04 \x01(\x03\"\x10\n\x0e\x43ommitResponse\"\xaa\x01\n\x0fRollbackRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x16\n\x0etransaction_id\x18\x04 \x01(\x03\"\x12\n\x10RollbackResponse\"\xb7\x01\n\x0ePrepareRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x16\n\x0etransaction_id\x18\x04 \x01(\x03\x12\x0c\n\x04\x64tid\x18\x05 \x01(\t\"\x11\n\x0fPrepareResponse\"\xa6\x01\n\x15\x43ommitPreparedRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x0c\n\x04\x64tid\x18\x04 \x01(\t\"\x18\n\x16\x43ommitPreparedResponse\"\xc0\x01\n\x17RollbackPreparedRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x16\n\x0etransaction_id\x18\x04 \x01(\x03\x12\x0c\n\x04\x64tid\x18\x05 \x01(\t\"\x1a\n\x18RollbackPreparedResponse\"\xce\x01\n\x18\x43reateTransactionRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x0c\n\x04\x64tid\x18\x04 \x01(\t\x12#\n\x0cparticipants\x18\x05 \x03(\x0b\x32\r.query.Target\"\x1b\n\x19\x43reateTransactionResponse\"\xbb\x01\n\x12StartCommitRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x16\n\x0etransaction_id\x18\x04 \x01(\x03\x12\x0c\n\x04\x64tid\x18\x05 \x01(\t\"\x15\n\x13StartCommitResponse\"\xbb\x01\n\x12SetRollbackRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x16\n\x0etransaction_id\x18\x04 \x01(\x03\x12\x0c\n\x04\x64tid\x18\x05 \x01(\t\"\x15\n\x13SetRollbackResponse\"\xab\x01\n\x1a\x43oncludeTransactionRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x0c\n\x04\x64tid\x18\x04 \x01(\t\"\x1d\n\x1b\x43oncludeTransactionResponse\"\xa7\x01\n\x16ReadTransactionRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x0c\n\x04\x64tid\x18\x04 \x01(\t\"G\n\x17ReadTransactionResponse\x12,\n\x08metadata\x18\x01 \x01(\x0b\x32\x1a.query.TransactionMetadata\"\xe0\x01\n\x13\x42\x65ginExecuteRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12 \n\x05query\x18\x04 \x01(\x0b\x32\x11.query.BoundQuery\x12&\n\x07options\x18\x05 \x01(\x0b\x32\x15.query.ExecuteOptions\"r\n\x14\x42\x65ginExecuteResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12\"\n\x06result\x18\x02 \x01(\x0b\x32\x12.query.QueryResult\x12\x16\n\x0etransaction_id\x18\x03 \x01(\x03\"\xff\x01\n\x18\x42\x65ginExecuteBatchRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\"\n\x07queries\x18\x04 \x03(\x0b\x32\x11.query.BoundQuery\x12\x16\n\x0e\x61s_transaction\x18\x05 \x01(\x08\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\"x\n\x19\x42\x65ginExecuteBatchResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12#\n\x07results\x18\x02 \x03(\x0b\x32\x12.query.QueryResult\x12\x16\n\x0etransaction_id\x18\x03 \x01(\x03\"\xa5\x01\n\x14MessageStreamRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x0c\n\x04name\x18\x04 \x01(\t\";\n\x15MessageStreamResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"\xbd\x01\n\x11MessageAckRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x0c\n\x04name\x18\x04 \x01(\t\x12\x19\n\x03ids\x18\x05 \x03(\x0b\x32\x0c.query.Value\"8\n\x12MessageAckResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"\xe7\x02\n\x11SplitQueryRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12 \n\x05query\x18\x04 \x01(\x0b\x32\x11.query.BoundQuery\x12\x14\n\x0csplit_column\x18\x05 \x03(\t\x12\x13\n\x0bsplit_count\x18\x06 \x01(\x03\x12\x1f\n\x17num_rows_per_query_part\x18\x08 \x01(\x03\x12\x35\n\talgorithm\x18\t \x01(\x0e\x32\".query.SplitQueryRequest.Algorithm\",\n\tAlgorithm\x12\x10\n\x0c\x45QUAL_SPLITS\x10\x00\x12\r\n\tFULL_SCAN\x10\x01\"A\n\nQuerySplit\x12 \n\x05query\x18\x01 \x01(\x0b\x32\x11.query.BoundQuery\x12\x11\n\trow_count\x18\x02 \x01(\x03\"8\n\x12SplitQueryResponse\x12\"\n\x07queries\x18\x01 \x03(\x0b\x32\x11.query.QuerySplit\"\x15\n\x13StreamHealthRequest\"\xb6\x01\n\rRealtimeStats\x12\x14\n\x0chealth_error\x18\x01 \x01(\t\x12\x1d\n\x15seconds_behind_master\x18\x02 \x01(\r\x12\x1c\n\x14\x62inlog_players_count\x18\x03 \x01(\x05\x12\x32\n*seconds_behind_master_filtered_replication\x18\x04 \x01(\x03\x12\x11\n\tcpu_usage\x18\x05 \x01(\x01\x12\x0b\n\x03qps\x18\x06 \x01(\x01\"\x94\x01\n\x0e\x41ggregateStats\x12\x1c\n\x14healthy_tablet_count\x18\x01 \x01(\x05\x12\x1e\n\x16unhealthy_tablet_count\x18\x02 \x01(\x05\x12!\n\x19seconds_behind_master_min\x18\x03 \x01(\r\x12!\n\x19seconds_behind_master_max\x18\x04 \x01(\r\"\x81\x02\n\x14StreamHealthResponse\x12\x1d\n\x06target\x18\x01 \x01(\x0b\x32\r.query.Target\x12\x0f\n\x07serving\x18\x02 \x01(\x08\x12.\n&tablet_externally_reparented_timestamp\x18\x03 \x01(\x03\x12,\n\x0erealtime_stats\x18\x04 \x01(\x0b\x32\x14.query.RealtimeStats\x12.\n\x0f\x61ggregate_stats\x18\x06 \x01(\x0b\x32\x15.query.AggregateStats\x12+\n\x0ctablet_alias\x18\x05 \x01(\x0b\x32\x15.topodata.TabletAlias\"\xbb\x01\n\x13UpdateStreamRequest\x12,\n\x13\x65\x66\x66\x65\x63tive_caller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x32\n\x13immediate_caller_id\x18\x02 \x01(\x0b\x32\x15.query.VTGateCallerID\x12\x1d\n\x06target\x18\x03 \x01(\x0b\x32\r.query.Target\x12\x10\n\x08position\x18\x04 \x01(\t\x12\x11\n\ttimestamp\x18\x05 \x01(\x03\"9\n\x14UpdateStreamResponse\x12!\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x12.query.StreamEvent\"\x86\x01\n\x13TransactionMetadata\x12\x0c\n\x04\x64tid\x18\x01 \x01(\t\x12&\n\x05state\x18\x02 \x01(\x0e\x32\x17.query.TransactionState\x12\x14\n\x0ctime_created\x18\x03 \x01(\x03\x12#\n\x0cparticipants\x18\x04 \x03(\x0b\x32\r.query.Target*\x92\x03\n\tMySqlFlag\x12\t\n\x05\x45MPTY\x10\x00\x12\x11\n\rNOT_NULL_FLAG\x10\x01\x12\x10\n\x0cPRI_KEY_FLAG\x10\x02\x12\x13\n\x0fUNIQUE_KEY_FLAG\x10\x04\x12\x15\n\x11MULTIPLE_KEY_FLAG\x10\x08\x12\r\n\tBLOB_FLAG\x10\x10\x12\x11\n\rUNSIGNED_FLAG\x10 \x12\x11\n\rZEROFILL_FLAG\x10@\x12\x10\n\x0b\x42INARY_FLAG\x10\x80\x01\x12\x0e\n\tENUM_FLAG\x10\x80\x02\x12\x18\n\x13\x41UTO_INCREMENT_FLAG\x10\x80\x04\x12\x13\n\x0eTIMESTAMP_FLAG\x10\x80\x08\x12\r\n\x08SET_FLAG\x10\x80\x10\x12\x1a\n\x15NO_DEFAULT_VALUE_FLAG\x10\x80 \x12\x17\n\x12ON_UPDATE_NOW_FLAG\x10\x80@\x12\x0e\n\x08NUM_FLAG\x10\x80\x80\x02\x12\x13\n\rPART_KEY_FLAG\x10\x80\x80\x01\x12\x10\n\nGROUP_FLAG\x10\x80\x80\x02\x12\x11\n\x0bUNIQUE_FLAG\x10\x80\x80\x04\x12\x11\n\x0b\x42INCMP_FLAG\x10\x80\x80\x08\x1a\x02\x10\x01*k\n\x04\x46lag\x12\x08\n\x04NONE\x10\x00\x12\x0f\n\nISINTEGRAL\x10\x80\x02\x12\x0f\n\nISUNSIGNED\x10\x80\x04\x12\x0c\n\x07ISFLOAT\x10\x80\x08\x12\r\n\x08ISQUOTED\x10\x80\x10\x12\x0b\n\x06ISTEXT\x10\x80 \x12\r\n\x08ISBINARY\x10\x80@*\x99\x03\n\x04Type\x12\r\n\tNULL_TYPE\x10\x00\x12\t\n\x04INT8\x10\x81\x02\x12\n\n\x05UINT8\x10\x82\x06\x12\n\n\x05INT16\x10\x83\x02\x12\x0b\n\x06UINT16\x10\x84\x06\x12\n\n\x05INT24\x10\x85\x02\x12\x0b\n\x06UINT24\x10\x86\x06\x12\n\n\x05INT32\x10\x87\x02\x12\x0b\n\x06UINT32\x10\x88\x06\x12\n\n\x05INT64\x10\x89\x02\x12\x0b\n\x06UINT64\x10\x8a\x06\x12\x0c\n\x07\x46LOAT32\x10\x8b\x08\x12\x0c\n\x07\x46LOAT64\x10\x8c\x08\x12\x0e\n\tTIMESTAMP\x10\x8d\x10\x12\t\n\x04\x44\x41TE\x10\x8e\x10\x12\t\n\x04TIME\x10\x8f\x10\x12\r\n\x08\x44\x41TETIME\x10\x90\x10\x12\t\n\x04YEAR\x10\x91\x06\x12\x0b\n\x07\x44\x45\x43IMAL\x10\x12\x12\t\n\x04TEXT\x10\x93\x30\x12\t\n\x04\x42LOB\x10\x94P\x12\x0c\n\x07VARCHAR\x10\x95\x30\x12\x0e\n\tVARBINARY\x10\x96P\x12\t\n\x04\x43HAR\x10\x97\x30\x12\x0b\n\x06\x42INARY\x10\x98P\x12\x08\n\x03\x42IT\x10\x99\x10\x12\t\n\x04\x45NUM\x10\x9a\x10\x12\x08\n\x03SET\x10\x9b\x10\x12\t\n\x05TUPLE\x10\x1c\x12\r\n\x08GEOMETRY\x10\x9d\x10\x12\t\n\x04JSON\x10\x9e\x10\x12\x0e\n\nEXPRESSION\x10\x1f*F\n\x10TransactionState\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x0b\n\x07PREPARE\x10\x01\x12\n\n\x06\x43OMMIT\x10\x02\x12\x0c\n\x08ROLLBACK\x10\x03\x42\x35\n\x0fio.vitess.protoZ\"vitess.io/vitess/go/vt/proto/queryb\x06proto3') , dependencies=[topodata__pb2.DESCRIPTOR,vtrpc__pb2.DESCRIPTOR,]) @@ -3964,7 +3964,7 @@ DESCRIPTOR.has_options = True -DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('\n\017io.vitess.proto')) +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('\n\017io.vitess.protoZ\"vitess.io/vitess/go/vt/proto/query')) _MYSQLFLAG.has_options = True _MYSQLFLAG._options = _descriptor._ParseOptions(descriptor_pb2.EnumOptions(), _b('\020\001')) _BOUNDQUERY_BINDVARIABLESENTRY.has_options = True diff --git a/py/vtproto/queryservice_pb2.py b/py/vtproto/queryservice_pb2.py index 30250fe88cf..467e8b4dd44 100644 --- a/py/vtproto/queryservice_pb2.py +++ b/py/vtproto/queryservice_pb2.py @@ -20,7 +20,7 @@ name='queryservice.proto', package='queryservice', syntax='proto3', - serialized_pb=_b('\n\x12queryservice.proto\x12\x0cqueryservice\x1a\x0bquery.proto2\xa7\x0c\n\x05Query\x12:\n\x07\x45xecute\x12\x15.query.ExecuteRequest\x1a\x16.query.ExecuteResponse\"\x00\x12I\n\x0c\x45xecuteBatch\x12\x1a.query.ExecuteBatchRequest\x1a\x1b.query.ExecuteBatchResponse\"\x00\x12N\n\rStreamExecute\x12\x1b.query.StreamExecuteRequest\x1a\x1c.query.StreamExecuteResponse\"\x00\x30\x01\x12\x34\n\x05\x42\x65gin\x12\x13.query.BeginRequest\x1a\x14.query.BeginResponse\"\x00\x12\x37\n\x06\x43ommit\x12\x14.query.CommitRequest\x1a\x15.query.CommitResponse\"\x00\x12=\n\x08Rollback\x12\x16.query.RollbackRequest\x1a\x17.query.RollbackResponse\"\x00\x12:\n\x07Prepare\x12\x15.query.PrepareRequest\x1a\x16.query.PrepareResponse\"\x00\x12O\n\x0e\x43ommitPrepared\x12\x1c.query.CommitPreparedRequest\x1a\x1d.query.CommitPreparedResponse\"\x00\x12U\n\x10RollbackPrepared\x12\x1e.query.RollbackPreparedRequest\x1a\x1f.query.RollbackPreparedResponse\"\x00\x12X\n\x11\x43reateTransaction\x12\x1f.query.CreateTransactionRequest\x1a .query.CreateTransactionResponse\"\x00\x12\x46\n\x0bStartCommit\x12\x19.query.StartCommitRequest\x1a\x1a.query.StartCommitResponse\"\x00\x12\x46\n\x0bSetRollback\x12\x19.query.SetRollbackRequest\x1a\x1a.query.SetRollbackResponse\"\x00\x12^\n\x13\x43oncludeTransaction\x12!.query.ConcludeTransactionRequest\x1a\".query.ConcludeTransactionResponse\"\x00\x12R\n\x0fReadTransaction\x12\x1d.query.ReadTransactionRequest\x1a\x1e.query.ReadTransactionResponse\"\x00\x12I\n\x0c\x42\x65ginExecute\x12\x1a.query.BeginExecuteRequest\x1a\x1b.query.BeginExecuteResponse\"\x00\x12X\n\x11\x42\x65ginExecuteBatch\x12\x1f.query.BeginExecuteBatchRequest\x1a .query.BeginExecuteBatchResponse\"\x00\x12N\n\rMessageStream\x12\x1b.query.MessageStreamRequest\x1a\x1c.query.MessageStreamResponse\"\x00\x30\x01\x12\x43\n\nMessageAck\x12\x18.query.MessageAckRequest\x1a\x19.query.MessageAckResponse\"\x00\x12\x43\n\nSplitQuery\x12\x18.query.SplitQueryRequest\x1a\x19.query.SplitQueryResponse\"\x00\x12K\n\x0cStreamHealth\x12\x1a.query.StreamHealthRequest\x1a\x1b.query.StreamHealthResponse\"\x00\x30\x01\x12K\n\x0cUpdateStream\x12\x1a.query.UpdateStreamRequest\x1a\x1b.query.UpdateStreamResponse\"\x00\x30\x01\x62\x06proto3') + serialized_pb=_b('\n\x12queryservice.proto\x12\x0cqueryservice\x1a\x0bquery.proto2\xa7\x0c\n\x05Query\x12:\n\x07\x45xecute\x12\x15.query.ExecuteRequest\x1a\x16.query.ExecuteResponse\"\x00\x12I\n\x0c\x45xecuteBatch\x12\x1a.query.ExecuteBatchRequest\x1a\x1b.query.ExecuteBatchResponse\"\x00\x12N\n\rStreamExecute\x12\x1b.query.StreamExecuteRequest\x1a\x1c.query.StreamExecuteResponse\"\x00\x30\x01\x12\x34\n\x05\x42\x65gin\x12\x13.query.BeginRequest\x1a\x14.query.BeginResponse\"\x00\x12\x37\n\x06\x43ommit\x12\x14.query.CommitRequest\x1a\x15.query.CommitResponse\"\x00\x12=\n\x08Rollback\x12\x16.query.RollbackRequest\x1a\x17.query.RollbackResponse\"\x00\x12:\n\x07Prepare\x12\x15.query.PrepareRequest\x1a\x16.query.PrepareResponse\"\x00\x12O\n\x0e\x43ommitPrepared\x12\x1c.query.CommitPreparedRequest\x1a\x1d.query.CommitPreparedResponse\"\x00\x12U\n\x10RollbackPrepared\x12\x1e.query.RollbackPreparedRequest\x1a\x1f.query.RollbackPreparedResponse\"\x00\x12X\n\x11\x43reateTransaction\x12\x1f.query.CreateTransactionRequest\x1a .query.CreateTransactionResponse\"\x00\x12\x46\n\x0bStartCommit\x12\x19.query.StartCommitRequest\x1a\x1a.query.StartCommitResponse\"\x00\x12\x46\n\x0bSetRollback\x12\x19.query.SetRollbackRequest\x1a\x1a.query.SetRollbackResponse\"\x00\x12^\n\x13\x43oncludeTransaction\x12!.query.ConcludeTransactionRequest\x1a\".query.ConcludeTransactionResponse\"\x00\x12R\n\x0fReadTransaction\x12\x1d.query.ReadTransactionRequest\x1a\x1e.query.ReadTransactionResponse\"\x00\x12I\n\x0c\x42\x65ginExecute\x12\x1a.query.BeginExecuteRequest\x1a\x1b.query.BeginExecuteResponse\"\x00\x12X\n\x11\x42\x65ginExecuteBatch\x12\x1f.query.BeginExecuteBatchRequest\x1a .query.BeginExecuteBatchResponse\"\x00\x12N\n\rMessageStream\x12\x1b.query.MessageStreamRequest\x1a\x1c.query.MessageStreamResponse\"\x00\x30\x01\x12\x43\n\nMessageAck\x12\x18.query.MessageAckRequest\x1a\x19.query.MessageAckResponse\"\x00\x12\x43\n\nSplitQuery\x12\x18.query.SplitQueryRequest\x1a\x19.query.SplitQueryResponse\"\x00\x12K\n\x0cStreamHealth\x12\x1a.query.StreamHealthRequest\x1a\x1b.query.StreamHealthResponse\"\x00\x30\x01\x12K\n\x0cUpdateStream\x12\x1a.query.UpdateStreamRequest\x1a\x1b.query.UpdateStreamResponse\"\x00\x30\x01\x42+Z)vitess.io/vitess/go/vt/proto/queryserviceb\x06proto3') , dependencies=[query__pb2.DESCRIPTOR,]) @@ -29,6 +29,8 @@ _sym_db.RegisterFileDescriptor(DESCRIPTOR) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z)vitess.io/vitess/go/vt/proto/queryservice')) _QUERY = _descriptor.ServiceDescriptor( name='Query', diff --git a/py/vtproto/replicationdata_pb2.py b/py/vtproto/replicationdata_pb2.py index 23b51429530..e76d4591683 100644 --- a/py/vtproto/replicationdata_pb2.py +++ b/py/vtproto/replicationdata_pb2.py @@ -19,7 +19,7 @@ name='replicationdata.proto', package='replicationdata', syntax='proto3', - serialized_pb=_b('\n\x15replicationdata.proto\x12\x0freplicationdata\"\xb6\x01\n\x06Status\x12\x10\n\x08position\x18\x01 \x01(\t\x12\x18\n\x10slave_io_running\x18\x02 \x01(\x08\x12\x19\n\x11slave_sql_running\x18\x03 \x01(\x08\x12\x1d\n\x15seconds_behind_master\x18\x04 \x01(\r\x12\x13\n\x0bmaster_host\x18\x05 \x01(\t\x12\x13\n\x0bmaster_port\x18\x06 \x01(\x05\x12\x1c\n\x14master_connect_retry\x18\x07 \x01(\x05\x62\x06proto3') + serialized_pb=_b('\n\x15replicationdata.proto\x12\x0freplicationdata\"\xb6\x01\n\x06Status\x12\x10\n\x08position\x18\x01 \x01(\t\x12\x18\n\x10slave_io_running\x18\x02 \x01(\x08\x12\x19\n\x11slave_sql_running\x18\x03 \x01(\x08\x12\x1d\n\x15seconds_behind_master\x18\x04 \x01(\r\x12\x13\n\x0bmaster_host\x18\x05 \x01(\t\x12\x13\n\x0bmaster_port\x18\x06 \x01(\x05\x12\x1c\n\x14master_connect_retry\x18\x07 \x01(\x05\x42.Z,vitess.io/vitess/go/vt/proto/replicationdatab\x06proto3') ) @@ -108,4 +108,6 @@ _sym_db.RegisterMessage(Status) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z,vitess.io/vitess/go/vt/proto/replicationdata')) # @@protoc_insertion_point(module_scope) diff --git a/py/vtproto/tableacl_pb2.py b/py/vtproto/tableacl_pb2.py index c73978fe45a..cfdd8d0e63c 100644 --- a/py/vtproto/tableacl_pb2.py +++ b/py/vtproto/tableacl_pb2.py @@ -19,7 +19,7 @@ name='tableacl.proto', package='tableacl', syntax='proto3', - serialized_pb=_b('\n\x0etableacl.proto\x12\x08tableacl\"q\n\x0eTableGroupSpec\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x1f\n\x17table_names_or_prefixes\x18\x02 \x03(\t\x12\x0f\n\x07readers\x18\x03 \x03(\t\x12\x0f\n\x07writers\x18\x04 \x03(\t\x12\x0e\n\x06\x61\x64mins\x18\x05 \x03(\t\"8\n\x06\x43onfig\x12.\n\x0ctable_groups\x18\x01 \x03(\x0b\x32\x18.tableacl.TableGroupSpecb\x06proto3') + serialized_pb=_b('\n\x0etableacl.proto\x12\x08tableacl\"q\n\x0eTableGroupSpec\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x1f\n\x17table_names_or_prefixes\x18\x02 \x03(\t\x12\x0f\n\x07readers\x18\x03 \x03(\t\x12\x0f\n\x07writers\x18\x04 \x03(\t\x12\x0e\n\x06\x61\x64mins\x18\x05 \x03(\t\"8\n\x06\x43onfig\x12.\n\x0ctable_groups\x18\x01 \x03(\x0b\x32\x18.tableacl.TableGroupSpecB\'Z%vitess.io/vitess/go/vt/proto/tableaclb\x06proto3') ) @@ -134,4 +134,6 @@ _sym_db.RegisterMessage(Config) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z%vitess.io/vitess/go/vt/proto/tableacl')) # @@protoc_insertion_point(module_scope) diff --git a/py/vtproto/tabletmanagerdata_pb2.py b/py/vtproto/tabletmanagerdata_pb2.py index 2db4132e77e..fbde157f234 100644 --- a/py/vtproto/tabletmanagerdata_pb2.py +++ b/py/vtproto/tabletmanagerdata_pb2.py @@ -23,7 +23,7 @@ name='tabletmanagerdata.proto', package='tabletmanagerdata', syntax='proto3', - serialized_pb=_b('\n\x17tabletmanagerdata.proto\x12\x11tabletmanagerdata\x1a\x0bquery.proto\x1a\x0etopodata.proto\x1a\x15replicationdata.proto\x1a\rlogutil.proto\"\x93\x01\n\x0fTableDefinition\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\x0f\n\x07\x63olumns\x18\x03 \x03(\t\x12\x1b\n\x13primary_key_columns\x18\x04 \x03(\t\x12\x0c\n\x04type\x18\x05 \x01(\t\x12\x13\n\x0b\x64\x61ta_length\x18\x06 \x01(\x04\x12\x11\n\trow_count\x18\x07 \x01(\x04\"{\n\x10SchemaDefinition\x12\x17\n\x0f\x64\x61tabase_schema\x18\x01 \x01(\t\x12=\n\x11table_definitions\x18\x02 \x03(\x0b\x32\".tabletmanagerdata.TableDefinition\x12\x0f\n\x07version\x18\x03 \x01(\t\"\x8b\x01\n\x12SchemaChangeResult\x12:\n\rbefore_schema\x18\x01 \x01(\x0b\x32#.tabletmanagerdata.SchemaDefinition\x12\x39\n\x0c\x61\x66ter_schema\x18\x02 \x01(\x0b\x32#.tabletmanagerdata.SchemaDefinition\"\xc1\x01\n\x0eUserPermission\x12\x0c\n\x04host\x18\x01 \x01(\t\x12\x0c\n\x04user\x18\x02 \x01(\t\x12\x19\n\x11password_checksum\x18\x03 \x01(\x04\x12\x45\n\nprivileges\x18\x04 \x03(\x0b\x32\x31.tabletmanagerdata.UserPermission.PrivilegesEntry\x1a\x31\n\x0fPrivilegesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xae\x01\n\x0c\x44\x62Permission\x12\x0c\n\x04host\x18\x01 \x01(\t\x12\n\n\x02\x64\x62\x18\x02 \x01(\t\x12\x0c\n\x04user\x18\x03 \x01(\t\x12\x43\n\nprivileges\x18\x04 \x03(\x0b\x32/.tabletmanagerdata.DbPermission.PrivilegesEntry\x1a\x31\n\x0fPrivilegesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x83\x01\n\x0bPermissions\x12;\n\x10user_permissions\x18\x01 \x03(\x0b\x32!.tabletmanagerdata.UserPermission\x12\x37\n\x0e\x64\x62_permissions\x18\x02 \x03(\x0b\x32\x1f.tabletmanagerdata.DbPermission\",\n\x0b\x42lpPosition\x12\x0b\n\x03uid\x18\x01 \x01(\r\x12\x10\n\x08position\x18\x02 \x01(\t\"\x1e\n\x0bPingRequest\x12\x0f\n\x07payload\x18\x01 \x01(\t\"\x1f\n\x0cPingResponse\x12\x0f\n\x07payload\x18\x01 \x01(\t\" \n\x0cSleepRequest\x12\x10\n\x08\x64uration\x18\x01 \x01(\x03\"\x0f\n\rSleepResponse\"\xaf\x01\n\x12\x45xecuteHookRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x12\n\nparameters\x18\x02 \x03(\t\x12\x46\n\textra_env\x18\x03 \x03(\x0b\x32\x33.tabletmanagerdata.ExecuteHookRequest.ExtraEnvEntry\x1a/\n\rExtraEnvEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"J\n\x13\x45xecuteHookResponse\x12\x13\n\x0b\x65xit_status\x18\x01 \x01(\x03\x12\x0e\n\x06stdout\x18\x02 \x01(\t\x12\x0e\n\x06stderr\x18\x03 \x01(\t\"Q\n\x10GetSchemaRequest\x12\x0e\n\x06tables\x18\x01 \x03(\t\x12\x15\n\rinclude_views\x18\x02 \x01(\x08\x12\x16\n\x0e\x65xclude_tables\x18\x03 \x03(\t\"S\n\x11GetSchemaResponse\x12>\n\x11schema_definition\x18\x01 \x01(\x0b\x32#.tabletmanagerdata.SchemaDefinition\"\x17\n\x15GetPermissionsRequest\"M\n\x16GetPermissionsResponse\x12\x33\n\x0bpermissions\x18\x01 \x01(\x0b\x32\x1e.tabletmanagerdata.Permissions\"\x14\n\x12SetReadOnlyRequest\"\x15\n\x13SetReadOnlyResponse\"\x15\n\x13SetReadWriteRequest\"\x16\n\x14SetReadWriteResponse\">\n\x11\x43hangeTypeRequest\x12)\n\x0btablet_type\x18\x01 \x01(\x0e\x32\x14.topodata.TabletType\"\x14\n\x12\x43hangeTypeResponse\"\x15\n\x13RefreshStateRequest\"\x16\n\x14RefreshStateResponse\"\x17\n\x15RunHealthCheckRequest\"\x18\n\x16RunHealthCheckResponse\"+\n\x18IgnoreHealthErrorRequest\x12\x0f\n\x07pattern\x18\x01 \x01(\t\"\x1b\n\x19IgnoreHealthErrorResponse\",\n\x13ReloadSchemaRequest\x12\x15\n\rwait_position\x18\x01 \x01(\t\"\x16\n\x14ReloadSchemaResponse\")\n\x16PreflightSchemaRequest\x12\x0f\n\x07\x63hanges\x18\x01 \x03(\t\"X\n\x17PreflightSchemaResponse\x12=\n\x0e\x63hange_results\x18\x01 \x03(\x0b\x32%.tabletmanagerdata.SchemaChangeResult\"\xc2\x01\n\x12\x41pplySchemaRequest\x12\x0b\n\x03sql\x18\x01 \x01(\t\x12\r\n\x05\x66orce\x18\x02 \x01(\x08\x12\x19\n\x11\x61llow_replication\x18\x03 \x01(\x08\x12:\n\rbefore_schema\x18\x04 \x01(\x0b\x32#.tabletmanagerdata.SchemaDefinition\x12\x39\n\x0c\x61\x66ter_schema\x18\x05 \x01(\x0b\x32#.tabletmanagerdata.SchemaDefinition\"\x8c\x01\n\x13\x41pplySchemaResponse\x12:\n\rbefore_schema\x18\x01 \x01(\x0b\x32#.tabletmanagerdata.SchemaDefinition\x12\x39\n\x0c\x61\x66ter_schema\x18\x02 \x01(\x0b\x32#.tabletmanagerdata.SchemaDefinition\"|\n\x18\x45xecuteFetchAsDbaRequest\x12\r\n\x05query\x18\x01 \x01(\x0c\x12\x0f\n\x07\x64\x62_name\x18\x02 \x01(\t\x12\x10\n\x08max_rows\x18\x03 \x01(\x04\x12\x17\n\x0f\x64isable_binlogs\x18\x04 \x01(\x08\x12\x15\n\rreload_schema\x18\x05 \x01(\x08\"?\n\x19\x45xecuteFetchAsDbaResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"h\n\x1d\x45xecuteFetchAsAllPrivsRequest\x12\r\n\x05query\x18\x01 \x01(\x0c\x12\x0f\n\x07\x64\x62_name\x18\x02 \x01(\t\x12\x10\n\x08max_rows\x18\x03 \x01(\x04\x12\x15\n\rreload_schema\x18\x04 \x01(\x08\"D\n\x1e\x45xecuteFetchAsAllPrivsResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\";\n\x18\x45xecuteFetchAsAppRequest\x12\r\n\x05query\x18\x01 \x01(\x0c\x12\x10\n\x08max_rows\x18\x02 \x01(\x04\"?\n\x19\x45xecuteFetchAsAppResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"\x14\n\x12SlaveStatusRequest\">\n\x13SlaveStatusResponse\x12\'\n\x06status\x18\x01 \x01(\x0b\x32\x17.replicationdata.Status\"\x17\n\x15MasterPositionRequest\"*\n\x16MasterPositionResponse\x12\x10\n\x08position\x18\x01 \x01(\t\"\x12\n\x10StopSlaveRequest\"\x13\n\x11StopSlaveResponse\"A\n\x17StopSlaveMinimumRequest\x12\x10\n\x08position\x18\x01 \x01(\t\x12\x14\n\x0cwait_timeout\x18\x02 \x01(\x03\",\n\x18StopSlaveMinimumResponse\x12\x10\n\x08position\x18\x01 \x01(\t\"\x13\n\x11StartSlaveRequest\"\x14\n\x12StartSlaveResponse\"8\n!TabletExternallyReparentedRequest\x12\x13\n\x0b\x65xternal_id\x18\x01 \x01(\t\"$\n\"TabletExternallyReparentedResponse\" \n\x1eTabletExternallyElectedRequest\"!\n\x1fTabletExternallyElectedResponse\"\x12\n\x10GetSlavesRequest\"\"\n\x11GetSlavesResponse\x12\r\n\x05\x61\x64\x64rs\x18\x01 \x03(\t\"d\n\x16WaitBlpPositionRequest\x12\x34\n\x0c\x62lp_position\x18\x01 \x01(\x0b\x32\x1e.tabletmanagerdata.BlpPosition\x12\x14\n\x0cwait_timeout\x18\x02 \x01(\x03\"\x19\n\x17WaitBlpPositionResponse\"\x10\n\x0eStopBlpRequest\"H\n\x0fStopBlpResponse\x12\x35\n\rblp_positions\x18\x01 \x03(\x0b\x32\x1e.tabletmanagerdata.BlpPosition\"\x11\n\x0fStartBlpRequest\"\x12\n\x10StartBlpResponse\"a\n\x12RunBlpUntilRequest\x12\x35\n\rblp_positions\x18\x01 \x03(\x0b\x32\x1e.tabletmanagerdata.BlpPosition\x12\x14\n\x0cwait_timeout\x18\x02 \x01(\x03\"\'\n\x13RunBlpUntilResponse\x12\x10\n\x08position\x18\x01 \x01(\t\"\x19\n\x17ResetReplicationRequest\"\x1a\n\x18ResetReplicationResponse\"\x13\n\x11InitMasterRequest\"&\n\x12InitMasterResponse\x12\x10\n\x08position\x18\x01 \x01(\t\"\x99\x01\n\x1ePopulateReparentJournalRequest\x12\x17\n\x0ftime_created_ns\x18\x01 \x01(\x03\x12\x13\n\x0b\x61\x63tion_name\x18\x02 \x01(\t\x12+\n\x0cmaster_alias\x18\x03 \x01(\x0b\x32\x15.topodata.TabletAlias\x12\x1c\n\x14replication_position\x18\x04 \x01(\t\"!\n\x1fPopulateReparentJournalResponse\"p\n\x10InitSlaveRequest\x12%\n\x06parent\x18\x01 \x01(\x0b\x32\x15.topodata.TabletAlias\x12\x1c\n\x14replication_position\x18\x02 \x01(\t\x12\x17\n\x0ftime_created_ns\x18\x03 \x01(\x03\"\x13\n\x11InitSlaveResponse\"\x15\n\x13\x44\x65moteMasterRequest\"(\n\x14\x44\x65moteMasterResponse\x12\x10\n\x08position\x18\x01 \x01(\t\"3\n\x1fPromoteSlaveWhenCaughtUpRequest\x12\x10\n\x08position\x18\x01 \x01(\t\"4\n PromoteSlaveWhenCaughtUpResponse\x12\x10\n\x08position\x18\x01 \x01(\t\"\x19\n\x17SlaveWasPromotedRequest\"\x1a\n\x18SlaveWasPromotedResponse\"m\n\x10SetMasterRequest\x12%\n\x06parent\x18\x01 \x01(\x0b\x32\x15.topodata.TabletAlias\x12\x17\n\x0ftime_created_ns\x18\x02 \x01(\x03\x12\x19\n\x11\x66orce_start_slave\x18\x03 \x01(\x08\"\x13\n\x11SetMasterResponse\"A\n\x18SlaveWasRestartedRequest\x12%\n\x06parent\x18\x01 \x01(\x0b\x32\x15.topodata.TabletAlias\"\x1b\n\x19SlaveWasRestartedResponse\"$\n\"StopReplicationAndGetStatusRequest\"N\n#StopReplicationAndGetStatusResponse\x12\'\n\x06status\x18\x01 \x01(\x0b\x32\x17.replicationdata.Status\"\x15\n\x13PromoteSlaveRequest\"(\n\x14PromoteSlaveResponse\x12\x10\n\x08position\x18\x01 \x01(\t\"$\n\rBackupRequest\x12\x13\n\x0b\x63oncurrency\x18\x01 \x01(\x03\"/\n\x0e\x42\x61\x63kupResponse\x12\x1d\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x0e.logutil.Event\"\x1a\n\x18RestoreFromBackupRequest\":\n\x19RestoreFromBackupResponse\x12\x1d\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x0e.logutil.Eventb\x06proto3') + serialized_pb=_b('\n\x17tabletmanagerdata.proto\x12\x11tabletmanagerdata\x1a\x0bquery.proto\x1a\x0etopodata.proto\x1a\x15replicationdata.proto\x1a\rlogutil.proto\"\x93\x01\n\x0fTableDefinition\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x0e\n\x06schema\x18\x02 \x01(\t\x12\x0f\n\x07\x63olumns\x18\x03 \x03(\t\x12\x1b\n\x13primary_key_columns\x18\x04 \x03(\t\x12\x0c\n\x04type\x18\x05 \x01(\t\x12\x13\n\x0b\x64\x61ta_length\x18\x06 \x01(\x04\x12\x11\n\trow_count\x18\x07 \x01(\x04\"{\n\x10SchemaDefinition\x12\x17\n\x0f\x64\x61tabase_schema\x18\x01 \x01(\t\x12=\n\x11table_definitions\x18\x02 \x03(\x0b\x32\".tabletmanagerdata.TableDefinition\x12\x0f\n\x07version\x18\x03 \x01(\t\"\x8b\x01\n\x12SchemaChangeResult\x12:\n\rbefore_schema\x18\x01 \x01(\x0b\x32#.tabletmanagerdata.SchemaDefinition\x12\x39\n\x0c\x61\x66ter_schema\x18\x02 \x01(\x0b\x32#.tabletmanagerdata.SchemaDefinition\"\xc1\x01\n\x0eUserPermission\x12\x0c\n\x04host\x18\x01 \x01(\t\x12\x0c\n\x04user\x18\x02 \x01(\t\x12\x19\n\x11password_checksum\x18\x03 \x01(\x04\x12\x45\n\nprivileges\x18\x04 \x03(\x0b\x32\x31.tabletmanagerdata.UserPermission.PrivilegesEntry\x1a\x31\n\x0fPrivilegesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xae\x01\n\x0c\x44\x62Permission\x12\x0c\n\x04host\x18\x01 \x01(\t\x12\n\n\x02\x64\x62\x18\x02 \x01(\t\x12\x0c\n\x04user\x18\x03 \x01(\t\x12\x43\n\nprivileges\x18\x04 \x03(\x0b\x32/.tabletmanagerdata.DbPermission.PrivilegesEntry\x1a\x31\n\x0fPrivilegesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x83\x01\n\x0bPermissions\x12;\n\x10user_permissions\x18\x01 \x03(\x0b\x32!.tabletmanagerdata.UserPermission\x12\x37\n\x0e\x64\x62_permissions\x18\x02 \x03(\x0b\x32\x1f.tabletmanagerdata.DbPermission\",\n\x0b\x42lpPosition\x12\x0b\n\x03uid\x18\x01 \x01(\r\x12\x10\n\x08position\x18\x02 \x01(\t\"\x1e\n\x0bPingRequest\x12\x0f\n\x07payload\x18\x01 \x01(\t\"\x1f\n\x0cPingResponse\x12\x0f\n\x07payload\x18\x01 \x01(\t\" \n\x0cSleepRequest\x12\x10\n\x08\x64uration\x18\x01 \x01(\x03\"\x0f\n\rSleepResponse\"\xaf\x01\n\x12\x45xecuteHookRequest\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x12\n\nparameters\x18\x02 \x03(\t\x12\x46\n\textra_env\x18\x03 \x03(\x0b\x32\x33.tabletmanagerdata.ExecuteHookRequest.ExtraEnvEntry\x1a/\n\rExtraEnvEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"J\n\x13\x45xecuteHookResponse\x12\x13\n\x0b\x65xit_status\x18\x01 \x01(\x03\x12\x0e\n\x06stdout\x18\x02 \x01(\t\x12\x0e\n\x06stderr\x18\x03 \x01(\t\"Q\n\x10GetSchemaRequest\x12\x0e\n\x06tables\x18\x01 \x03(\t\x12\x15\n\rinclude_views\x18\x02 \x01(\x08\x12\x16\n\x0e\x65xclude_tables\x18\x03 \x03(\t\"S\n\x11GetSchemaResponse\x12>\n\x11schema_definition\x18\x01 \x01(\x0b\x32#.tabletmanagerdata.SchemaDefinition\"\x17\n\x15GetPermissionsRequest\"M\n\x16GetPermissionsResponse\x12\x33\n\x0bpermissions\x18\x01 \x01(\x0b\x32\x1e.tabletmanagerdata.Permissions\"\x14\n\x12SetReadOnlyRequest\"\x15\n\x13SetReadOnlyResponse\"\x15\n\x13SetReadWriteRequest\"\x16\n\x14SetReadWriteResponse\">\n\x11\x43hangeTypeRequest\x12)\n\x0btablet_type\x18\x01 \x01(\x0e\x32\x14.topodata.TabletType\"\x14\n\x12\x43hangeTypeResponse\"\x15\n\x13RefreshStateRequest\"\x16\n\x14RefreshStateResponse\"\x17\n\x15RunHealthCheckRequest\"\x18\n\x16RunHealthCheckResponse\"+\n\x18IgnoreHealthErrorRequest\x12\x0f\n\x07pattern\x18\x01 \x01(\t\"\x1b\n\x19IgnoreHealthErrorResponse\",\n\x13ReloadSchemaRequest\x12\x15\n\rwait_position\x18\x01 \x01(\t\"\x16\n\x14ReloadSchemaResponse\")\n\x16PreflightSchemaRequest\x12\x0f\n\x07\x63hanges\x18\x01 \x03(\t\"X\n\x17PreflightSchemaResponse\x12=\n\x0e\x63hange_results\x18\x01 \x03(\x0b\x32%.tabletmanagerdata.SchemaChangeResult\"\xc2\x01\n\x12\x41pplySchemaRequest\x12\x0b\n\x03sql\x18\x01 \x01(\t\x12\r\n\x05\x66orce\x18\x02 \x01(\x08\x12\x19\n\x11\x61llow_replication\x18\x03 \x01(\x08\x12:\n\rbefore_schema\x18\x04 \x01(\x0b\x32#.tabletmanagerdata.SchemaDefinition\x12\x39\n\x0c\x61\x66ter_schema\x18\x05 \x01(\x0b\x32#.tabletmanagerdata.SchemaDefinition\"\x8c\x01\n\x13\x41pplySchemaResponse\x12:\n\rbefore_schema\x18\x01 \x01(\x0b\x32#.tabletmanagerdata.SchemaDefinition\x12\x39\n\x0c\x61\x66ter_schema\x18\x02 \x01(\x0b\x32#.tabletmanagerdata.SchemaDefinition\"|\n\x18\x45xecuteFetchAsDbaRequest\x12\r\n\x05query\x18\x01 \x01(\x0c\x12\x0f\n\x07\x64\x62_name\x18\x02 \x01(\t\x12\x10\n\x08max_rows\x18\x03 \x01(\x04\x12\x17\n\x0f\x64isable_binlogs\x18\x04 \x01(\x08\x12\x15\n\rreload_schema\x18\x05 \x01(\x08\"?\n\x19\x45xecuteFetchAsDbaResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"h\n\x1d\x45xecuteFetchAsAllPrivsRequest\x12\r\n\x05query\x18\x01 \x01(\x0c\x12\x0f\n\x07\x64\x62_name\x18\x02 \x01(\t\x12\x10\n\x08max_rows\x18\x03 \x01(\x04\x12\x15\n\rreload_schema\x18\x04 \x01(\x08\"D\n\x1e\x45xecuteFetchAsAllPrivsResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\";\n\x18\x45xecuteFetchAsAppRequest\x12\r\n\x05query\x18\x01 \x01(\x0c\x12\x10\n\x08max_rows\x18\x02 \x01(\x04\"?\n\x19\x45xecuteFetchAsAppResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"\x14\n\x12SlaveStatusRequest\">\n\x13SlaveStatusResponse\x12\'\n\x06status\x18\x01 \x01(\x0b\x32\x17.replicationdata.Status\"\x17\n\x15MasterPositionRequest\"*\n\x16MasterPositionResponse\x12\x10\n\x08position\x18\x01 \x01(\t\"\x12\n\x10StopSlaveRequest\"\x13\n\x11StopSlaveResponse\"A\n\x17StopSlaveMinimumRequest\x12\x10\n\x08position\x18\x01 \x01(\t\x12\x14\n\x0cwait_timeout\x18\x02 \x01(\x03\",\n\x18StopSlaveMinimumResponse\x12\x10\n\x08position\x18\x01 \x01(\t\"\x13\n\x11StartSlaveRequest\"\x14\n\x12StartSlaveResponse\"8\n!TabletExternallyReparentedRequest\x12\x13\n\x0b\x65xternal_id\x18\x01 \x01(\t\"$\n\"TabletExternallyReparentedResponse\" \n\x1eTabletExternallyElectedRequest\"!\n\x1fTabletExternallyElectedResponse\"\x12\n\x10GetSlavesRequest\"\"\n\x11GetSlavesResponse\x12\r\n\x05\x61\x64\x64rs\x18\x01 \x03(\t\"d\n\x16WaitBlpPositionRequest\x12\x34\n\x0c\x62lp_position\x18\x01 \x01(\x0b\x32\x1e.tabletmanagerdata.BlpPosition\x12\x14\n\x0cwait_timeout\x18\x02 \x01(\x03\"\x19\n\x17WaitBlpPositionResponse\"\x10\n\x0eStopBlpRequest\"H\n\x0fStopBlpResponse\x12\x35\n\rblp_positions\x18\x01 \x03(\x0b\x32\x1e.tabletmanagerdata.BlpPosition\"\x11\n\x0fStartBlpRequest\"\x12\n\x10StartBlpResponse\"a\n\x12RunBlpUntilRequest\x12\x35\n\rblp_positions\x18\x01 \x03(\x0b\x32\x1e.tabletmanagerdata.BlpPosition\x12\x14\n\x0cwait_timeout\x18\x02 \x01(\x03\"\'\n\x13RunBlpUntilResponse\x12\x10\n\x08position\x18\x01 \x01(\t\"\x19\n\x17ResetReplicationRequest\"\x1a\n\x18ResetReplicationResponse\"\x13\n\x11InitMasterRequest\"&\n\x12InitMasterResponse\x12\x10\n\x08position\x18\x01 \x01(\t\"\x99\x01\n\x1ePopulateReparentJournalRequest\x12\x17\n\x0ftime_created_ns\x18\x01 \x01(\x03\x12\x13\n\x0b\x61\x63tion_name\x18\x02 \x01(\t\x12+\n\x0cmaster_alias\x18\x03 \x01(\x0b\x32\x15.topodata.TabletAlias\x12\x1c\n\x14replication_position\x18\x04 \x01(\t\"!\n\x1fPopulateReparentJournalResponse\"p\n\x10InitSlaveRequest\x12%\n\x06parent\x18\x01 \x01(\x0b\x32\x15.topodata.TabletAlias\x12\x1c\n\x14replication_position\x18\x02 \x01(\t\x12\x17\n\x0ftime_created_ns\x18\x03 \x01(\x03\"\x13\n\x11InitSlaveResponse\"\x15\n\x13\x44\x65moteMasterRequest\"(\n\x14\x44\x65moteMasterResponse\x12\x10\n\x08position\x18\x01 \x01(\t\"3\n\x1fPromoteSlaveWhenCaughtUpRequest\x12\x10\n\x08position\x18\x01 \x01(\t\"4\n PromoteSlaveWhenCaughtUpResponse\x12\x10\n\x08position\x18\x01 \x01(\t\"\x19\n\x17SlaveWasPromotedRequest\"\x1a\n\x18SlaveWasPromotedResponse\"m\n\x10SetMasterRequest\x12%\n\x06parent\x18\x01 \x01(\x0b\x32\x15.topodata.TabletAlias\x12\x17\n\x0ftime_created_ns\x18\x02 \x01(\x03\x12\x19\n\x11\x66orce_start_slave\x18\x03 \x01(\x08\"\x13\n\x11SetMasterResponse\"A\n\x18SlaveWasRestartedRequest\x12%\n\x06parent\x18\x01 \x01(\x0b\x32\x15.topodata.TabletAlias\"\x1b\n\x19SlaveWasRestartedResponse\"$\n\"StopReplicationAndGetStatusRequest\"N\n#StopReplicationAndGetStatusResponse\x12\'\n\x06status\x18\x01 \x01(\x0b\x32\x17.replicationdata.Status\"\x15\n\x13PromoteSlaveRequest\"(\n\x14PromoteSlaveResponse\x12\x10\n\x08position\x18\x01 \x01(\t\"$\n\rBackupRequest\x12\x13\n\x0b\x63oncurrency\x18\x01 \x01(\x03\"/\n\x0e\x42\x61\x63kupResponse\x12\x1d\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x0e.logutil.Event\"\x1a\n\x18RestoreFromBackupRequest\":\n\x19RestoreFromBackupResponse\x12\x1d\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x0e.logutil.EventB0Z.vitess.io/vitess/go/vt/proto/tabletmanagerdatab\x06proto3') , dependencies=[query__pb2.DESCRIPTOR,topodata__pb2.DESCRIPTOR,replicationdata__pb2.DESCRIPTOR,logutil__pb2.DESCRIPTOR,]) @@ -3791,6 +3791,8 @@ _sym_db.RegisterMessage(RestoreFromBackupResponse) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z.vitess.io/vitess/go/vt/proto/tabletmanagerdata')) _USERPERMISSION_PRIVILEGESENTRY.has_options = True _USERPERMISSION_PRIVILEGESENTRY._options = _descriptor._ParseOptions(descriptor_pb2.MessageOptions(), _b('8\001')) _DBPERMISSION_PRIVILEGESENTRY.has_options = True diff --git a/py/vtproto/tabletmanagerservice_pb2.py b/py/vtproto/tabletmanagerservice_pb2.py index 16102c29ef8..6040152a98e 100644 --- a/py/vtproto/tabletmanagerservice_pb2.py +++ b/py/vtproto/tabletmanagerservice_pb2.py @@ -20,7 +20,7 @@ name='tabletmanagerservice.proto', package='tabletmanagerservice', syntax='proto3', - serialized_pb=_b('\n\x1atabletmanagerservice.proto\x12\x14tabletmanagerservice\x1a\x17tabletmanagerdata.proto2\x9c\"\n\rTabletManager\x12I\n\x04Ping\x12\x1e.tabletmanagerdata.PingRequest\x1a\x1f.tabletmanagerdata.PingResponse\"\x00\x12L\n\x05Sleep\x12\x1f.tabletmanagerdata.SleepRequest\x1a .tabletmanagerdata.SleepResponse\"\x00\x12^\n\x0b\x45xecuteHook\x12%.tabletmanagerdata.ExecuteHookRequest\x1a&.tabletmanagerdata.ExecuteHookResponse\"\x00\x12X\n\tGetSchema\x12#.tabletmanagerdata.GetSchemaRequest\x1a$.tabletmanagerdata.GetSchemaResponse\"\x00\x12g\n\x0eGetPermissions\x12(.tabletmanagerdata.GetPermissionsRequest\x1a).tabletmanagerdata.GetPermissionsResponse\"\x00\x12^\n\x0bSetReadOnly\x12%.tabletmanagerdata.SetReadOnlyRequest\x1a&.tabletmanagerdata.SetReadOnlyResponse\"\x00\x12\x61\n\x0cSetReadWrite\x12&.tabletmanagerdata.SetReadWriteRequest\x1a\'.tabletmanagerdata.SetReadWriteResponse\"\x00\x12[\n\nChangeType\x12$.tabletmanagerdata.ChangeTypeRequest\x1a%.tabletmanagerdata.ChangeTypeResponse\"\x00\x12\x61\n\x0cRefreshState\x12&.tabletmanagerdata.RefreshStateRequest\x1a\'.tabletmanagerdata.RefreshStateResponse\"\x00\x12g\n\x0eRunHealthCheck\x12(.tabletmanagerdata.RunHealthCheckRequest\x1a).tabletmanagerdata.RunHealthCheckResponse\"\x00\x12p\n\x11IgnoreHealthError\x12+.tabletmanagerdata.IgnoreHealthErrorRequest\x1a,.tabletmanagerdata.IgnoreHealthErrorResponse\"\x00\x12\x61\n\x0cReloadSchema\x12&.tabletmanagerdata.ReloadSchemaRequest\x1a\'.tabletmanagerdata.ReloadSchemaResponse\"\x00\x12j\n\x0fPreflightSchema\x12).tabletmanagerdata.PreflightSchemaRequest\x1a*.tabletmanagerdata.PreflightSchemaResponse\"\x00\x12^\n\x0b\x41pplySchema\x12%.tabletmanagerdata.ApplySchemaRequest\x1a&.tabletmanagerdata.ApplySchemaResponse\"\x00\x12p\n\x11\x45xecuteFetchAsDba\x12+.tabletmanagerdata.ExecuteFetchAsDbaRequest\x1a,.tabletmanagerdata.ExecuteFetchAsDbaResponse\"\x00\x12\x7f\n\x16\x45xecuteFetchAsAllPrivs\x12\x30.tabletmanagerdata.ExecuteFetchAsAllPrivsRequest\x1a\x31.tabletmanagerdata.ExecuteFetchAsAllPrivsResponse\"\x00\x12p\n\x11\x45xecuteFetchAsApp\x12+.tabletmanagerdata.ExecuteFetchAsAppRequest\x1a,.tabletmanagerdata.ExecuteFetchAsAppResponse\"\x00\x12^\n\x0bSlaveStatus\x12%.tabletmanagerdata.SlaveStatusRequest\x1a&.tabletmanagerdata.SlaveStatusResponse\"\x00\x12g\n\x0eMasterPosition\x12(.tabletmanagerdata.MasterPositionRequest\x1a).tabletmanagerdata.MasterPositionResponse\"\x00\x12X\n\tStopSlave\x12#.tabletmanagerdata.StopSlaveRequest\x1a$.tabletmanagerdata.StopSlaveResponse\"\x00\x12m\n\x10StopSlaveMinimum\x12*.tabletmanagerdata.StopSlaveMinimumRequest\x1a+.tabletmanagerdata.StopSlaveMinimumResponse\"\x00\x12[\n\nStartSlave\x12$.tabletmanagerdata.StartSlaveRequest\x1a%.tabletmanagerdata.StartSlaveResponse\"\x00\x12\x8b\x01\n\x1aTabletExternallyReparented\x12\x34.tabletmanagerdata.TabletExternallyReparentedRequest\x1a\x35.tabletmanagerdata.TabletExternallyReparentedResponse\"\x00\x12\x82\x01\n\x17TabletExternallyElected\x12\x31.tabletmanagerdata.TabletExternallyElectedRequest\x1a\x32.tabletmanagerdata.TabletExternallyElectedResponse\"\x00\x12X\n\tGetSlaves\x12#.tabletmanagerdata.GetSlavesRequest\x1a$.tabletmanagerdata.GetSlavesResponse\"\x00\x12j\n\x0fWaitBlpPosition\x12).tabletmanagerdata.WaitBlpPositionRequest\x1a*.tabletmanagerdata.WaitBlpPositionResponse\"\x00\x12R\n\x07StopBlp\x12!.tabletmanagerdata.StopBlpRequest\x1a\".tabletmanagerdata.StopBlpResponse\"\x00\x12U\n\x08StartBlp\x12\".tabletmanagerdata.StartBlpRequest\x1a#.tabletmanagerdata.StartBlpResponse\"\x00\x12^\n\x0bRunBlpUntil\x12%.tabletmanagerdata.RunBlpUntilRequest\x1a&.tabletmanagerdata.RunBlpUntilResponse\"\x00\x12m\n\x10ResetReplication\x12*.tabletmanagerdata.ResetReplicationRequest\x1a+.tabletmanagerdata.ResetReplicationResponse\"\x00\x12[\n\nInitMaster\x12$.tabletmanagerdata.InitMasterRequest\x1a%.tabletmanagerdata.InitMasterResponse\"\x00\x12\x82\x01\n\x17PopulateReparentJournal\x12\x31.tabletmanagerdata.PopulateReparentJournalRequest\x1a\x32.tabletmanagerdata.PopulateReparentJournalResponse\"\x00\x12X\n\tInitSlave\x12#.tabletmanagerdata.InitSlaveRequest\x1a$.tabletmanagerdata.InitSlaveResponse\"\x00\x12\x61\n\x0c\x44\x65moteMaster\x12&.tabletmanagerdata.DemoteMasterRequest\x1a\'.tabletmanagerdata.DemoteMasterResponse\"\x00\x12\x85\x01\n\x18PromoteSlaveWhenCaughtUp\x12\x32.tabletmanagerdata.PromoteSlaveWhenCaughtUpRequest\x1a\x33.tabletmanagerdata.PromoteSlaveWhenCaughtUpResponse\"\x00\x12m\n\x10SlaveWasPromoted\x12*.tabletmanagerdata.SlaveWasPromotedRequest\x1a+.tabletmanagerdata.SlaveWasPromotedResponse\"\x00\x12X\n\tSetMaster\x12#.tabletmanagerdata.SetMasterRequest\x1a$.tabletmanagerdata.SetMasterResponse\"\x00\x12p\n\x11SlaveWasRestarted\x12+.tabletmanagerdata.SlaveWasRestartedRequest\x1a,.tabletmanagerdata.SlaveWasRestartedResponse\"\x00\x12\x8e\x01\n\x1bStopReplicationAndGetStatus\x12\x35.tabletmanagerdata.StopReplicationAndGetStatusRequest\x1a\x36.tabletmanagerdata.StopReplicationAndGetStatusResponse\"\x00\x12\x61\n\x0cPromoteSlave\x12&.tabletmanagerdata.PromoteSlaveRequest\x1a\'.tabletmanagerdata.PromoteSlaveResponse\"\x00\x12Q\n\x06\x42\x61\x63kup\x12 .tabletmanagerdata.BackupRequest\x1a!.tabletmanagerdata.BackupResponse\"\x00\x30\x01\x12r\n\x11RestoreFromBackup\x12+.tabletmanagerdata.RestoreFromBackupRequest\x1a,.tabletmanagerdata.RestoreFromBackupResponse\"\x00\x30\x01\x62\x06proto3') + serialized_pb=_b('\n\x1atabletmanagerservice.proto\x12\x14tabletmanagerservice\x1a\x17tabletmanagerdata.proto2\x9c\"\n\rTabletManager\x12I\n\x04Ping\x12\x1e.tabletmanagerdata.PingRequest\x1a\x1f.tabletmanagerdata.PingResponse\"\x00\x12L\n\x05Sleep\x12\x1f.tabletmanagerdata.SleepRequest\x1a .tabletmanagerdata.SleepResponse\"\x00\x12^\n\x0b\x45xecuteHook\x12%.tabletmanagerdata.ExecuteHookRequest\x1a&.tabletmanagerdata.ExecuteHookResponse\"\x00\x12X\n\tGetSchema\x12#.tabletmanagerdata.GetSchemaRequest\x1a$.tabletmanagerdata.GetSchemaResponse\"\x00\x12g\n\x0eGetPermissions\x12(.tabletmanagerdata.GetPermissionsRequest\x1a).tabletmanagerdata.GetPermissionsResponse\"\x00\x12^\n\x0bSetReadOnly\x12%.tabletmanagerdata.SetReadOnlyRequest\x1a&.tabletmanagerdata.SetReadOnlyResponse\"\x00\x12\x61\n\x0cSetReadWrite\x12&.tabletmanagerdata.SetReadWriteRequest\x1a\'.tabletmanagerdata.SetReadWriteResponse\"\x00\x12[\n\nChangeType\x12$.tabletmanagerdata.ChangeTypeRequest\x1a%.tabletmanagerdata.ChangeTypeResponse\"\x00\x12\x61\n\x0cRefreshState\x12&.tabletmanagerdata.RefreshStateRequest\x1a\'.tabletmanagerdata.RefreshStateResponse\"\x00\x12g\n\x0eRunHealthCheck\x12(.tabletmanagerdata.RunHealthCheckRequest\x1a).tabletmanagerdata.RunHealthCheckResponse\"\x00\x12p\n\x11IgnoreHealthError\x12+.tabletmanagerdata.IgnoreHealthErrorRequest\x1a,.tabletmanagerdata.IgnoreHealthErrorResponse\"\x00\x12\x61\n\x0cReloadSchema\x12&.tabletmanagerdata.ReloadSchemaRequest\x1a\'.tabletmanagerdata.ReloadSchemaResponse\"\x00\x12j\n\x0fPreflightSchema\x12).tabletmanagerdata.PreflightSchemaRequest\x1a*.tabletmanagerdata.PreflightSchemaResponse\"\x00\x12^\n\x0b\x41pplySchema\x12%.tabletmanagerdata.ApplySchemaRequest\x1a&.tabletmanagerdata.ApplySchemaResponse\"\x00\x12p\n\x11\x45xecuteFetchAsDba\x12+.tabletmanagerdata.ExecuteFetchAsDbaRequest\x1a,.tabletmanagerdata.ExecuteFetchAsDbaResponse\"\x00\x12\x7f\n\x16\x45xecuteFetchAsAllPrivs\x12\x30.tabletmanagerdata.ExecuteFetchAsAllPrivsRequest\x1a\x31.tabletmanagerdata.ExecuteFetchAsAllPrivsResponse\"\x00\x12p\n\x11\x45xecuteFetchAsApp\x12+.tabletmanagerdata.ExecuteFetchAsAppRequest\x1a,.tabletmanagerdata.ExecuteFetchAsAppResponse\"\x00\x12^\n\x0bSlaveStatus\x12%.tabletmanagerdata.SlaveStatusRequest\x1a&.tabletmanagerdata.SlaveStatusResponse\"\x00\x12g\n\x0eMasterPosition\x12(.tabletmanagerdata.MasterPositionRequest\x1a).tabletmanagerdata.MasterPositionResponse\"\x00\x12X\n\tStopSlave\x12#.tabletmanagerdata.StopSlaveRequest\x1a$.tabletmanagerdata.StopSlaveResponse\"\x00\x12m\n\x10StopSlaveMinimum\x12*.tabletmanagerdata.StopSlaveMinimumRequest\x1a+.tabletmanagerdata.StopSlaveMinimumResponse\"\x00\x12[\n\nStartSlave\x12$.tabletmanagerdata.StartSlaveRequest\x1a%.tabletmanagerdata.StartSlaveResponse\"\x00\x12\x8b\x01\n\x1aTabletExternallyReparented\x12\x34.tabletmanagerdata.TabletExternallyReparentedRequest\x1a\x35.tabletmanagerdata.TabletExternallyReparentedResponse\"\x00\x12\x82\x01\n\x17TabletExternallyElected\x12\x31.tabletmanagerdata.TabletExternallyElectedRequest\x1a\x32.tabletmanagerdata.TabletExternallyElectedResponse\"\x00\x12X\n\tGetSlaves\x12#.tabletmanagerdata.GetSlavesRequest\x1a$.tabletmanagerdata.GetSlavesResponse\"\x00\x12j\n\x0fWaitBlpPosition\x12).tabletmanagerdata.WaitBlpPositionRequest\x1a*.tabletmanagerdata.WaitBlpPositionResponse\"\x00\x12R\n\x07StopBlp\x12!.tabletmanagerdata.StopBlpRequest\x1a\".tabletmanagerdata.StopBlpResponse\"\x00\x12U\n\x08StartBlp\x12\".tabletmanagerdata.StartBlpRequest\x1a#.tabletmanagerdata.StartBlpResponse\"\x00\x12^\n\x0bRunBlpUntil\x12%.tabletmanagerdata.RunBlpUntilRequest\x1a&.tabletmanagerdata.RunBlpUntilResponse\"\x00\x12m\n\x10ResetReplication\x12*.tabletmanagerdata.ResetReplicationRequest\x1a+.tabletmanagerdata.ResetReplicationResponse\"\x00\x12[\n\nInitMaster\x12$.tabletmanagerdata.InitMasterRequest\x1a%.tabletmanagerdata.InitMasterResponse\"\x00\x12\x82\x01\n\x17PopulateReparentJournal\x12\x31.tabletmanagerdata.PopulateReparentJournalRequest\x1a\x32.tabletmanagerdata.PopulateReparentJournalResponse\"\x00\x12X\n\tInitSlave\x12#.tabletmanagerdata.InitSlaveRequest\x1a$.tabletmanagerdata.InitSlaveResponse\"\x00\x12\x61\n\x0c\x44\x65moteMaster\x12&.tabletmanagerdata.DemoteMasterRequest\x1a\'.tabletmanagerdata.DemoteMasterResponse\"\x00\x12\x85\x01\n\x18PromoteSlaveWhenCaughtUp\x12\x32.tabletmanagerdata.PromoteSlaveWhenCaughtUpRequest\x1a\x33.tabletmanagerdata.PromoteSlaveWhenCaughtUpResponse\"\x00\x12m\n\x10SlaveWasPromoted\x12*.tabletmanagerdata.SlaveWasPromotedRequest\x1a+.tabletmanagerdata.SlaveWasPromotedResponse\"\x00\x12X\n\tSetMaster\x12#.tabletmanagerdata.SetMasterRequest\x1a$.tabletmanagerdata.SetMasterResponse\"\x00\x12p\n\x11SlaveWasRestarted\x12+.tabletmanagerdata.SlaveWasRestartedRequest\x1a,.tabletmanagerdata.SlaveWasRestartedResponse\"\x00\x12\x8e\x01\n\x1bStopReplicationAndGetStatus\x12\x35.tabletmanagerdata.StopReplicationAndGetStatusRequest\x1a\x36.tabletmanagerdata.StopReplicationAndGetStatusResponse\"\x00\x12\x61\n\x0cPromoteSlave\x12&.tabletmanagerdata.PromoteSlaveRequest\x1a\'.tabletmanagerdata.PromoteSlaveResponse\"\x00\x12Q\n\x06\x42\x61\x63kup\x12 .tabletmanagerdata.BackupRequest\x1a!.tabletmanagerdata.BackupResponse\"\x00\x30\x01\x12r\n\x11RestoreFromBackup\x12+.tabletmanagerdata.RestoreFromBackupRequest\x1a,.tabletmanagerdata.RestoreFromBackupResponse\"\x00\x30\x01\x42\x33Z1vitess.io/vitess/go/vt/proto/tabletmanagerserviceb\x06proto3') , dependencies=[tabletmanagerdata__pb2.DESCRIPTOR,]) @@ -29,6 +29,8 @@ _sym_db.RegisterFileDescriptor(DESCRIPTOR) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z1vitess.io/vitess/go/vt/proto/tabletmanagerservice')) _TABLETMANAGER = _descriptor.ServiceDescriptor( name='TabletManager', diff --git a/py/vtproto/throttlerdata_pb2.py b/py/vtproto/throttlerdata_pb2.py index 6ec2e88b15b..5706e958988 100644 --- a/py/vtproto/throttlerdata_pb2.py +++ b/py/vtproto/throttlerdata_pb2.py @@ -19,7 +19,7 @@ name='throttlerdata.proto', package='throttlerdata', syntax='proto3', - serialized_pb=_b('\n\x13throttlerdata.proto\x12\rthrottlerdata\"\x11\n\x0fMaxRatesRequest\"{\n\x10MaxRatesResponse\x12\x39\n\x05rates\x18\x01 \x03(\x0b\x32*.throttlerdata.MaxRatesResponse.RatesEntry\x1a,\n\nRatesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x03:\x02\x38\x01\"!\n\x11SetMaxRateRequest\x12\x0c\n\x04rate\x18\x01 \x01(\x03\"#\n\x12SetMaxRateResponse\x12\r\n\x05names\x18\x01 \x03(\t\"\xe8\x03\n\rConfiguration\x12\"\n\x1atarget_replication_lag_sec\x18\x01 \x01(\x03\x12\x1f\n\x17max_replication_lag_sec\x18\x02 \x01(\x03\x12\x14\n\x0cinitial_rate\x18\x03 \x01(\x03\x12\x14\n\x0cmax_increase\x18\x04 \x01(\x01\x12\x1a\n\x12\x65mergency_decrease\x18\x05 \x01(\x01\x12*\n\"min_duration_between_increases_sec\x18\x06 \x01(\x03\x12*\n\"max_duration_between_increases_sec\x18\x07 \x01(\x03\x12*\n\"min_duration_between_decreases_sec\x18\x08 \x01(\x03\x12!\n\x19spread_backlog_across_sec\x18\t \x01(\x03\x12!\n\x19ignore_n_slowest_replicas\x18\n \x01(\x05\x12 \n\x18ignore_n_slowest_rdonlys\x18\x0b \x01(\x05\x12\x1e\n\x16\x61ge_bad_rate_after_sec\x18\x0c \x01(\x03\x12\x19\n\x11\x62\x61\x64_rate_increase\x18\r \x01(\x01\x12#\n\x1bmax_rate_approach_threshold\x18\x0e \x01(\x01\"1\n\x17GetConfigurationRequest\x12\x16\n\x0ethrottler_name\x18\x01 \x01(\t\"\xc4\x01\n\x18GetConfigurationResponse\x12S\n\x0e\x63onfigurations\x18\x01 \x03(\x0b\x32;.throttlerdata.GetConfigurationResponse.ConfigurationsEntry\x1aS\n\x13\x43onfigurationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12+\n\x05value\x18\x02 \x01(\x0b\x32\x1c.throttlerdata.Configuration:\x02\x38\x01\"\x83\x01\n\x1aUpdateConfigurationRequest\x12\x16\n\x0ethrottler_name\x18\x01 \x01(\t\x12\x33\n\rconfiguration\x18\x02 \x01(\x0b\x32\x1c.throttlerdata.Configuration\x12\x18\n\x10\x63opy_zero_values\x18\x03 \x01(\x08\",\n\x1bUpdateConfigurationResponse\x12\r\n\x05names\x18\x01 \x03(\t\"3\n\x19ResetConfigurationRequest\x12\x16\n\x0ethrottler_name\x18\x01 \x01(\t\"+\n\x1aResetConfigurationResponse\x12\r\n\x05names\x18\x01 \x03(\tb\x06proto3') + serialized_pb=_b('\n\x13throttlerdata.proto\x12\rthrottlerdata\"\x11\n\x0fMaxRatesRequest\"{\n\x10MaxRatesResponse\x12\x39\n\x05rates\x18\x01 \x03(\x0b\x32*.throttlerdata.MaxRatesResponse.RatesEntry\x1a,\n\nRatesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x03:\x02\x38\x01\"!\n\x11SetMaxRateRequest\x12\x0c\n\x04rate\x18\x01 \x01(\x03\"#\n\x12SetMaxRateResponse\x12\r\n\x05names\x18\x01 \x03(\t\"\xe8\x03\n\rConfiguration\x12\"\n\x1atarget_replication_lag_sec\x18\x01 \x01(\x03\x12\x1f\n\x17max_replication_lag_sec\x18\x02 \x01(\x03\x12\x14\n\x0cinitial_rate\x18\x03 \x01(\x03\x12\x14\n\x0cmax_increase\x18\x04 \x01(\x01\x12\x1a\n\x12\x65mergency_decrease\x18\x05 \x01(\x01\x12*\n\"min_duration_between_increases_sec\x18\x06 \x01(\x03\x12*\n\"max_duration_between_increases_sec\x18\x07 \x01(\x03\x12*\n\"min_duration_between_decreases_sec\x18\x08 \x01(\x03\x12!\n\x19spread_backlog_across_sec\x18\t \x01(\x03\x12!\n\x19ignore_n_slowest_replicas\x18\n \x01(\x05\x12 \n\x18ignore_n_slowest_rdonlys\x18\x0b \x01(\x05\x12\x1e\n\x16\x61ge_bad_rate_after_sec\x18\x0c \x01(\x03\x12\x19\n\x11\x62\x61\x64_rate_increase\x18\r \x01(\x01\x12#\n\x1bmax_rate_approach_threshold\x18\x0e \x01(\x01\"1\n\x17GetConfigurationRequest\x12\x16\n\x0ethrottler_name\x18\x01 \x01(\t\"\xc4\x01\n\x18GetConfigurationResponse\x12S\n\x0e\x63onfigurations\x18\x01 \x03(\x0b\x32;.throttlerdata.GetConfigurationResponse.ConfigurationsEntry\x1aS\n\x13\x43onfigurationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12+\n\x05value\x18\x02 \x01(\x0b\x32\x1c.throttlerdata.Configuration:\x02\x38\x01\"\x83\x01\n\x1aUpdateConfigurationRequest\x12\x16\n\x0ethrottler_name\x18\x01 \x01(\t\x12\x33\n\rconfiguration\x18\x02 \x01(\x0b\x32\x1c.throttlerdata.Configuration\x12\x18\n\x10\x63opy_zero_values\x18\x03 \x01(\x08\",\n\x1bUpdateConfigurationResponse\x12\r\n\x05names\x18\x01 \x03(\t\"3\n\x19ResetConfigurationRequest\x12\x16\n\x0ethrottler_name\x18\x01 \x01(\t\"+\n\x1aResetConfigurationResponse\x12\r\n\x05names\x18\x01 \x03(\tB,Z*vitess.io/vitess/go/vt/proto/throttlerdatab\x06proto3') ) @@ -650,6 +650,8 @@ _sym_db.RegisterMessage(ResetConfigurationResponse) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z*vitess.io/vitess/go/vt/proto/throttlerdata')) _MAXRATESRESPONSE_RATESENTRY.has_options = True _MAXRATESRESPONSE_RATESENTRY._options = _descriptor._ParseOptions(descriptor_pb2.MessageOptions(), _b('8\001')) _GETCONFIGURATIONRESPONSE_CONFIGURATIONSENTRY.has_options = True diff --git a/py/vtproto/throttlerservice_pb2.py b/py/vtproto/throttlerservice_pb2.py index 6cf724638ad..f4bdd95acb6 100644 --- a/py/vtproto/throttlerservice_pb2.py +++ b/py/vtproto/throttlerservice_pb2.py @@ -20,7 +20,7 @@ name='throttlerservice.proto', package='throttlerservice', syntax='proto3', - serialized_pb=_b('\n\x16throttlerservice.proto\x12\x10throttlerservice\x1a\x13throttlerdata.proto2\xf3\x03\n\tThrottler\x12M\n\x08MaxRates\x12\x1e.throttlerdata.MaxRatesRequest\x1a\x1f.throttlerdata.MaxRatesResponse\"\x00\x12S\n\nSetMaxRate\x12 .throttlerdata.SetMaxRateRequest\x1a!.throttlerdata.SetMaxRateResponse\"\x00\x12\x65\n\x10GetConfiguration\x12&.throttlerdata.GetConfigurationRequest\x1a\'.throttlerdata.GetConfigurationResponse\"\x00\x12n\n\x13UpdateConfiguration\x12).throttlerdata.UpdateConfigurationRequest\x1a*.throttlerdata.UpdateConfigurationResponse\"\x00\x12k\n\x12ResetConfiguration\x12(.throttlerdata.ResetConfigurationRequest\x1a).throttlerdata.ResetConfigurationResponse\"\x00\x62\x06proto3') + serialized_pb=_b('\n\x16throttlerservice.proto\x12\x10throttlerservice\x1a\x13throttlerdata.proto2\xf3\x03\n\tThrottler\x12M\n\x08MaxRates\x12\x1e.throttlerdata.MaxRatesRequest\x1a\x1f.throttlerdata.MaxRatesResponse\"\x00\x12S\n\nSetMaxRate\x12 .throttlerdata.SetMaxRateRequest\x1a!.throttlerdata.SetMaxRateResponse\"\x00\x12\x65\n\x10GetConfiguration\x12&.throttlerdata.GetConfigurationRequest\x1a\'.throttlerdata.GetConfigurationResponse\"\x00\x12n\n\x13UpdateConfiguration\x12).throttlerdata.UpdateConfigurationRequest\x1a*.throttlerdata.UpdateConfigurationResponse\"\x00\x12k\n\x12ResetConfiguration\x12(.throttlerdata.ResetConfigurationRequest\x1a).throttlerdata.ResetConfigurationResponse\"\x00\x42/Z-vitess.io/vitess/go/vt/proto/throttlerserviceb\x06proto3') , dependencies=[throttlerdata__pb2.DESCRIPTOR,]) @@ -29,6 +29,8 @@ _sym_db.RegisterFileDescriptor(DESCRIPTOR) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z-vitess.io/vitess/go/vt/proto/throttlerservice')) _THROTTLER = _descriptor.ServiceDescriptor( name='Throttler', diff --git a/py/vtproto/topodata_pb2.py b/py/vtproto/topodata_pb2.py index 86f0ad54671..019f81a5683 100644 --- a/py/vtproto/topodata_pb2.py +++ b/py/vtproto/topodata_pb2.py @@ -20,7 +20,7 @@ name='topodata.proto', package='topodata', syntax='proto3', - serialized_pb=_b('\n\x0etopodata.proto\x12\x08topodata\"&\n\x08KeyRange\x12\r\n\x05start\x18\x01 \x01(\x0c\x12\x0b\n\x03\x65nd\x18\x02 \x01(\x0c\"(\n\x0bTabletAlias\x12\x0c\n\x04\x63\x65ll\x18\x01 \x01(\t\x12\x0b\n\x03uid\x18\x02 \x01(\r\"\xb6\x03\n\x06Tablet\x12$\n\x05\x61lias\x18\x01 \x01(\x0b\x32\x15.topodata.TabletAlias\x12\x10\n\x08hostname\x18\x02 \x01(\t\x12/\n\x08port_map\x18\x04 \x03(\x0b\x32\x1d.topodata.Tablet.PortMapEntry\x12\x10\n\x08keyspace\x18\x05 \x01(\t\x12\r\n\x05shard\x18\x06 \x01(\t\x12%\n\tkey_range\x18\x07 \x01(\x0b\x32\x12.topodata.KeyRange\x12\"\n\x04type\x18\x08 \x01(\x0e\x32\x14.topodata.TabletType\x12\x18\n\x10\x64\x62_name_override\x18\t \x01(\t\x12(\n\x04tags\x18\n \x03(\x0b\x32\x1a.topodata.Tablet.TagsEntry\x12\x16\n\x0emysql_hostname\x18\x0c \x01(\t\x12\x12\n\nmysql_port\x18\r \x01(\x05\x1a.\n\x0cPortMapEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x1a+\n\tTagsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01J\x04\x08\x03\x10\x04J\x04\x08\x0b\x10\x0c\"\xcb\x04\n\x05Shard\x12+\n\x0cmaster_alias\x18\x01 \x01(\x0b\x32\x15.topodata.TabletAlias\x12%\n\tkey_range\x18\x02 \x01(\x0b\x32\x12.topodata.KeyRange\x12\x30\n\x0cserved_types\x18\x03 \x03(\x0b\x32\x1a.topodata.Shard.ServedType\x12\x32\n\rsource_shards\x18\x04 \x03(\x0b\x32\x1b.topodata.Shard.SourceShard\x12\r\n\x05\x63\x65lls\x18\x05 \x03(\t\x12\x36\n\x0ftablet_controls\x18\x06 \x03(\x0b\x32\x1d.topodata.Shard.TabletControl\x1a\x46\n\nServedType\x12)\n\x0btablet_type\x18\x01 \x01(\x0e\x32\x14.topodata.TabletType\x12\r\n\x05\x63\x65lls\x18\x02 \x03(\t\x1ar\n\x0bSourceShard\x12\x0b\n\x03uid\x18\x01 \x01(\r\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12\r\n\x05shard\x18\x03 \x01(\t\x12%\n\tkey_range\x18\x04 \x01(\x0b\x32\x12.topodata.KeyRange\x12\x0e\n\x06tables\x18\x05 \x03(\t\x1a\x84\x01\n\rTabletControl\x12)\n\x0btablet_type\x18\x01 \x01(\x0e\x32\x14.topodata.TabletType\x12\r\n\x05\x63\x65lls\x18\x02 \x03(\t\x12\x1d\n\x15\x64isable_query_service\x18\x03 \x01(\x08\x12\x1a\n\x12\x62lacklisted_tables\x18\x04 \x03(\t\"\xf5\x01\n\x08Keyspace\x12\x1c\n\x14sharding_column_name\x18\x01 \x01(\t\x12\x36\n\x14sharding_column_type\x18\x02 \x01(\x0e\x32\x18.topodata.KeyspaceIdType\x12\x33\n\x0cserved_froms\x18\x04 \x03(\x0b\x32\x1d.topodata.Keyspace.ServedFrom\x1aX\n\nServedFrom\x12)\n\x0btablet_type\x18\x01 \x01(\x0e\x32\x14.topodata.TabletType\x12\r\n\x05\x63\x65lls\x18\x02 \x03(\t\x12\x10\n\x08keyspace\x18\x03 \x01(\tJ\x04\x08\x03\x10\x04\"w\n\x10ShardReplication\x12.\n\x05nodes\x18\x01 \x03(\x0b\x32\x1f.topodata.ShardReplication.Node\x1a\x33\n\x04Node\x12+\n\x0ctablet_alias\x18\x01 \x01(\x0b\x32\x15.topodata.TabletAlias\"E\n\x0eShardReference\x12\x0c\n\x04name\x18\x01 \x01(\t\x12%\n\tkey_range\x18\x02 \x01(\x0b\x32\x12.topodata.KeyRange\"\x9c\x03\n\x0bSrvKeyspace\x12;\n\npartitions\x18\x01 \x03(\x0b\x32\'.topodata.SrvKeyspace.KeyspacePartition\x12\x1c\n\x14sharding_column_name\x18\x02 \x01(\t\x12\x36\n\x14sharding_column_type\x18\x03 \x01(\x0e\x32\x18.topodata.KeyspaceIdType\x12\x35\n\x0bserved_from\x18\x04 \x03(\x0b\x32 .topodata.SrvKeyspace.ServedFrom\x1ar\n\x11KeyspacePartition\x12)\n\x0bserved_type\x18\x01 \x01(\x0e\x32\x14.topodata.TabletType\x12\x32\n\x10shard_references\x18\x02 \x03(\x0b\x32\x18.topodata.ShardReference\x1aI\n\nServedFrom\x12)\n\x0btablet_type\x18\x01 \x01(\x0e\x32\x14.topodata.TabletType\x12\x10\n\x08keyspace\x18\x02 \x01(\tJ\x04\x08\x05\x10\x06\"@\n\x08\x43\x65llInfo\x12\x16\n\x0eserver_address\x18\x01 \x01(\t\x12\x0c\n\x04root\x18\x02 \x01(\t\x12\x0e\n\x06region\x18\x03 \x01(\t*2\n\x0eKeyspaceIdType\x12\t\n\x05UNSET\x10\x00\x12\n\n\x06UINT64\x10\x01\x12\t\n\x05\x42YTES\x10\x02*\x90\x01\n\nTabletType\x12\x0b\n\x07UNKNOWN\x10\x00\x12\n\n\x06MASTER\x10\x01\x12\x0b\n\x07REPLICA\x10\x02\x12\n\n\x06RDONLY\x10\x03\x12\t\n\x05\x42\x41TCH\x10\x03\x12\t\n\x05SPARE\x10\x04\x12\x10\n\x0c\x45XPERIMENTAL\x10\x05\x12\n\n\x06\x42\x41\x43KUP\x10\x06\x12\x0b\n\x07RESTORE\x10\x07\x12\x0b\n\x07\x44RAINED\x10\x08\x1a\x02\x10\x01\x42\x11\n\x0fio.vitess.protob\x06proto3') + serialized_pb=_b('\n\x0etopodata.proto\x12\x08topodata\"&\n\x08KeyRange\x12\r\n\x05start\x18\x01 \x01(\x0c\x12\x0b\n\x03\x65nd\x18\x02 \x01(\x0c\"(\n\x0bTabletAlias\x12\x0c\n\x04\x63\x65ll\x18\x01 \x01(\t\x12\x0b\n\x03uid\x18\x02 \x01(\r\"\xb6\x03\n\x06Tablet\x12$\n\x05\x61lias\x18\x01 \x01(\x0b\x32\x15.topodata.TabletAlias\x12\x10\n\x08hostname\x18\x02 \x01(\t\x12/\n\x08port_map\x18\x04 \x03(\x0b\x32\x1d.topodata.Tablet.PortMapEntry\x12\x10\n\x08keyspace\x18\x05 \x01(\t\x12\r\n\x05shard\x18\x06 \x01(\t\x12%\n\tkey_range\x18\x07 \x01(\x0b\x32\x12.topodata.KeyRange\x12\"\n\x04type\x18\x08 \x01(\x0e\x32\x14.topodata.TabletType\x12\x18\n\x10\x64\x62_name_override\x18\t \x01(\t\x12(\n\x04tags\x18\n \x03(\x0b\x32\x1a.topodata.Tablet.TagsEntry\x12\x16\n\x0emysql_hostname\x18\x0c \x01(\t\x12\x12\n\nmysql_port\x18\r \x01(\x05\x1a.\n\x0cPortMapEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\x05:\x02\x38\x01\x1a+\n\tTagsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01J\x04\x08\x03\x10\x04J\x04\x08\x0b\x10\x0c\"\xcb\x04\n\x05Shard\x12+\n\x0cmaster_alias\x18\x01 \x01(\x0b\x32\x15.topodata.TabletAlias\x12%\n\tkey_range\x18\x02 \x01(\x0b\x32\x12.topodata.KeyRange\x12\x30\n\x0cserved_types\x18\x03 \x03(\x0b\x32\x1a.topodata.Shard.ServedType\x12\x32\n\rsource_shards\x18\x04 \x03(\x0b\x32\x1b.topodata.Shard.SourceShard\x12\r\n\x05\x63\x65lls\x18\x05 \x03(\t\x12\x36\n\x0ftablet_controls\x18\x06 \x03(\x0b\x32\x1d.topodata.Shard.TabletControl\x1a\x46\n\nServedType\x12)\n\x0btablet_type\x18\x01 \x01(\x0e\x32\x14.topodata.TabletType\x12\r\n\x05\x63\x65lls\x18\x02 \x03(\t\x1ar\n\x0bSourceShard\x12\x0b\n\x03uid\x18\x01 \x01(\r\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12\r\n\x05shard\x18\x03 \x01(\t\x12%\n\tkey_range\x18\x04 \x01(\x0b\x32\x12.topodata.KeyRange\x12\x0e\n\x06tables\x18\x05 \x03(\t\x1a\x84\x01\n\rTabletControl\x12)\n\x0btablet_type\x18\x01 \x01(\x0e\x32\x14.topodata.TabletType\x12\r\n\x05\x63\x65lls\x18\x02 \x03(\t\x12\x1d\n\x15\x64isable_query_service\x18\x03 \x01(\x08\x12\x1a\n\x12\x62lacklisted_tables\x18\x04 \x03(\t\"\xf5\x01\n\x08Keyspace\x12\x1c\n\x14sharding_column_name\x18\x01 \x01(\t\x12\x36\n\x14sharding_column_type\x18\x02 \x01(\x0e\x32\x18.topodata.KeyspaceIdType\x12\x33\n\x0cserved_froms\x18\x04 \x03(\x0b\x32\x1d.topodata.Keyspace.ServedFrom\x1aX\n\nServedFrom\x12)\n\x0btablet_type\x18\x01 \x01(\x0e\x32\x14.topodata.TabletType\x12\r\n\x05\x63\x65lls\x18\x02 \x03(\t\x12\x10\n\x08keyspace\x18\x03 \x01(\tJ\x04\x08\x03\x10\x04\"w\n\x10ShardReplication\x12.\n\x05nodes\x18\x01 \x03(\x0b\x32\x1f.topodata.ShardReplication.Node\x1a\x33\n\x04Node\x12+\n\x0ctablet_alias\x18\x01 \x01(\x0b\x32\x15.topodata.TabletAlias\"E\n\x0eShardReference\x12\x0c\n\x04name\x18\x01 \x01(\t\x12%\n\tkey_range\x18\x02 \x01(\x0b\x32\x12.topodata.KeyRange\"\x9c\x03\n\x0bSrvKeyspace\x12;\n\npartitions\x18\x01 \x03(\x0b\x32\'.topodata.SrvKeyspace.KeyspacePartition\x12\x1c\n\x14sharding_column_name\x18\x02 \x01(\t\x12\x36\n\x14sharding_column_type\x18\x03 \x01(\x0e\x32\x18.topodata.KeyspaceIdType\x12\x35\n\x0bserved_from\x18\x04 \x03(\x0b\x32 .topodata.SrvKeyspace.ServedFrom\x1ar\n\x11KeyspacePartition\x12)\n\x0bserved_type\x18\x01 \x01(\x0e\x32\x14.topodata.TabletType\x12\x32\n\x10shard_references\x18\x02 \x03(\x0b\x32\x18.topodata.ShardReference\x1aI\n\nServedFrom\x12)\n\x0btablet_type\x18\x01 \x01(\x0e\x32\x14.topodata.TabletType\x12\x10\n\x08keyspace\x18\x02 \x01(\tJ\x04\x08\x05\x10\x06\"@\n\x08\x43\x65llInfo\x12\x16\n\x0eserver_address\x18\x01 \x01(\t\x12\x0c\n\x04root\x18\x02 \x01(\t\x12\x0e\n\x06region\x18\x03 \x01(\t*2\n\x0eKeyspaceIdType\x12\t\n\x05UNSET\x10\x00\x12\n\n\x06UINT64\x10\x01\x12\t\n\x05\x42YTES\x10\x02*\x90\x01\n\nTabletType\x12\x0b\n\x07UNKNOWN\x10\x00\x12\n\n\x06MASTER\x10\x01\x12\x0b\n\x07REPLICA\x10\x02\x12\n\n\x06RDONLY\x10\x03\x12\t\n\x05\x42\x41TCH\x10\x03\x12\t\n\x05SPARE\x10\x04\x12\x10\n\x0c\x45XPERIMENTAL\x10\x05\x12\n\n\x06\x42\x41\x43KUP\x10\x06\x12\x0b\n\x07RESTORE\x10\x07\x12\x0b\n\x07\x44RAINED\x10\x08\x1a\x02\x10\x01\x42\x38\n\x0fio.vitess.protoZ%vitess.io/vitess/go/vt/proto/topodatab\x06proto3') ) _KEYSPACEIDTYPE = _descriptor.EnumDescriptor( @@ -1126,7 +1126,7 @@ DESCRIPTOR.has_options = True -DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('\n\017io.vitess.proto')) +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('\n\017io.vitess.protoZ%vitess.io/vitess/go/vt/proto/topodata')) _TABLETTYPE.has_options = True _TABLETTYPE._options = _descriptor._ParseOptions(descriptor_pb2.EnumOptions(), _b('\020\001')) _TABLET_PORTMAPENTRY.has_options = True diff --git a/py/vtproto/vschema_pb2.py b/py/vtproto/vschema_pb2.py index c3d53478897..f516b73a840 100644 --- a/py/vtproto/vschema_pb2.py +++ b/py/vtproto/vschema_pb2.py @@ -20,7 +20,7 @@ name='vschema.proto', package='vschema', syntax='proto3', - serialized_pb=_b('\n\rvschema.proto\x12\x07vschema\x1a\x0bquery.proto\"\xfe\x01\n\x08Keyspace\x12\x0f\n\x07sharded\x18\x01 \x01(\x08\x12\x31\n\x08vindexes\x18\x02 \x03(\x0b\x32\x1f.vschema.Keyspace.VindexesEntry\x12-\n\x06tables\x18\x03 \x03(\x0b\x32\x1d.vschema.Keyspace.TablesEntry\x1a@\n\rVindexesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x1e\n\x05value\x18\x02 \x01(\x0b\x32\x0f.vschema.Vindex:\x02\x38\x01\x1a=\n\x0bTablesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x1d\n\x05value\x18\x02 \x01(\x0b\x32\x0e.vschema.Table:\x02\x38\x01\"\x81\x01\n\x06Vindex\x12\x0c\n\x04type\x18\x01 \x01(\t\x12+\n\x06params\x18\x02 \x03(\x0b\x32\x1b.vschema.Vindex.ParamsEntry\x12\r\n\x05owner\x18\x03 \x01(\t\x1a-\n\x0bParamsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x97\x01\n\x05Table\x12\x0c\n\x04type\x18\x01 \x01(\t\x12.\n\x0f\x63olumn_vindexes\x18\x02 \x03(\x0b\x32\x15.vschema.ColumnVindex\x12.\n\x0e\x61uto_increment\x18\x03 \x01(\x0b\x32\x16.vschema.AutoIncrement\x12 \n\x07\x63olumns\x18\x04 \x03(\x0b\x32\x0f.vschema.Column\"=\n\x0c\x43olumnVindex\x12\x0e\n\x06\x63olumn\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0f\n\x07\x63olumns\x18\x03 \x03(\t\"1\n\rAutoIncrement\x12\x0e\n\x06\x63olumn\x18\x01 \x01(\t\x12\x10\n\x08sequence\x18\x02 \x01(\t\"1\n\x06\x43olumn\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x19\n\x04type\x18\x02 \x01(\x0e\x32\x0b.query.Type\"\x88\x01\n\nSrvVSchema\x12\x35\n\tkeyspaces\x18\x01 \x03(\x0b\x32\".vschema.SrvVSchema.KeyspacesEntry\x1a\x43\n\x0eKeyspacesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12 \n\x05value\x18\x02 \x01(\x0b\x32\x11.vschema.Keyspace:\x02\x38\x01\x62\x06proto3') + serialized_pb=_b('\n\rvschema.proto\x12\x07vschema\x1a\x0bquery.proto\"\xfe\x01\n\x08Keyspace\x12\x0f\n\x07sharded\x18\x01 \x01(\x08\x12\x31\n\x08vindexes\x18\x02 \x03(\x0b\x32\x1f.vschema.Keyspace.VindexesEntry\x12-\n\x06tables\x18\x03 \x03(\x0b\x32\x1d.vschema.Keyspace.TablesEntry\x1a@\n\rVindexesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x1e\n\x05value\x18\x02 \x01(\x0b\x32\x0f.vschema.Vindex:\x02\x38\x01\x1a=\n\x0bTablesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x1d\n\x05value\x18\x02 \x01(\x0b\x32\x0e.vschema.Table:\x02\x38\x01\"\x81\x01\n\x06Vindex\x12\x0c\n\x04type\x18\x01 \x01(\t\x12+\n\x06params\x18\x02 \x03(\x0b\x32\x1b.vschema.Vindex.ParamsEntry\x12\r\n\x05owner\x18\x03 \x01(\t\x1a-\n\x0bParamsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x97\x01\n\x05Table\x12\x0c\n\x04type\x18\x01 \x01(\t\x12.\n\x0f\x63olumn_vindexes\x18\x02 \x03(\x0b\x32\x15.vschema.ColumnVindex\x12.\n\x0e\x61uto_increment\x18\x03 \x01(\x0b\x32\x16.vschema.AutoIncrement\x12 \n\x07\x63olumns\x18\x04 \x03(\x0b\x32\x0f.vschema.Column\"=\n\x0c\x43olumnVindex\x12\x0e\n\x06\x63olumn\x18\x01 \x01(\t\x12\x0c\n\x04name\x18\x02 \x01(\t\x12\x0f\n\x07\x63olumns\x18\x03 \x03(\t\"1\n\rAutoIncrement\x12\x0e\n\x06\x63olumn\x18\x01 \x01(\t\x12\x10\n\x08sequence\x18\x02 \x01(\t\"1\n\x06\x43olumn\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x19\n\x04type\x18\x02 \x01(\x0e\x32\x0b.query.Type\"\x88\x01\n\nSrvVSchema\x12\x35\n\tkeyspaces\x18\x01 \x03(\x0b\x32\".vschema.SrvVSchema.KeyspacesEntry\x1a\x43\n\x0eKeyspacesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12 \n\x05value\x18\x02 \x01(\x0b\x32\x11.vschema.Keyspace:\x02\x38\x01\x42&Z$vitess.io/vitess/go/vt/proto/vschemab\x06proto3') , dependencies=[query__pb2.DESCRIPTOR,]) @@ -574,6 +574,8 @@ _sym_db.RegisterMessage(SrvVSchema.KeyspacesEntry) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z$vitess.io/vitess/go/vt/proto/vschema')) _KEYSPACE_VINDEXESENTRY.has_options = True _KEYSPACE_VINDEXESENTRY._options = _descriptor._ParseOptions(descriptor_pb2.MessageOptions(), _b('8\001')) _KEYSPACE_TABLESENTRY.has_options = True diff --git a/py/vtproto/vtctldata_pb2.py b/py/vtproto/vtctldata_pb2.py index 82cd59aa0d1..766a844c18b 100644 --- a/py/vtproto/vtctldata_pb2.py +++ b/py/vtproto/vtctldata_pb2.py @@ -20,7 +20,7 @@ name='vtctldata.proto', package='vtctldata', syntax='proto3', - serialized_pb=_b('\n\x0fvtctldata.proto\x12\tvtctldata\x1a\rlogutil.proto\"B\n\x1a\x45xecuteVtctlCommandRequest\x12\x0c\n\x04\x61rgs\x18\x01 \x03(\t\x12\x16\n\x0e\x61\x63tion_timeout\x18\x02 \x01(\x03\"<\n\x1b\x45xecuteVtctlCommandResponse\x12\x1d\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x0e.logutil.Eventb\x06proto3') + serialized_pb=_b('\n\x0fvtctldata.proto\x12\tvtctldata\x1a\rlogutil.proto\"B\n\x1a\x45xecuteVtctlCommandRequest\x12\x0c\n\x04\x61rgs\x18\x01 \x03(\t\x12\x16\n\x0e\x61\x63tion_timeout\x18\x02 \x01(\x03\"<\n\x1b\x45xecuteVtctlCommandResponse\x12\x1d\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x0e.logutil.EventB(Z&vitess.io/vitess/go/vt/proto/vtctldatab\x06proto3') , dependencies=[logutil__pb2.DESCRIPTOR,]) @@ -115,4 +115,6 @@ _sym_db.RegisterMessage(ExecuteVtctlCommandResponse) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z&vitess.io/vitess/go/vt/proto/vtctldata')) # @@protoc_insertion_point(module_scope) diff --git a/py/vtproto/vtctlservice_pb2.py b/py/vtproto/vtctlservice_pb2.py index a4c6521f370..431d0ac193f 100644 --- a/py/vtproto/vtctlservice_pb2.py +++ b/py/vtproto/vtctlservice_pb2.py @@ -20,7 +20,7 @@ name='vtctlservice.proto', package='vtctlservice', syntax='proto3', - serialized_pb=_b('\n\x12vtctlservice.proto\x12\x0cvtctlservice\x1a\x0fvtctldata.proto2q\n\x05Vtctl\x12h\n\x13\x45xecuteVtctlCommand\x12%.vtctldata.ExecuteVtctlCommandRequest\x1a&.vtctldata.ExecuteVtctlCommandResponse\"\x00\x30\x01\x62\x06proto3') + serialized_pb=_b('\n\x12vtctlservice.proto\x12\x0cvtctlservice\x1a\x0fvtctldata.proto2q\n\x05Vtctl\x12h\n\x13\x45xecuteVtctlCommand\x12%.vtctldata.ExecuteVtctlCommandRequest\x1a&.vtctldata.ExecuteVtctlCommandResponse\"\x00\x30\x01\x42+Z)vitess.io/vitess/go/vt/proto/vtctlserviceb\x06proto3') , dependencies=[vtctldata__pb2.DESCRIPTOR,]) @@ -29,6 +29,8 @@ _sym_db.RegisterFileDescriptor(DESCRIPTOR) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z)vitess.io/vitess/go/vt/proto/vtctlservice')) _VTCTL = _descriptor.ServiceDescriptor( name='Vtctl', diff --git a/py/vtproto/vtgate_pb2.py b/py/vtproto/vtgate_pb2.py index 1dd880d9598..1bac1d2f560 100644 --- a/py/vtproto/vtgate_pb2.py +++ b/py/vtproto/vtgate_pb2.py @@ -23,7 +23,7 @@ name='vtgate.proto', package='vtgate', syntax='proto3', - serialized_pb=_b('\n\x0cvtgate.proto\x12\x06vtgate\x1a\x0bquery.proto\x1a\x0etopodata.proto\x1a\x0bvtrpc.proto\"\xb7\x02\n\x07Session\x12\x16\n\x0ein_transaction\x18\x01 \x01(\x08\x12\x34\n\x0eshard_sessions\x18\x02 \x03(\x0b\x32\x1c.vtgate.Session.ShardSession\x12\x11\n\tsingle_db\x18\x03 \x01(\x08\x12\x12\n\nautocommit\x18\x04 \x01(\x08\x12\x15\n\rtarget_string\x18\x05 \x01(\t\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\x12\x31\n\x10transaction_mode\x18\x07 \x01(\x0e\x32\x17.vtgate.TransactionMode\x1a\x45\n\x0cShardSession\x12\x1d\n\x06target\x18\x01 \x01(\x0b\x32\r.query.Target\x12\x16\n\x0etransaction_id\x18\x02 \x01(\x03\"\xff\x01\n\x0e\x45xecuteRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12 \n\x05query\x18\x03 \x01(\x0b\x32\x11.query.BoundQuery\x12)\n\x0btablet_type\x18\x04 \x01(\x0e\x32\x14.topodata.TabletType\x12\x1a\n\x12not_in_transaction\x18\x05 \x01(\x08\x12\x16\n\x0ekeyspace_shard\x18\x06 \x01(\t\x12&\n\x07options\x18\x07 \x01(\x0b\x32\x15.query.ExecuteOptions\"w\n\x0f\x45xecuteResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\"\n\x06result\x18\x03 \x01(\x0b\x32\x12.query.QueryResult\"\x8f\x02\n\x14\x45xecuteShardsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12 \n\x05query\x18\x03 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x04 \x01(\t\x12\x0e\n\x06shards\x18\x05 \x03(\t\x12)\n\x0btablet_type\x18\x06 \x01(\x0e\x32\x14.topodata.TabletType\x12\x1a\n\x12not_in_transaction\x18\x07 \x01(\x08\x12&\n\x07options\x18\x08 \x01(\x0b\x32\x15.query.ExecuteOptions\"}\n\x15\x45xecuteShardsResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\"\n\x06result\x18\x03 \x01(\x0b\x32\x12.query.QueryResult\"\x9a\x02\n\x19\x45xecuteKeyspaceIdsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12 \n\x05query\x18\x03 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x04 \x01(\t\x12\x14\n\x0ckeyspace_ids\x18\x05 \x03(\x0c\x12)\n\x0btablet_type\x18\x06 \x01(\x0e\x32\x14.topodata.TabletType\x12\x1a\n\x12not_in_transaction\x18\x07 \x01(\x08\x12&\n\x07options\x18\x08 \x01(\x0b\x32\x15.query.ExecuteOptions\"\x82\x01\n\x1a\x45xecuteKeyspaceIdsResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\"\n\x06result\x18\x03 \x01(\x0b\x32\x12.query.QueryResult\"\xaa\x02\n\x17\x45xecuteKeyRangesRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12 \n\x05query\x18\x03 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x04 \x01(\t\x12&\n\nkey_ranges\x18\x05 \x03(\x0b\x32\x12.topodata.KeyRange\x12)\n\x0btablet_type\x18\x06 \x01(\x0e\x32\x14.topodata.TabletType\x12\x1a\n\x12not_in_transaction\x18\x07 \x01(\x08\x12&\n\x07options\x18\x08 \x01(\x0b\x32\x15.query.ExecuteOptions\"\x80\x01\n\x18\x45xecuteKeyRangesResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\"\n\x06result\x18\x03 \x01(\x0b\x32\x12.query.QueryResult\"\xb0\x03\n\x17\x45xecuteEntityIdsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12 \n\x05query\x18\x03 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x04 \x01(\t\x12\x1a\n\x12\x65ntity_column_name\x18\x05 \x01(\t\x12\x45\n\x13\x65ntity_keyspace_ids\x18\x06 \x03(\x0b\x32(.vtgate.ExecuteEntityIdsRequest.EntityId\x12)\n\x0btablet_type\x18\x07 \x01(\x0e\x32\x14.topodata.TabletType\x12\x1a\n\x12not_in_transaction\x18\x08 \x01(\x08\x12&\n\x07options\x18\t \x01(\x0b\x32\x15.query.ExecuteOptions\x1aI\n\x08\x45ntityId\x12\x19\n\x04type\x18\x01 \x01(\x0e\x32\x0b.query.Type\x12\r\n\x05value\x18\x02 \x01(\x0c\x12\x13\n\x0bkeyspace_id\x18\x03 \x01(\x0c\"\x80\x01\n\x18\x45xecuteEntityIdsResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\"\n\x06result\x18\x03 \x01(\x0b\x32\x12.query.QueryResult\"\x82\x02\n\x13\x45xecuteBatchRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\"\n\x07queries\x18\x03 \x03(\x0b\x32\x11.query.BoundQuery\x12)\n\x0btablet_type\x18\x04 \x01(\x0e\x32\x14.topodata.TabletType\x12\x16\n\x0e\x61s_transaction\x18\x05 \x01(\x08\x12\x16\n\x0ekeyspace_shard\x18\x06 \x01(\t\x12&\n\x07options\x18\x07 \x01(\x0b\x32\x15.query.ExecuteOptions\"\x81\x01\n\x14\x45xecuteBatchResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\'\n\x07results\x18\x03 \x03(\x0b\x32\x16.query.ResultWithError\"U\n\x0f\x42oundShardQuery\x12 \n\x05query\x18\x01 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12\x0e\n\x06shards\x18\x03 \x03(\t\"\xf6\x01\n\x19\x45xecuteBatchShardsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12(\n\x07queries\x18\x03 \x03(\x0b\x32\x17.vtgate.BoundShardQuery\x12)\n\x0btablet_type\x18\x04 \x01(\x0e\x32\x14.topodata.TabletType\x12\x16\n\x0e\x61s_transaction\x18\x05 \x01(\x08\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\"\x83\x01\n\x1a\x45xecuteBatchShardsResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12#\n\x07results\x18\x03 \x03(\x0b\x32\x12.query.QueryResult\"`\n\x14\x42oundKeyspaceIdQuery\x12 \n\x05query\x18\x01 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12\x14\n\x0ckeyspace_ids\x18\x03 \x03(\x0c\"\x80\x02\n\x1e\x45xecuteBatchKeyspaceIdsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12-\n\x07queries\x18\x03 \x03(\x0b\x32\x1c.vtgate.BoundKeyspaceIdQuery\x12)\n\x0btablet_type\x18\x04 \x01(\x0e\x32\x14.topodata.TabletType\x12\x16\n\x0e\x61s_transaction\x18\x05 \x01(\x08\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\"\x88\x01\n\x1f\x45xecuteBatchKeyspaceIdsResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12#\n\x07results\x18\x03 \x03(\x0b\x32\x12.query.QueryResult\"\xe9\x01\n\x14StreamExecuteRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x05query\x18\x02 \x01(\x0b\x32\x11.query.BoundQuery\x12)\n\x0btablet_type\x18\x03 \x01(\x0e\x32\x14.topodata.TabletType\x12\x16\n\x0ekeyspace_shard\x18\x04 \x01(\t\x12&\n\x07options\x18\x05 \x01(\x0b\x32\x15.query.ExecuteOptions\x12 \n\x07session\x18\x06 \x01(\x0b\x32\x0f.vtgate.Session\";\n\x15StreamExecuteResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"\xd7\x01\n\x1aStreamExecuteShardsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x05query\x18\x02 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x03 \x01(\t\x12\x0e\n\x06shards\x18\x04 \x03(\t\x12)\n\x0btablet_type\x18\x05 \x01(\x0e\x32\x14.topodata.TabletType\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\"A\n\x1bStreamExecuteShardsResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"\xe2\x01\n\x1fStreamExecuteKeyspaceIdsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x05query\x18\x02 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x03 \x01(\t\x12\x14\n\x0ckeyspace_ids\x18\x04 \x03(\x0c\x12)\n\x0btablet_type\x18\x05 \x01(\x0e\x32\x14.topodata.TabletType\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\"F\n StreamExecuteKeyspaceIdsResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"\xf2\x01\n\x1dStreamExecuteKeyRangesRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x05query\x18\x02 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x03 \x01(\t\x12&\n\nkey_ranges\x18\x04 \x03(\x0b\x32\x12.topodata.KeyRange\x12)\n\x0btablet_type\x18\x05 \x01(\x0e\x32\x14.topodata.TabletType\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\"D\n\x1eStreamExecuteKeyRangesResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"E\n\x0c\x42\x65ginRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x11\n\tsingle_db\x18\x02 \x01(\x08\"1\n\rBeginResponse\x12 \n\x07session\x18\x01 \x01(\x0b\x32\x0f.vtgate.Session\"e\n\rCommitRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\x0e\n\x06\x61tomic\x18\x03 \x01(\x08\"\x10\n\x0e\x43ommitResponse\"W\n\x0fRollbackRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\"\x12\n\x10RollbackResponse\"M\n\x19ResolveTransactionRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x0c\n\x04\x64tid\x18\x02 \x01(\t\"\x90\x01\n\x14MessageStreamRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12\r\n\x05shard\x18\x03 \x01(\t\x12%\n\tkey_range\x18\x04 \x01(\x0b\x32\x12.topodata.KeyRange\x12\x0c\n\x04name\x18\x05 \x01(\t\"r\n\x11MessageAckRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x19\n\x03ids\x18\x04 \x03(\x0b\x32\x0c.query.Value\"=\n\x0cIdKeyspaceId\x12\x18\n\x02id\x18\x01 \x01(\x0b\x32\x0c.query.Value\x12\x13\n\x0bkeyspace_id\x18\x02 \x01(\x0c\"\x91\x01\n\x1cMessageAckKeyspaceIdsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12-\n\x0fid_keyspace_ids\x18\x04 \x03(\x0b\x32\x14.vtgate.IdKeyspaceId\"\x1c\n\x1aResolveTransactionResponse\"\x8a\x02\n\x11SplitQueryRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12 \n\x05query\x18\x03 \x01(\x0b\x32\x11.query.BoundQuery\x12\x14\n\x0csplit_column\x18\x04 \x03(\t\x12\x13\n\x0bsplit_count\x18\x05 \x01(\x03\x12\x1f\n\x17num_rows_per_query_part\x18\x06 \x01(\x03\x12\x35\n\talgorithm\x18\x07 \x01(\x0e\x32\".query.SplitQueryRequest.Algorithm\x12\x1a\n\x12use_split_query_v2\x18\x08 \x01(\x08\"\xf2\x02\n\x12SplitQueryResponse\x12/\n\x06splits\x18\x01 \x03(\x0b\x32\x1f.vtgate.SplitQueryResponse.Part\x1aH\n\x0cKeyRangePart\x12\x10\n\x08keyspace\x18\x01 \x01(\t\x12&\n\nkey_ranges\x18\x02 \x03(\x0b\x32\x12.topodata.KeyRange\x1a-\n\tShardPart\x12\x10\n\x08keyspace\x18\x01 \x01(\t\x12\x0e\n\x06shards\x18\x02 \x03(\t\x1a\xb1\x01\n\x04Part\x12 \n\x05query\x18\x01 \x01(\x0b\x32\x11.query.BoundQuery\x12?\n\x0ekey_range_part\x18\x02 \x01(\x0b\x32\'.vtgate.SplitQueryResponse.KeyRangePart\x12\x38\n\nshard_part\x18\x03 \x01(\x0b\x32$.vtgate.SplitQueryResponse.ShardPart\x12\x0c\n\x04size\x18\x04 \x01(\x03\")\n\x15GetSrvKeyspaceRequest\x12\x10\n\x08keyspace\x18\x01 \x01(\t\"E\n\x16GetSrvKeyspaceResponse\x12+\n\x0csrv_keyspace\x18\x01 \x01(\x0b\x32\x15.topodata.SrvKeyspace\"\xe1\x01\n\x13UpdateStreamRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12\r\n\x05shard\x18\x03 \x01(\t\x12%\n\tkey_range\x18\x04 \x01(\x0b\x32\x12.topodata.KeyRange\x12)\n\x0btablet_type\x18\x05 \x01(\x0e\x32\x14.topodata.TabletType\x12\x11\n\ttimestamp\x18\x06 \x01(\x03\x12 \n\x05\x65vent\x18\x07 \x01(\x0b\x32\x11.query.EventToken\"S\n\x14UpdateStreamResponse\x12!\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x12.query.StreamEvent\x12\x18\n\x10resume_timestamp\x18\x02 \x01(\x03*D\n\x0fTransactionMode\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\n\n\x06SINGLE\x10\x01\x12\t\n\x05MULTI\x10\x02\x12\t\n\x05TWOPC\x10\x03\x42\x11\n\x0fio.vitess.protob\x06proto3') + serialized_pb=_b('\n\x0cvtgate.proto\x12\x06vtgate\x1a\x0bquery.proto\x1a\x0etopodata.proto\x1a\x0bvtrpc.proto\"\xb7\x02\n\x07Session\x12\x16\n\x0ein_transaction\x18\x01 \x01(\x08\x12\x34\n\x0eshard_sessions\x18\x02 \x03(\x0b\x32\x1c.vtgate.Session.ShardSession\x12\x11\n\tsingle_db\x18\x03 \x01(\x08\x12\x12\n\nautocommit\x18\x04 \x01(\x08\x12\x15\n\rtarget_string\x18\x05 \x01(\t\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\x12\x31\n\x10transaction_mode\x18\x07 \x01(\x0e\x32\x17.vtgate.TransactionMode\x1a\x45\n\x0cShardSession\x12\x1d\n\x06target\x18\x01 \x01(\x0b\x32\r.query.Target\x12\x16\n\x0etransaction_id\x18\x02 \x01(\x03\"\xff\x01\n\x0e\x45xecuteRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12 \n\x05query\x18\x03 \x01(\x0b\x32\x11.query.BoundQuery\x12)\n\x0btablet_type\x18\x04 \x01(\x0e\x32\x14.topodata.TabletType\x12\x1a\n\x12not_in_transaction\x18\x05 \x01(\x08\x12\x16\n\x0ekeyspace_shard\x18\x06 \x01(\t\x12&\n\x07options\x18\x07 \x01(\x0b\x32\x15.query.ExecuteOptions\"w\n\x0f\x45xecuteResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\"\n\x06result\x18\x03 \x01(\x0b\x32\x12.query.QueryResult\"\x8f\x02\n\x14\x45xecuteShardsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12 \n\x05query\x18\x03 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x04 \x01(\t\x12\x0e\n\x06shards\x18\x05 \x03(\t\x12)\n\x0btablet_type\x18\x06 \x01(\x0e\x32\x14.topodata.TabletType\x12\x1a\n\x12not_in_transaction\x18\x07 \x01(\x08\x12&\n\x07options\x18\x08 \x01(\x0b\x32\x15.query.ExecuteOptions\"}\n\x15\x45xecuteShardsResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\"\n\x06result\x18\x03 \x01(\x0b\x32\x12.query.QueryResult\"\x9a\x02\n\x19\x45xecuteKeyspaceIdsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12 \n\x05query\x18\x03 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x04 \x01(\t\x12\x14\n\x0ckeyspace_ids\x18\x05 \x03(\x0c\x12)\n\x0btablet_type\x18\x06 \x01(\x0e\x32\x14.topodata.TabletType\x12\x1a\n\x12not_in_transaction\x18\x07 \x01(\x08\x12&\n\x07options\x18\x08 \x01(\x0b\x32\x15.query.ExecuteOptions\"\x82\x01\n\x1a\x45xecuteKeyspaceIdsResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\"\n\x06result\x18\x03 \x01(\x0b\x32\x12.query.QueryResult\"\xaa\x02\n\x17\x45xecuteKeyRangesRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12 \n\x05query\x18\x03 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x04 \x01(\t\x12&\n\nkey_ranges\x18\x05 \x03(\x0b\x32\x12.topodata.KeyRange\x12)\n\x0btablet_type\x18\x06 \x01(\x0e\x32\x14.topodata.TabletType\x12\x1a\n\x12not_in_transaction\x18\x07 \x01(\x08\x12&\n\x07options\x18\x08 \x01(\x0b\x32\x15.query.ExecuteOptions\"\x80\x01\n\x18\x45xecuteKeyRangesResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\"\n\x06result\x18\x03 \x01(\x0b\x32\x12.query.QueryResult\"\xb0\x03\n\x17\x45xecuteEntityIdsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12 \n\x05query\x18\x03 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x04 \x01(\t\x12\x1a\n\x12\x65ntity_column_name\x18\x05 \x01(\t\x12\x45\n\x13\x65ntity_keyspace_ids\x18\x06 \x03(\x0b\x32(.vtgate.ExecuteEntityIdsRequest.EntityId\x12)\n\x0btablet_type\x18\x07 \x01(\x0e\x32\x14.topodata.TabletType\x12\x1a\n\x12not_in_transaction\x18\x08 \x01(\x08\x12&\n\x07options\x18\t \x01(\x0b\x32\x15.query.ExecuteOptions\x1aI\n\x08\x45ntityId\x12\x19\n\x04type\x18\x01 \x01(\x0e\x32\x0b.query.Type\x12\r\n\x05value\x18\x02 \x01(\x0c\x12\x13\n\x0bkeyspace_id\x18\x03 \x01(\x0c\"\x80\x01\n\x18\x45xecuteEntityIdsResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\"\n\x06result\x18\x03 \x01(\x0b\x32\x12.query.QueryResult\"\x82\x02\n\x13\x45xecuteBatchRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\"\n\x07queries\x18\x03 \x03(\x0b\x32\x11.query.BoundQuery\x12)\n\x0btablet_type\x18\x04 \x01(\x0e\x32\x14.topodata.TabletType\x12\x16\n\x0e\x61s_transaction\x18\x05 \x01(\x08\x12\x16\n\x0ekeyspace_shard\x18\x06 \x01(\t\x12&\n\x07options\x18\x07 \x01(\x0b\x32\x15.query.ExecuteOptions\"\x81\x01\n\x14\x45xecuteBatchResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\'\n\x07results\x18\x03 \x03(\x0b\x32\x16.query.ResultWithError\"U\n\x0f\x42oundShardQuery\x12 \n\x05query\x18\x01 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12\x0e\n\x06shards\x18\x03 \x03(\t\"\xf6\x01\n\x19\x45xecuteBatchShardsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12(\n\x07queries\x18\x03 \x03(\x0b\x32\x17.vtgate.BoundShardQuery\x12)\n\x0btablet_type\x18\x04 \x01(\x0e\x32\x14.topodata.TabletType\x12\x16\n\x0e\x61s_transaction\x18\x05 \x01(\x08\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\"\x83\x01\n\x1a\x45xecuteBatchShardsResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12#\n\x07results\x18\x03 \x03(\x0b\x32\x12.query.QueryResult\"`\n\x14\x42oundKeyspaceIdQuery\x12 \n\x05query\x18\x01 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12\x14\n\x0ckeyspace_ids\x18\x03 \x03(\x0c\"\x80\x02\n\x1e\x45xecuteBatchKeyspaceIdsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12-\n\x07queries\x18\x03 \x03(\x0b\x32\x1c.vtgate.BoundKeyspaceIdQuery\x12)\n\x0btablet_type\x18\x04 \x01(\x0e\x32\x14.topodata.TabletType\x12\x16\n\x0e\x61s_transaction\x18\x05 \x01(\x08\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\"\x88\x01\n\x1f\x45xecuteBatchKeyspaceIdsResponse\x12\x1e\n\x05\x65rror\x18\x01 \x01(\x0b\x32\x0f.vtrpc.RPCError\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12#\n\x07results\x18\x03 \x03(\x0b\x32\x12.query.QueryResult\"\xe9\x01\n\x14StreamExecuteRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x05query\x18\x02 \x01(\x0b\x32\x11.query.BoundQuery\x12)\n\x0btablet_type\x18\x03 \x01(\x0e\x32\x14.topodata.TabletType\x12\x16\n\x0ekeyspace_shard\x18\x04 \x01(\t\x12&\n\x07options\x18\x05 \x01(\x0b\x32\x15.query.ExecuteOptions\x12 \n\x07session\x18\x06 \x01(\x0b\x32\x0f.vtgate.Session\";\n\x15StreamExecuteResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"\xd7\x01\n\x1aStreamExecuteShardsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x05query\x18\x02 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x03 \x01(\t\x12\x0e\n\x06shards\x18\x04 \x03(\t\x12)\n\x0btablet_type\x18\x05 \x01(\x0e\x32\x14.topodata.TabletType\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\"A\n\x1bStreamExecuteShardsResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"\xe2\x01\n\x1fStreamExecuteKeyspaceIdsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x05query\x18\x02 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x03 \x01(\t\x12\x14\n\x0ckeyspace_ids\x18\x04 \x03(\x0c\x12)\n\x0btablet_type\x18\x05 \x01(\x0e\x32\x14.topodata.TabletType\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\"F\n StreamExecuteKeyspaceIdsResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"\xf2\x01\n\x1dStreamExecuteKeyRangesRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x05query\x18\x02 \x01(\x0b\x32\x11.query.BoundQuery\x12\x10\n\x08keyspace\x18\x03 \x01(\t\x12&\n\nkey_ranges\x18\x04 \x03(\x0b\x32\x12.topodata.KeyRange\x12)\n\x0btablet_type\x18\x05 \x01(\x0e\x32\x14.topodata.TabletType\x12&\n\x07options\x18\x06 \x01(\x0b\x32\x15.query.ExecuteOptions\"D\n\x1eStreamExecuteKeyRangesResponse\x12\"\n\x06result\x18\x01 \x01(\x0b\x32\x12.query.QueryResult\"E\n\x0c\x42\x65ginRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x11\n\tsingle_db\x18\x02 \x01(\x08\"1\n\rBeginResponse\x12 \n\x07session\x18\x01 \x01(\x0b\x32\x0f.vtgate.Session\"e\n\rCommitRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\x12\x0e\n\x06\x61tomic\x18\x03 \x01(\x08\"\x10\n\x0e\x43ommitResponse\"W\n\x0fRollbackRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12 \n\x07session\x18\x02 \x01(\x0b\x32\x0f.vtgate.Session\"\x12\n\x10RollbackResponse\"M\n\x19ResolveTransactionRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x0c\n\x04\x64tid\x18\x02 \x01(\t\"\x90\x01\n\x14MessageStreamRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12\r\n\x05shard\x18\x03 \x01(\t\x12%\n\tkey_range\x18\x04 \x01(\x0b\x32\x12.topodata.KeyRange\x12\x0c\n\x04name\x18\x05 \x01(\t\"r\n\x11MessageAckRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12\x19\n\x03ids\x18\x04 \x03(\x0b\x32\x0c.query.Value\"=\n\x0cIdKeyspaceId\x12\x18\n\x02id\x18\x01 \x01(\x0b\x32\x0c.query.Value\x12\x13\n\x0bkeyspace_id\x18\x02 \x01(\x0c\"\x91\x01\n\x1cMessageAckKeyspaceIdsRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12-\n\x0fid_keyspace_ids\x18\x04 \x03(\x0b\x32\x14.vtgate.IdKeyspaceId\"\x1c\n\x1aResolveTransactionResponse\"\x8a\x02\n\x11SplitQueryRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12 \n\x05query\x18\x03 \x01(\x0b\x32\x11.query.BoundQuery\x12\x14\n\x0csplit_column\x18\x04 \x03(\t\x12\x13\n\x0bsplit_count\x18\x05 \x01(\x03\x12\x1f\n\x17num_rows_per_query_part\x18\x06 \x01(\x03\x12\x35\n\talgorithm\x18\x07 \x01(\x0e\x32\".query.SplitQueryRequest.Algorithm\x12\x1a\n\x12use_split_query_v2\x18\x08 \x01(\x08\"\xf2\x02\n\x12SplitQueryResponse\x12/\n\x06splits\x18\x01 \x03(\x0b\x32\x1f.vtgate.SplitQueryResponse.Part\x1aH\n\x0cKeyRangePart\x12\x10\n\x08keyspace\x18\x01 \x01(\t\x12&\n\nkey_ranges\x18\x02 \x03(\x0b\x32\x12.topodata.KeyRange\x1a-\n\tShardPart\x12\x10\n\x08keyspace\x18\x01 \x01(\t\x12\x0e\n\x06shards\x18\x02 \x03(\t\x1a\xb1\x01\n\x04Part\x12 \n\x05query\x18\x01 \x01(\x0b\x32\x11.query.BoundQuery\x12?\n\x0ekey_range_part\x18\x02 \x01(\x0b\x32\'.vtgate.SplitQueryResponse.KeyRangePart\x12\x38\n\nshard_part\x18\x03 \x01(\x0b\x32$.vtgate.SplitQueryResponse.ShardPart\x12\x0c\n\x04size\x18\x04 \x01(\x03\")\n\x15GetSrvKeyspaceRequest\x12\x10\n\x08keyspace\x18\x01 \x01(\t\"E\n\x16GetSrvKeyspaceResponse\x12+\n\x0csrv_keyspace\x18\x01 \x01(\x0b\x32\x15.topodata.SrvKeyspace\"\xe1\x01\n\x13UpdateStreamRequest\x12\"\n\tcaller_id\x18\x01 \x01(\x0b\x32\x0f.vtrpc.CallerID\x12\x10\n\x08keyspace\x18\x02 \x01(\t\x12\r\n\x05shard\x18\x03 \x01(\t\x12%\n\tkey_range\x18\x04 \x01(\x0b\x32\x12.topodata.KeyRange\x12)\n\x0btablet_type\x18\x05 \x01(\x0e\x32\x14.topodata.TabletType\x12\x11\n\ttimestamp\x18\x06 \x01(\x03\x12 \n\x05\x65vent\x18\x07 \x01(\x0b\x32\x11.query.EventToken\"S\n\x14UpdateStreamResponse\x12!\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x12.query.StreamEvent\x12\x18\n\x10resume_timestamp\x18\x02 \x01(\x03*D\n\x0fTransactionMode\x12\x0f\n\x0bUNSPECIFIED\x10\x00\x12\n\n\x06SINGLE\x10\x01\x12\t\n\x05MULTI\x10\x02\x12\t\n\x05TWOPC\x10\x03\x42\x36\n\x0fio.vitess.protoZ#vitess.io/vitess/go/vt/proto/vtgateb\x06proto3') , dependencies=[query__pb2.DESCRIPTOR,topodata__pb2.DESCRIPTOR,vtrpc__pb2.DESCRIPTOR,]) @@ -3066,5 +3066,5 @@ DESCRIPTOR.has_options = True -DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('\n\017io.vitess.proto')) +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('\n\017io.vitess.protoZ#vitess.io/vitess/go/vt/proto/vtgate')) # @@protoc_insertion_point(module_scope) diff --git a/py/vtproto/vtgateservice_pb2.py b/py/vtproto/vtgateservice_pb2.py index 1e9d0d66efa..6e9262eb81a 100644 --- a/py/vtproto/vtgateservice_pb2.py +++ b/py/vtproto/vtgateservice_pb2.py @@ -21,7 +21,7 @@ name='vtgateservice.proto', package='vtgateservice', syntax='proto3', - serialized_pb=_b('\n\x13vtgateservice.proto\x12\rvtgateservice\x1a\x0cvtgate.proto\x1a\x0bquery.proto2\xc6\x0e\n\x06Vitess\x12<\n\x07\x45xecute\x12\x16.vtgate.ExecuteRequest\x1a\x17.vtgate.ExecuteResponse\"\x00\x12K\n\x0c\x45xecuteBatch\x12\x1b.vtgate.ExecuteBatchRequest\x1a\x1c.vtgate.ExecuteBatchResponse\"\x00\x12P\n\rStreamExecute\x12\x1c.vtgate.StreamExecuteRequest\x1a\x1d.vtgate.StreamExecuteResponse\"\x00\x30\x01\x12N\n\rExecuteShards\x12\x1c.vtgate.ExecuteShardsRequest\x1a\x1d.vtgate.ExecuteShardsResponse\"\x00\x12]\n\x12\x45xecuteKeyspaceIds\x12!.vtgate.ExecuteKeyspaceIdsRequest\x1a\".vtgate.ExecuteKeyspaceIdsResponse\"\x00\x12W\n\x10\x45xecuteKeyRanges\x12\x1f.vtgate.ExecuteKeyRangesRequest\x1a .vtgate.ExecuteKeyRangesResponse\"\x00\x12W\n\x10\x45xecuteEntityIds\x12\x1f.vtgate.ExecuteEntityIdsRequest\x1a .vtgate.ExecuteEntityIdsResponse\"\x00\x12]\n\x12\x45xecuteBatchShards\x12!.vtgate.ExecuteBatchShardsRequest\x1a\".vtgate.ExecuteBatchShardsResponse\"\x00\x12l\n\x17\x45xecuteBatchKeyspaceIds\x12&.vtgate.ExecuteBatchKeyspaceIdsRequest\x1a\'.vtgate.ExecuteBatchKeyspaceIdsResponse\"\x00\x12\x62\n\x13StreamExecuteShards\x12\".vtgate.StreamExecuteShardsRequest\x1a#.vtgate.StreamExecuteShardsResponse\"\x00\x30\x01\x12q\n\x18StreamExecuteKeyspaceIds\x12\'.vtgate.StreamExecuteKeyspaceIdsRequest\x1a(.vtgate.StreamExecuteKeyspaceIdsResponse\"\x00\x30\x01\x12k\n\x16StreamExecuteKeyRanges\x12%.vtgate.StreamExecuteKeyRangesRequest\x1a&.vtgate.StreamExecuteKeyRangesResponse\"\x00\x30\x01\x12\x36\n\x05\x42\x65gin\x12\x14.vtgate.BeginRequest\x1a\x15.vtgate.BeginResponse\"\x00\x12\x39\n\x06\x43ommit\x12\x15.vtgate.CommitRequest\x1a\x16.vtgate.CommitResponse\"\x00\x12?\n\x08Rollback\x12\x17.vtgate.RollbackRequest\x1a\x18.vtgate.RollbackResponse\"\x00\x12]\n\x12ResolveTransaction\x12!.vtgate.ResolveTransactionRequest\x1a\".vtgate.ResolveTransactionResponse\"\x00\x12O\n\rMessageStream\x12\x1c.vtgate.MessageStreamRequest\x1a\x1c.query.MessageStreamResponse\"\x00\x30\x01\x12\x44\n\nMessageAck\x12\x19.vtgate.MessageAckRequest\x1a\x19.query.MessageAckResponse\"\x00\x12Z\n\x15MessageAckKeyspaceIds\x12$.vtgate.MessageAckKeyspaceIdsRequest\x1a\x19.query.MessageAckResponse\"\x00\x12\x45\n\nSplitQuery\x12\x19.vtgate.SplitQueryRequest\x1a\x1a.vtgate.SplitQueryResponse\"\x00\x12Q\n\x0eGetSrvKeyspace\x12\x1d.vtgate.GetSrvKeyspaceRequest\x1a\x1e.vtgate.GetSrvKeyspaceResponse\"\x00\x12M\n\x0cUpdateStream\x12\x1b.vtgate.UpdateStreamRequest\x1a\x1c.vtgate.UpdateStreamResponse\"\x00\x30\x01\x42\x16\n\x14io.vitess.proto.grpcb\x06proto3') + serialized_pb=_b('\n\x13vtgateservice.proto\x12\rvtgateservice\x1a\x0cvtgate.proto\x1a\x0bquery.proto2\xc6\x0e\n\x06Vitess\x12<\n\x07\x45xecute\x12\x16.vtgate.ExecuteRequest\x1a\x17.vtgate.ExecuteResponse\"\x00\x12K\n\x0c\x45xecuteBatch\x12\x1b.vtgate.ExecuteBatchRequest\x1a\x1c.vtgate.ExecuteBatchResponse\"\x00\x12P\n\rStreamExecute\x12\x1c.vtgate.StreamExecuteRequest\x1a\x1d.vtgate.StreamExecuteResponse\"\x00\x30\x01\x12N\n\rExecuteShards\x12\x1c.vtgate.ExecuteShardsRequest\x1a\x1d.vtgate.ExecuteShardsResponse\"\x00\x12]\n\x12\x45xecuteKeyspaceIds\x12!.vtgate.ExecuteKeyspaceIdsRequest\x1a\".vtgate.ExecuteKeyspaceIdsResponse\"\x00\x12W\n\x10\x45xecuteKeyRanges\x12\x1f.vtgate.ExecuteKeyRangesRequest\x1a .vtgate.ExecuteKeyRangesResponse\"\x00\x12W\n\x10\x45xecuteEntityIds\x12\x1f.vtgate.ExecuteEntityIdsRequest\x1a .vtgate.ExecuteEntityIdsResponse\"\x00\x12]\n\x12\x45xecuteBatchShards\x12!.vtgate.ExecuteBatchShardsRequest\x1a\".vtgate.ExecuteBatchShardsResponse\"\x00\x12l\n\x17\x45xecuteBatchKeyspaceIds\x12&.vtgate.ExecuteBatchKeyspaceIdsRequest\x1a\'.vtgate.ExecuteBatchKeyspaceIdsResponse\"\x00\x12\x62\n\x13StreamExecuteShards\x12\".vtgate.StreamExecuteShardsRequest\x1a#.vtgate.StreamExecuteShardsResponse\"\x00\x30\x01\x12q\n\x18StreamExecuteKeyspaceIds\x12\'.vtgate.StreamExecuteKeyspaceIdsRequest\x1a(.vtgate.StreamExecuteKeyspaceIdsResponse\"\x00\x30\x01\x12k\n\x16StreamExecuteKeyRanges\x12%.vtgate.StreamExecuteKeyRangesRequest\x1a&.vtgate.StreamExecuteKeyRangesResponse\"\x00\x30\x01\x12\x36\n\x05\x42\x65gin\x12\x14.vtgate.BeginRequest\x1a\x15.vtgate.BeginResponse\"\x00\x12\x39\n\x06\x43ommit\x12\x15.vtgate.CommitRequest\x1a\x16.vtgate.CommitResponse\"\x00\x12?\n\x08Rollback\x12\x17.vtgate.RollbackRequest\x1a\x18.vtgate.RollbackResponse\"\x00\x12]\n\x12ResolveTransaction\x12!.vtgate.ResolveTransactionRequest\x1a\".vtgate.ResolveTransactionResponse\"\x00\x12O\n\rMessageStream\x12\x1c.vtgate.MessageStreamRequest\x1a\x1c.query.MessageStreamResponse\"\x00\x30\x01\x12\x44\n\nMessageAck\x12\x19.vtgate.MessageAckRequest\x1a\x19.query.MessageAckResponse\"\x00\x12Z\n\x15MessageAckKeyspaceIds\x12$.vtgate.MessageAckKeyspaceIdsRequest\x1a\x19.query.MessageAckResponse\"\x00\x12\x45\n\nSplitQuery\x12\x19.vtgate.SplitQueryRequest\x1a\x1a.vtgate.SplitQueryResponse\"\x00\x12Q\n\x0eGetSrvKeyspace\x12\x1d.vtgate.GetSrvKeyspaceRequest\x1a\x1e.vtgate.GetSrvKeyspaceResponse\"\x00\x12M\n\x0cUpdateStream\x12\x1b.vtgate.UpdateStreamRequest\x1a\x1c.vtgate.UpdateStreamResponse\"\x00\x30\x01\x42\x42\n\x14io.vitess.proto.grpcZ*vitess.io/vitess/go/vt/proto/vtgateserviceb\x06proto3') , dependencies=[vtgate__pb2.DESCRIPTOR,query__pb2.DESCRIPTOR,]) @@ -31,7 +31,7 @@ DESCRIPTOR.has_options = True -DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('\n\024io.vitess.proto.grpc')) +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('\n\024io.vitess.proto.grpcZ*vitess.io/vitess/go/vt/proto/vtgateservice')) _VITESS = _descriptor.ServiceDescriptor( name='Vitess', diff --git a/py/vtproto/vtrpc_pb2.py b/py/vtproto/vtrpc_pb2.py index 15e5dcd7f81..5c9cfc4cc6a 100644 --- a/py/vtproto/vtrpc_pb2.py +++ b/py/vtproto/vtrpc_pb2.py @@ -20,7 +20,7 @@ name='vtrpc.proto', package='vtrpc', syntax='proto3', - serialized_pb=_b('\n\x0bvtrpc.proto\x12\x05vtrpc\"F\n\x08\x43\x61llerID\x12\x11\n\tprincipal\x18\x01 \x01(\t\x12\x11\n\tcomponent\x18\x02 \x01(\t\x12\x14\n\x0csubcomponent\x18\x03 \x01(\t\"c\n\x08RPCError\x12+\n\x0blegacy_code\x18\x01 \x01(\x0e\x32\x16.vtrpc.LegacyErrorCode\x12\x0f\n\x07message\x18\x02 \x01(\t\x12\x19\n\x04\x63ode\x18\x03 \x01(\x0e\x32\x0b.vtrpc.Code*\xb6\x02\n\x04\x43ode\x12\x06\n\x02OK\x10\x00\x12\x0c\n\x08\x43\x41NCELED\x10\x01\x12\x0b\n\x07UNKNOWN\x10\x02\x12\x14\n\x10INVALID_ARGUMENT\x10\x03\x12\x15\n\x11\x44\x45\x41\x44LINE_EXCEEDED\x10\x04\x12\r\n\tNOT_FOUND\x10\x05\x12\x12\n\x0e\x41LREADY_EXISTS\x10\x06\x12\x15\n\x11PERMISSION_DENIED\x10\x07\x12\x13\n\x0fUNAUTHENTICATED\x10\x10\x12\x16\n\x12RESOURCE_EXHAUSTED\x10\x08\x12\x17\n\x13\x46\x41ILED_PRECONDITION\x10\t\x12\x0b\n\x07\x41\x42ORTED\x10\n\x12\x10\n\x0cOUT_OF_RANGE\x10\x0b\x12\x11\n\rUNIMPLEMENTED\x10\x0c\x12\x0c\n\x08INTERNAL\x10\r\x12\x0f\n\x0bUNAVAILABLE\x10\x0e\x12\r\n\tDATA_LOSS\x10\x0f*\xe8\x02\n\x0fLegacyErrorCode\x12\x12\n\x0eSUCCESS_LEGACY\x10\x00\x12\x14\n\x10\x43\x41NCELLED_LEGACY\x10\x01\x12\x18\n\x14UNKNOWN_ERROR_LEGACY\x10\x02\x12\x14\n\x10\x42\x41\x44_INPUT_LEGACY\x10\x03\x12\x1c\n\x18\x44\x45\x41\x44LINE_EXCEEDED_LEGACY\x10\x04\x12\x1a\n\x16INTEGRITY_ERROR_LEGACY\x10\x05\x12\x1c\n\x18PERMISSION_DENIED_LEGACY\x10\x06\x12\x1d\n\x19RESOURCE_EXHAUSTED_LEGACY\x10\x07\x12\x1b\n\x17QUERY_NOT_SERVED_LEGACY\x10\x08\x12\x14\n\x10NOT_IN_TX_LEGACY\x10\t\x12\x19\n\x15INTERNAL_ERROR_LEGACY\x10\n\x12\x1a\n\x16TRANSIENT_ERROR_LEGACY\x10\x0b\x12\x1a\n\x16UNAUTHENTICATED_LEGACY\x10\x0c\x42\x11\n\x0fio.vitess.protob\x06proto3') + serialized_pb=_b('\n\x0bvtrpc.proto\x12\x05vtrpc\"F\n\x08\x43\x61llerID\x12\x11\n\tprincipal\x18\x01 \x01(\t\x12\x11\n\tcomponent\x18\x02 \x01(\t\x12\x14\n\x0csubcomponent\x18\x03 \x01(\t\"c\n\x08RPCError\x12+\n\x0blegacy_code\x18\x01 \x01(\x0e\x32\x16.vtrpc.LegacyErrorCode\x12\x0f\n\x07message\x18\x02 \x01(\t\x12\x19\n\x04\x63ode\x18\x03 \x01(\x0e\x32\x0b.vtrpc.Code*\xb6\x02\n\x04\x43ode\x12\x06\n\x02OK\x10\x00\x12\x0c\n\x08\x43\x41NCELED\x10\x01\x12\x0b\n\x07UNKNOWN\x10\x02\x12\x14\n\x10INVALID_ARGUMENT\x10\x03\x12\x15\n\x11\x44\x45\x41\x44LINE_EXCEEDED\x10\x04\x12\r\n\tNOT_FOUND\x10\x05\x12\x12\n\x0e\x41LREADY_EXISTS\x10\x06\x12\x15\n\x11PERMISSION_DENIED\x10\x07\x12\x13\n\x0fUNAUTHENTICATED\x10\x10\x12\x16\n\x12RESOURCE_EXHAUSTED\x10\x08\x12\x17\n\x13\x46\x41ILED_PRECONDITION\x10\t\x12\x0b\n\x07\x41\x42ORTED\x10\n\x12\x10\n\x0cOUT_OF_RANGE\x10\x0b\x12\x11\n\rUNIMPLEMENTED\x10\x0c\x12\x0c\n\x08INTERNAL\x10\r\x12\x0f\n\x0bUNAVAILABLE\x10\x0e\x12\r\n\tDATA_LOSS\x10\x0f*\xe8\x02\n\x0fLegacyErrorCode\x12\x12\n\x0eSUCCESS_LEGACY\x10\x00\x12\x14\n\x10\x43\x41NCELLED_LEGACY\x10\x01\x12\x18\n\x14UNKNOWN_ERROR_LEGACY\x10\x02\x12\x14\n\x10\x42\x41\x44_INPUT_LEGACY\x10\x03\x12\x1c\n\x18\x44\x45\x41\x44LINE_EXCEEDED_LEGACY\x10\x04\x12\x1a\n\x16INTEGRITY_ERROR_LEGACY\x10\x05\x12\x1c\n\x18PERMISSION_DENIED_LEGACY\x10\x06\x12\x1d\n\x19RESOURCE_EXHAUSTED_LEGACY\x10\x07\x12\x1b\n\x17QUERY_NOT_SERVED_LEGACY\x10\x08\x12\x14\n\x10NOT_IN_TX_LEGACY\x10\t\x12\x19\n\x15INTERNAL_ERROR_LEGACY\x10\n\x12\x1a\n\x16TRANSIENT_ERROR_LEGACY\x10\x0b\x12\x1a\n\x16UNAUTHENTICATED_LEGACY\x10\x0c\x42\x35\n\x0fio.vitess.protoZ\"vitess.io/vitess/go/vt/proto/vtrpcb\x06proto3') ) _CODE = _descriptor.EnumDescriptor( @@ -319,5 +319,5 @@ DESCRIPTOR.has_options = True -DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('\n\017io.vitess.proto')) +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('\n\017io.vitess.protoZ\"vitess.io/vitess/go/vt/proto/vtrpc')) # @@protoc_insertion_point(module_scope) diff --git a/py/vtproto/vttest_pb2.py b/py/vtproto/vttest_pb2.py index f0e7ce5fa7f..5e20f3c45f1 100644 --- a/py/vtproto/vttest_pb2.py +++ b/py/vtproto/vttest_pb2.py @@ -19,7 +19,7 @@ name='vttest.proto', package='vttest', syntax='proto3', - serialized_pb=_b('\n\x0cvttest.proto\x12\x06vttest\"/\n\x05Shard\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x18\n\x10\x64\x62_name_override\x18\x02 \x01(\t\"\xb5\x01\n\x08Keyspace\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x1d\n\x06shards\x18\x02 \x03(\x0b\x32\r.vttest.Shard\x12\x1c\n\x14sharding_column_name\x18\x03 \x01(\t\x12\x1c\n\x14sharding_column_type\x18\x04 \x01(\t\x12\x13\n\x0bserved_from\x18\x05 \x01(\t\x12\x15\n\rreplica_count\x18\x06 \x01(\x05\x12\x14\n\x0crdonly_count\x18\x07 \x01(\x05\"D\n\x0eVTTestTopology\x12#\n\tkeyspaces\x18\x01 \x03(\x0b\x32\x10.vttest.Keyspace\x12\r\n\x05\x63\x65lls\x18\x02 \x03(\tb\x06proto3') + serialized_pb=_b('\n\x0cvttest.proto\x12\x06vttest\"/\n\x05Shard\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x18\n\x10\x64\x62_name_override\x18\x02 \x01(\t\"\xb5\x01\n\x08Keyspace\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x1d\n\x06shards\x18\x02 \x03(\x0b\x32\r.vttest.Shard\x12\x1c\n\x14sharding_column_name\x18\x03 \x01(\t\x12\x1c\n\x14sharding_column_type\x18\x04 \x01(\t\x12\x13\n\x0bserved_from\x18\x05 \x01(\t\x12\x15\n\rreplica_count\x18\x06 \x01(\x05\x12\x14\n\x0crdonly_count\x18\x07 \x01(\x05\"D\n\x0eVTTestTopology\x12#\n\tkeyspaces\x18\x01 \x03(\x0b\x32\x10.vttest.Keyspace\x12\r\n\x05\x63\x65lls\x18\x02 \x03(\tB%Z#vitess.io/vitess/go/vt/proto/vttestb\x06proto3') ) @@ -202,4 +202,6 @@ _sym_db.RegisterMessage(VTTestTopology) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z#vitess.io/vitess/go/vt/proto/vttest')) # @@protoc_insertion_point(module_scope) diff --git a/py/vtproto/vtworkerdata_pb2.py b/py/vtproto/vtworkerdata_pb2.py index cb9da0436cf..a874b812746 100644 --- a/py/vtproto/vtworkerdata_pb2.py +++ b/py/vtproto/vtworkerdata_pb2.py @@ -20,7 +20,7 @@ name='vtworkerdata.proto', package='vtworkerdata', syntax='proto3', - serialized_pb=_b('\n\x12vtworkerdata.proto\x12\x0cvtworkerdata\x1a\rlogutil.proto\"-\n\x1d\x45xecuteVtworkerCommandRequest\x12\x0c\n\x04\x61rgs\x18\x01 \x03(\t\"?\n\x1e\x45xecuteVtworkerCommandResponse\x12\x1d\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x0e.logutil.Eventb\x06proto3') + serialized_pb=_b('\n\x12vtworkerdata.proto\x12\x0cvtworkerdata\x1a\rlogutil.proto\"-\n\x1d\x45xecuteVtworkerCommandRequest\x12\x0c\n\x04\x61rgs\x18\x01 \x03(\t\"?\n\x1e\x45xecuteVtworkerCommandResponse\x12\x1d\n\x05\x65vent\x18\x01 \x01(\x0b\x32\x0e.logutil.EventB+Z)vitess.io/vitess/go/vt/proto/vtworkerdatab\x06proto3') , dependencies=[logutil__pb2.DESCRIPTOR,]) @@ -108,4 +108,6 @@ _sym_db.RegisterMessage(ExecuteVtworkerCommandResponse) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z)vitess.io/vitess/go/vt/proto/vtworkerdata')) # @@protoc_insertion_point(module_scope) diff --git a/py/vtproto/vtworkerservice_pb2.py b/py/vtproto/vtworkerservice_pb2.py index aa07aca3dfe..ee25dd13b62 100644 --- a/py/vtproto/vtworkerservice_pb2.py +++ b/py/vtproto/vtworkerservice_pb2.py @@ -20,7 +20,7 @@ name='vtworkerservice.proto', package='vtworkerservice', syntax='proto3', - serialized_pb=_b('\n\x15vtworkerservice.proto\x12\x0fvtworkerservice\x1a\x12vtworkerdata.proto2\x83\x01\n\x08Vtworker\x12w\n\x16\x45xecuteVtworkerCommand\x12+.vtworkerdata.ExecuteVtworkerCommandRequest\x1a,.vtworkerdata.ExecuteVtworkerCommandResponse\"\x00\x30\x01\x62\x06proto3') + serialized_pb=_b('\n\x15vtworkerservice.proto\x12\x0fvtworkerservice\x1a\x12vtworkerdata.proto2\x83\x01\n\x08Vtworker\x12w\n\x16\x45xecuteVtworkerCommand\x12+.vtworkerdata.ExecuteVtworkerCommandRequest\x1a,.vtworkerdata.ExecuteVtworkerCommandResponse\"\x00\x30\x01\x42.Z,vitess.io/vitess/go/vt/proto/vtworkerserviceb\x06proto3') , dependencies=[vtworkerdata__pb2.DESCRIPTOR,]) @@ -29,6 +29,8 @@ _sym_db.RegisterFileDescriptor(DESCRIPTOR) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z,vitess.io/vitess/go/vt/proto/vtworkerservice')) _VTWORKER = _descriptor.ServiceDescriptor( name='Vtworker', diff --git a/py/vtproto/workflow_pb2.py b/py/vtproto/workflow_pb2.py index 0f1f7e168d4..37f6cb38928 100644 --- a/py/vtproto/workflow_pb2.py +++ b/py/vtproto/workflow_pb2.py @@ -20,7 +20,7 @@ name='workflow.proto', package='workflow', syntax='proto3', - serialized_pb=_b('\n\x0eworkflow.proto\x12\x08workflow\"\xa7\x01\n\x08Workflow\x12\x0c\n\x04uuid\x18\x01 \x01(\t\x12\x14\n\x0c\x66\x61\x63tory_name\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12&\n\x05state\x18\x04 \x01(\x0e\x32\x17.workflow.WorkflowState\x12\x0c\n\x04\x64\x61ta\x18\x05 \x01(\x0c\x12\r\n\x05\x65rror\x18\x06 \x01(\t\x12\x12\n\nstart_time\x18\x07 \x01(\x03\x12\x10\n\x08\x65nd_time\x18\x08 \x01(\x03\"\x8f\x02\n\x12WorkflowCheckpoint\x12\x14\n\x0c\x63ode_version\x18\x01 \x01(\x05\x12\x36\n\x05tasks\x18\x02 \x03(\x0b\x32\'.workflow.WorkflowCheckpoint.TasksEntry\x12<\n\x08settings\x18\x03 \x03(\x0b\x32*.workflow.WorkflowCheckpoint.SettingsEntry\x1a<\n\nTasksEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x1d\n\x05value\x18\x02 \x01(\x0b\x32\x0e.workflow.Task:\x02\x38\x01\x1a/\n\rSettingsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xac\x01\n\x04Task\x12\n\n\x02id\x18\x01 \x01(\t\x12\"\n\x05state\x18\x02 \x01(\x0e\x32\x13.workflow.TaskState\x12\x32\n\nattributes\x18\x03 \x03(\x0b\x32\x1e.workflow.Task.AttributesEntry\x12\r\n\x05\x65rror\x18\x04 \x01(\t\x1a\x31\n\x0f\x41ttributesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01*6\n\rWorkflowState\x12\x0e\n\nNotStarted\x10\x00\x12\x0b\n\x07Running\x10\x01\x12\x08\n\x04\x44one\x10\x02*>\n\tTaskState\x12\x12\n\x0eTaskNotStarted\x10\x00\x12\x0f\n\x0bTaskRunning\x10\x01\x12\x0c\n\x08TaskDone\x10\x02\x62\x06proto3') + serialized_pb=_b('\n\x0eworkflow.proto\x12\x08workflow\"\xa7\x01\n\x08Workflow\x12\x0c\n\x04uuid\x18\x01 \x01(\t\x12\x14\n\x0c\x66\x61\x63tory_name\x18\x02 \x01(\t\x12\x0c\n\x04name\x18\x03 \x01(\t\x12&\n\x05state\x18\x04 \x01(\x0e\x32\x17.workflow.WorkflowState\x12\x0c\n\x04\x64\x61ta\x18\x05 \x01(\x0c\x12\r\n\x05\x65rror\x18\x06 \x01(\t\x12\x12\n\nstart_time\x18\x07 \x01(\x03\x12\x10\n\x08\x65nd_time\x18\x08 \x01(\x03\"\x8f\x02\n\x12WorkflowCheckpoint\x12\x14\n\x0c\x63ode_version\x18\x01 \x01(\x05\x12\x36\n\x05tasks\x18\x02 \x03(\x0b\x32\'.workflow.WorkflowCheckpoint.TasksEntry\x12<\n\x08settings\x18\x03 \x03(\x0b\x32*.workflow.WorkflowCheckpoint.SettingsEntry\x1a<\n\nTasksEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x1d\n\x05value\x18\x02 \x01(\x0b\x32\x0e.workflow.Task:\x02\x38\x01\x1a/\n\rSettingsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xac\x01\n\x04Task\x12\n\n\x02id\x18\x01 \x01(\t\x12\"\n\x05state\x18\x02 \x01(\x0e\x32\x13.workflow.TaskState\x12\x32\n\nattributes\x18\x03 \x03(\x0b\x32\x1e.workflow.Task.AttributesEntry\x12\r\n\x05\x65rror\x18\x04 \x01(\t\x1a\x31\n\x0f\x41ttributesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01*6\n\rWorkflowState\x12\x0e\n\nNotStarted\x10\x00\x12\x0b\n\x07Running\x10\x01\x12\x08\n\x04\x44one\x10\x02*>\n\tTaskState\x12\x12\n\x0eTaskNotStarted\x10\x00\x12\x0f\n\x0bTaskRunning\x10\x01\x12\x0c\n\x08TaskDone\x10\x02\x42\'Z%vitess.io/vitess/go/vt/proto/workflowb\x06proto3') ) _WORKFLOWSTATE = _descriptor.EnumDescriptor( @@ -435,6 +435,8 @@ _sym_db.RegisterMessage(Task.AttributesEntry) +DESCRIPTOR.has_options = True +DESCRIPTOR._options = _descriptor._ParseOptions(descriptor_pb2.FileOptions(), _b('Z%vitess.io/vitess/go/vt/proto/workflow')) _WORKFLOWCHECKPOINT_TASKSENTRY.has_options = True _WORKFLOWCHECKPOINT_TASKSENTRY._options = _descriptor._ParseOptions(descriptor_pb2.MessageOptions(), _b('8\001')) _WORKFLOWCHECKPOINT_SETTINGSENTRY.has_options = True diff --git a/vendor/vendor.json b/vendor/vendor.json index 8879bcd39e1..72e7aaf9735 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -397,28 +397,44 @@ "revisionTime": "2016-01-21T18:51:14Z" }, { - "checksumSHA1": "9FASaCbqLfe78iHXUATRSrqk6D0=", + "checksumSHA1": "NPefLsS2pv0+YlXAuJJvkNOMgyE=", "path": "github.com/golang/protobuf/jsonpb", - "revision": "1909bc2f63dc92bb931deace8b8312c4db72d12f", - "revisionTime": "2017-08-08T02:16:21Z" + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" }, { - "checksumSHA1": "C4fWGYAn426Q2R46v1tJGZXlsE4=", + "checksumSHA1": "JQZYNriPdhD2T55ConfFY4YobAI=", "path": "github.com/golang/protobuf/jsonpb/jsonpb_test_proto", - "revision": "1909bc2f63dc92bb931deace8b8312c4db72d12f", - "revisionTime": "2017-08-08T02:16:21Z" + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" }, { - "checksumSHA1": "yqF125xVSkmfLpIVGrLlfE05IUk=", + "checksumSHA1": "Pyou8mceOASSFxc7GeXZuVdSMi0=", "path": "github.com/golang/protobuf/proto", - "revision": "1909bc2f63dc92bb931deace8b8312c4db72d12f", - "revisionTime": "2017-08-08T02:16:21Z" + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" }, { - "checksumSHA1": "qyalT+838zrkZMjOA62VGus0VcI=", + "checksumSHA1": "3xnSTRvdw0riK30pmoCDK5ZzUVo=", "path": "github.com/golang/protobuf/proto/proto3_proto", - "revision": "1909bc2f63dc92bb931deace8b8312c4db72d12f", - "revisionTime": "2017-08-08T02:16:21Z" + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" + }, + { + "checksumSHA1": "9wt15/5CsuS7kuuLu/nBWLsCLGI=", + "path": "github.com/golang/protobuf/proto/test_proto", + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" }, { "checksumSHA1": "A0DxiyxXV4u8PmwUwlVkQ2CKyiQ=", @@ -427,34 +443,52 @@ "revisionTime": "2017-08-08T02:16:21Z" }, { - "checksumSHA1": "ZIqcmeEc/EU9HsKJHuJ1Iy+ZNgE=", + "checksumSHA1": "iqWBA0GWNr+cwAdF2KVy1eq9mlU=", "path": "github.com/golang/protobuf/protoc-gen-go", - "revision": "1909bc2f63dc92bb931deace8b8312c4db72d12f", - "revisionTime": "2017-08-08T02:16:21Z" + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" }, { - "checksumSHA1": "Z1gJ3PKzwBpOoPnTSEM5yd0zHYA=", + "checksumSHA1": "DA2cyOt1W92RTyXAqKQ4JWKGR8U=", "path": "github.com/golang/protobuf/protoc-gen-go/descriptor", - "revision": "1909bc2f63dc92bb931deace8b8312c4db72d12f", - "revisionTime": "2017-08-08T02:16:21Z" + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" }, { - "checksumSHA1": "hWnfY+wjIbEjO9ckwUjNk6Iw/Ks=", + "checksumSHA1": "DifSE44TpfgLs4XBFJHiPy1YBoM=", "path": "github.com/golang/protobuf/protoc-gen-go/generator", - "revision": "1909bc2f63dc92bb931deace8b8312c4db72d12f", - "revisionTime": "2017-08-08T02:16:21Z" + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" + }, + { + "checksumSHA1": "uY4dEtqaAe5gsU8gbpCI1JgEIII=", + "path": "github.com/golang/protobuf/protoc-gen-go/generator/internal/remap", + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" }, { - "checksumSHA1": "u5V5OglAZoibucYHK3OtIFYM+w0=", + "checksumSHA1": "B4jGXkbpMIOBsp84RC3uwpufjDc=", "path": "github.com/golang/protobuf/protoc-gen-go/grpc", - "revision": "1909bc2f63dc92bb931deace8b8312c4db72d12f", - "revisionTime": "2017-08-08T02:16:21Z" + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" }, { - "checksumSHA1": "8RePrdBuPdr7dY5w45FSQkTA2+0=", + "checksumSHA1": "h4PLbJDYnRmcUuf56USJ5K3xJOg=", "path": "github.com/golang/protobuf/protoc-gen-go/plugin", - "revision": "1909bc2f63dc92bb931deace8b8312c4db72d12f", - "revisionTime": "2017-08-08T02:16:21Z" + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" }, { "checksumSHA1": "/vLtyN6HK5twSZIFerD199YTmjk=", @@ -463,40 +497,52 @@ "revisionTime": "2016-11-03T22:44:32Z" }, { - "checksumSHA1": "5UJZd7Zyo40vk1OjMTy6LWjTcss=", + "checksumSHA1": "/s0InJhSrxhTpqw5FIKgSMknCfM=", "path": "github.com/golang/protobuf/ptypes", - "revision": "1909bc2f63dc92bb931deace8b8312c4db72d12f", - "revisionTime": "2017-08-08T02:16:21Z" + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" }, { - "checksumSHA1": "Z4RIWIXH05QItZqVbmbONO9mWig=", + "checksumSHA1": "3eqU9o+NMZSLM/coY5WDq7C1uKg=", "path": "github.com/golang/protobuf/ptypes/any", - "revision": "1909bc2f63dc92bb931deace8b8312c4db72d12f", - "revisionTime": "2017-08-08T02:16:21Z" + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" }, { - "checksumSHA1": "Lx2JRhnmO66Lhj6p7UXnsPb+IQs=", + "checksumSHA1": "ZIF0rnVzNLluFPqUebtJrVonMr4=", "path": "github.com/golang/protobuf/ptypes/duration", - "revision": "1909bc2f63dc92bb931deace8b8312c4db72d12f", - "revisionTime": "2017-08-08T02:16:21Z" + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" }, { - "checksumSHA1": "Z5Cpi8mr3kfpZ/CdmudThTWQ0Mo=", + "checksumSHA1": "QwgMLtaLi/6xHaNiDFwHN844AkI=", "path": "github.com/golang/protobuf/ptypes/struct", - "revision": "1909bc2f63dc92bb931deace8b8312c4db72d12f", - "revisionTime": "2017-08-08T02:16:21Z" + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" }, { - "checksumSHA1": "+nsb2jDuP/5l2DO78dtU/jYB3G8=", + "checksumSHA1": "1FJvuT0UllZaaS43kmPlx8oNiCs=", "path": "github.com/golang/protobuf/ptypes/timestamp", - "revision": "1909bc2f63dc92bb931deace8b8312c4db72d12f", - "revisionTime": "2017-08-08T02:16:21Z" + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" }, { - "checksumSHA1": "LZn//h0Cxe1mcCWSwwzk4Zrcu2k=", + "checksumSHA1": "fs7UwFcU+SkJKA3eHcdhGsO4jrI=", "path": "github.com/golang/protobuf/ptypes/wrappers", - "revision": "1909bc2f63dc92bb931deace8b8312c4db72d12f", - "revisionTime": "2017-08-08T02:16:21Z" + "revision": "b4deda0973fb4c70b50d226b1af49f3da59f5265", + "revisionTime": "2018-04-30T18:52:41Z", + "version": "v1.1.0", + "versionExact": "v1.1.0" }, { "checksumSHA1": "p/8vSviYF91gFflhrt5vkyksroo=",