From 79282d6bc34371b67384af8dea33eed54b89ea4a Mon Sep 17 00:00:00 2001 From: hongyunyan <649330952@qq.com> Date: Mon, 14 Nov 2022 14:39:25 +0800 Subject: [PATCH 01/13] add executor execution summary detail --- proto/executor.proto | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/proto/executor.proto b/proto/executor.proto index ba1cbec0..5610f519 100644 --- a/proto/executor.proto +++ b/proto/executor.proto @@ -207,6 +207,17 @@ message ExecutorExecutionSummary { // The execution concurrency for this executor optional uint64 concurrency = 5; + + oneof DetailInfo { + FullTableScanContext full_table_scan_context = 6; + } +} + +message FullTableScanContext { + optional uint64 scan_packs_count = 1; + optional uint64 scan_rows_count = 2; + optional uint64 skip_packs_count = 3; + optional uint64 skip_rows_count = 4; } message Sort { From 06ca0ac7901dc7189627705ce152ce3e6dc1283f Mon Sep 17 00:00:00 2001 From: hongyunyan <649330952@qq.com> Date: Fri, 18 Nov 2022 17:39:36 +0800 Subject: [PATCH 02/13] update proto --- proto/executor.proto | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/proto/executor.proto b/proto/executor.proto index 5610f519..5886448a 100644 --- a/proto/executor.proto +++ b/proto/executor.proto @@ -209,15 +209,18 @@ message ExecutorExecutionSummary { optional uint64 concurrency = 5; oneof DetailInfo { - FullTableScanContext full_table_scan_context = 6; + TableScanContext table_scan_context = 6; } } -message FullTableScanContext { +message TableScanContext { optional uint64 scan_packs_count = 1; optional uint64 scan_rows_count = 2; optional uint64 skip_packs_count = 3; optional uint64 skip_rows_count = 4; + optional uint64 rough_set_index_load_time_in_milliseconds = 5; + optional uint64 dmfile_read_time_in_milliseconds = 6; + optional uint64 create_snapshot_time_in_milliseconds = 7; } message Sort { From bce44035c5bc9e8a3a340e723b086a2b3c824f82 Mon Sep 17 00:00:00 2001 From: hongyunyan <649330952@qq.com> Date: Fri, 18 Nov 2022 18:21:11 +0800 Subject: [PATCH 03/13] update generated code --- go-tipb/executor.pb.go | 803 +++++++++++++++++++++++++++++++++-------- 1 file changed, 654 insertions(+), 149 deletions(-) diff --git a/go-tipb/executor.pb.go b/go-tipb/executor.pb.go index b7287bed..1bc53480 100644 --- a/go-tipb/executor.pb.go +++ b/go-tipb/executor.pb.go @@ -1101,8 +1101,11 @@ type ExecutorExecutionSummary struct { // Coresponding executor id ExecutorId *string `protobuf:"bytes,4,opt,name=executor_id,json=executorId" json:"executor_id,omitempty"` // The execution concurrency for this executor - Concurrency *uint64 `protobuf:"varint,5,opt,name=concurrency" json:"concurrency,omitempty"` - XXX_unrecognized []byte `json:"-"` + Concurrency *uint64 `protobuf:"varint,5,opt,name=concurrency" json:"concurrency,omitempty"` + // Types that are valid to be assigned to DetailInfo: + // *ExecutorExecutionSummary_TableScanContext + DetailInfo isExecutorExecutionSummary_DetailInfo `protobuf_oneof:"DetailInfo"` + XXX_unrecognized []byte `json:"-"` } func (m *ExecutorExecutionSummary) Reset() { *m = ExecutorExecutionSummary{} } @@ -1112,6 +1115,25 @@ func (*ExecutorExecutionSummary) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{13} } +type isExecutorExecutionSummary_DetailInfo interface { + isExecutorExecutionSummary_DetailInfo() + MarshalTo([]byte) (int, error) + Size() int +} + +type ExecutorExecutionSummary_TableScanContext struct { + TableScanContext *TableScanContext `protobuf:"bytes,6,opt,name=table_scan_context,json=tableScanContext,oneof"` +} + +func (*ExecutorExecutionSummary_TableScanContext) isExecutorExecutionSummary_DetailInfo() {} + +func (m *ExecutorExecutionSummary) GetDetailInfo() isExecutorExecutionSummary_DetailInfo { + if m != nil { + return m.DetailInfo + } + return nil +} + func (m *ExecutorExecutionSummary) GetTimeProcessedNs() uint64 { if m != nil && m.TimeProcessedNs != nil { return *m.TimeProcessedNs @@ -1147,6 +1169,133 @@ func (m *ExecutorExecutionSummary) GetConcurrency() uint64 { return 0 } +func (m *ExecutorExecutionSummary) GetTableScanContext() *TableScanContext { + if x, ok := m.GetDetailInfo().(*ExecutorExecutionSummary_TableScanContext); ok { + return x.TableScanContext + } + return nil +} + +// XXX_OneofFuncs is for the internal use of the proto package. +func (*ExecutorExecutionSummary) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { + return _ExecutorExecutionSummary_OneofMarshaler, _ExecutorExecutionSummary_OneofUnmarshaler, _ExecutorExecutionSummary_OneofSizer, []interface{}{ + (*ExecutorExecutionSummary_TableScanContext)(nil), + } +} + +func _ExecutorExecutionSummary_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { + m := msg.(*ExecutorExecutionSummary) + // DetailInfo + switch x := m.DetailInfo.(type) { + case *ExecutorExecutionSummary_TableScanContext: + _ = b.EncodeVarint(6<<3 | proto.WireBytes) + if err := b.EncodeMessage(x.TableScanContext); err != nil { + return err + } + case nil: + default: + return fmt.Errorf("ExecutorExecutionSummary.DetailInfo has unexpected type %T", x) + } + return nil +} + +func _ExecutorExecutionSummary_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { + m := msg.(*ExecutorExecutionSummary) + switch tag { + case 6: // DetailInfo.table_scan_context + if wire != proto.WireBytes { + return true, proto.ErrInternalBadWireType + } + msg := new(TableScanContext) + err := b.DecodeMessage(msg) + m.DetailInfo = &ExecutorExecutionSummary_TableScanContext{msg} + return true, err + default: + return false, nil + } +} + +func _ExecutorExecutionSummary_OneofSizer(msg proto.Message) (n int) { + m := msg.(*ExecutorExecutionSummary) + // DetailInfo + switch x := m.DetailInfo.(type) { + case *ExecutorExecutionSummary_TableScanContext: + s := proto.Size(x.TableScanContext) + n += proto.SizeVarint(6<<3 | proto.WireBytes) + n += proto.SizeVarint(uint64(s)) + n += s + case nil: + default: + panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) + } + return n +} + +type TableScanContext struct { + ScanPacksCount *uint64 `protobuf:"varint,1,opt,name=scan_packs_count,json=scanPacksCount" json:"scan_packs_count,omitempty"` + ScanRowsCount *uint64 `protobuf:"varint,2,opt,name=scan_rows_count,json=scanRowsCount" json:"scan_rows_count,omitempty"` + SkipPacksCount *uint64 `protobuf:"varint,3,opt,name=skip_packs_count,json=skipPacksCount" json:"skip_packs_count,omitempty"` + SkipRowsCount *uint64 `protobuf:"varint,4,opt,name=skip_rows_count,json=skipRowsCount" json:"skip_rows_count,omitempty"` + RoughSetIndexLoadTimeInMilliseconds *uint64 `protobuf:"varint,5,opt,name=rough_set_index_load_time_in_milliseconds,json=roughSetIndexLoadTimeInMilliseconds" json:"rough_set_index_load_time_in_milliseconds,omitempty"` + DmfileReadTimeInMilliseconds *uint64 `protobuf:"varint,6,opt,name=dmfile_read_time_in_milliseconds,json=dmfileReadTimeInMilliseconds" json:"dmfile_read_time_in_milliseconds,omitempty"` + CreateSnapshotTimeInMilliseconds *uint64 `protobuf:"varint,7,opt,name=create_snapshot_time_in_milliseconds,json=createSnapshotTimeInMilliseconds" json:"create_snapshot_time_in_milliseconds,omitempty"` + XXX_unrecognized []byte `json:"-"` +} + +func (m *TableScanContext) Reset() { *m = TableScanContext{} } +func (m *TableScanContext) String() string { return proto.CompactTextString(m) } +func (*TableScanContext) ProtoMessage() {} +func (*TableScanContext) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{14} } + +func (m *TableScanContext) GetScanPacksCount() uint64 { + if m != nil && m.ScanPacksCount != nil { + return *m.ScanPacksCount + } + return 0 +} + +func (m *TableScanContext) GetScanRowsCount() uint64 { + if m != nil && m.ScanRowsCount != nil { + return *m.ScanRowsCount + } + return 0 +} + +func (m *TableScanContext) GetSkipPacksCount() uint64 { + if m != nil && m.SkipPacksCount != nil { + return *m.SkipPacksCount + } + return 0 +} + +func (m *TableScanContext) GetSkipRowsCount() uint64 { + if m != nil && m.SkipRowsCount != nil { + return *m.SkipRowsCount + } + return 0 +} + +func (m *TableScanContext) GetRoughSetIndexLoadTimeInMilliseconds() uint64 { + if m != nil && m.RoughSetIndexLoadTimeInMilliseconds != nil { + return *m.RoughSetIndexLoadTimeInMilliseconds + } + return 0 +} + +func (m *TableScanContext) GetDmfileReadTimeInMilliseconds() uint64 { + if m != nil && m.DmfileReadTimeInMilliseconds != nil { + return *m.DmfileReadTimeInMilliseconds + } + return 0 +} + +func (m *TableScanContext) GetCreateSnapshotTimeInMilliseconds() uint64 { + if m != nil && m.CreateSnapshotTimeInMilliseconds != nil { + return *m.CreateSnapshotTimeInMilliseconds + } + return 0 +} + type Sort struct { ByItems []*ByItem `protobuf:"bytes,1,rep,name=byItems" json:"byItems,omitempty"` IsPartialSort *bool `protobuf:"varint,2,opt,name=isPartialSort" json:"isPartialSort,omitempty"` @@ -1157,7 +1306,7 @@ type Sort struct { func (m *Sort) Reset() { *m = Sort{} } func (m *Sort) String() string { return proto.CompactTextString(m) } func (*Sort) ProtoMessage() {} -func (*Sort) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{14} } +func (*Sort) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{15} } func (m *Sort) GetByItems() []*ByItem { if m != nil { @@ -1191,7 +1340,7 @@ type WindowFrameBound struct { func (m *WindowFrameBound) Reset() { *m = WindowFrameBound{} } func (m *WindowFrameBound) String() string { return proto.CompactTextString(m) } func (*WindowFrameBound) ProtoMessage() {} -func (*WindowFrameBound) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{15} } +func (*WindowFrameBound) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{16} } func (m *WindowFrameBound) GetType() WindowBoundType { if m != nil { @@ -1231,7 +1380,7 @@ type WindowFrame struct { func (m *WindowFrame) Reset() { *m = WindowFrame{} } func (m *WindowFrame) String() string { return proto.CompactTextString(m) } func (*WindowFrame) ProtoMessage() {} -func (*WindowFrame) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{16} } +func (*WindowFrame) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{17} } func (m *WindowFrame) GetType() WindowFrameType { if m != nil { @@ -1266,7 +1415,7 @@ type Window struct { func (m *Window) Reset() { *m = Window{} } func (m *Window) String() string { return proto.CompactTextString(m) } func (*Window) ProtoMessage() {} -func (*Window) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{17} } +func (*Window) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{18} } func (m *Window) GetFuncDesc() []*Expr { if m != nil { @@ -1318,6 +1467,7 @@ func init() { proto.RegisterType((*Limit)(nil), "tipb.Limit") proto.RegisterType((*Kill)(nil), "tipb.Kill") proto.RegisterType((*ExecutorExecutionSummary)(nil), "tipb.ExecutorExecutionSummary") + proto.RegisterType((*TableScanContext)(nil), "tipb.TableScanContext") proto.RegisterType((*Sort)(nil), "tipb.Sort") proto.RegisterType((*WindowFrameBound)(nil), "tipb.WindowFrameBound") proto.RegisterType((*WindowFrame)(nil), "tipb.WindowFrame") @@ -2356,6 +2506,83 @@ func (m *ExecutorExecutionSummary) MarshalTo(dAtA []byte) (int, error) { i++ i = encodeVarintExecutor(dAtA, i, uint64(*m.Concurrency)) } + if m.DetailInfo != nil { + nn21, err := m.DetailInfo.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += nn21 + } + if m.XXX_unrecognized != nil { + i += copy(dAtA[i:], m.XXX_unrecognized) + } + return i, nil +} + +func (m *ExecutorExecutionSummary_TableScanContext) MarshalTo(dAtA []byte) (int, error) { + i := 0 + if m.TableScanContext != nil { + dAtA[i] = 0x32 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(m.TableScanContext.Size())) + n22, err := m.TableScanContext.MarshalTo(dAtA[i:]) + if err != nil { + return 0, err + } + i += n22 + } + return i, nil +} +func (m *TableScanContext) Marshal() (dAtA []byte, err error) { + size := m.Size() + dAtA = make([]byte, size) + n, err := m.MarshalTo(dAtA) + if err != nil { + return nil, err + } + return dAtA[:n], nil +} + +func (m *TableScanContext) MarshalTo(dAtA []byte) (int, error) { + var i int + _ = i + var l int + _ = l + if m.ScanPacksCount != nil { + dAtA[i] = 0x8 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.ScanPacksCount)) + } + if m.ScanRowsCount != nil { + dAtA[i] = 0x10 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.ScanRowsCount)) + } + if m.SkipPacksCount != nil { + dAtA[i] = 0x18 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.SkipPacksCount)) + } + if m.SkipRowsCount != nil { + dAtA[i] = 0x20 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.SkipRowsCount)) + } + if m.RoughSetIndexLoadTimeInMilliseconds != nil { + dAtA[i] = 0x28 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.RoughSetIndexLoadTimeInMilliseconds)) + } + if m.DmfileReadTimeInMilliseconds != nil { + dAtA[i] = 0x30 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.DmfileReadTimeInMilliseconds)) + } + if m.CreateSnapshotTimeInMilliseconds != nil { + dAtA[i] = 0x38 + i++ + i = encodeVarintExecutor(dAtA, i, uint64(*m.CreateSnapshotTimeInMilliseconds)) + } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) } @@ -2403,11 +2630,11 @@ func (m *Sort) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x1a i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Child.Size())) - n21, err := m.Child.MarshalTo(dAtA[i:]) + n23, err := m.Child.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n21 + i += n23 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -2486,21 +2713,21 @@ func (m *WindowFrame) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x12 i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Start.Size())) - n22, err := m.Start.MarshalTo(dAtA[i:]) + n24, err := m.Start.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n22 + i += n24 } if m.End != nil { dAtA[i] = 0x1a i++ i = encodeVarintExecutor(dAtA, i, uint64(m.End.Size())) - n23, err := m.End.MarshalTo(dAtA[i:]) + n25, err := m.End.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n23 + i += n25 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -2563,21 +2790,21 @@ func (m *Window) MarshalTo(dAtA []byte) (int, error) { dAtA[i] = 0x22 i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Frame.Size())) - n24, err := m.Frame.MarshalTo(dAtA[i:]) + n26, err := m.Frame.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n24 + i += n26 } if m.Child != nil { dAtA[i] = 0x2a i++ i = encodeVarintExecutor(dAtA, i, uint64(m.Child.Size())) - n25, err := m.Child.MarshalTo(dAtA[i:]) + n27, err := m.Child.MarshalTo(dAtA[i:]) if err != nil { return 0, err } - i += n25 + i += n27 } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -3047,6 +3274,48 @@ func (m *ExecutorExecutionSummary) Size() (n int) { if m.Concurrency != nil { n += 1 + sovExecutor(uint64(*m.Concurrency)) } + if m.DetailInfo != nil { + n += m.DetailInfo.Size() + } + if m.XXX_unrecognized != nil { + n += len(m.XXX_unrecognized) + } + return n +} + +func (m *ExecutorExecutionSummary_TableScanContext) Size() (n int) { + var l int + _ = l + if m.TableScanContext != nil { + l = m.TableScanContext.Size() + n += 1 + l + sovExecutor(uint64(l)) + } + return n +} +func (m *TableScanContext) Size() (n int) { + var l int + _ = l + if m.ScanPacksCount != nil { + n += 1 + sovExecutor(uint64(*m.ScanPacksCount)) + } + if m.ScanRowsCount != nil { + n += 1 + sovExecutor(uint64(*m.ScanRowsCount)) + } + if m.SkipPacksCount != nil { + n += 1 + sovExecutor(uint64(*m.SkipPacksCount)) + } + if m.SkipRowsCount != nil { + n += 1 + sovExecutor(uint64(*m.SkipRowsCount)) + } + if m.RoughSetIndexLoadTimeInMilliseconds != nil { + n += 1 + sovExecutor(uint64(*m.RoughSetIndexLoadTimeInMilliseconds)) + } + if m.DmfileReadTimeInMilliseconds != nil { + n += 1 + sovExecutor(uint64(*m.DmfileReadTimeInMilliseconds)) + } + if m.CreateSnapshotTimeInMilliseconds != nil { + n += 1 + sovExecutor(uint64(*m.CreateSnapshotTimeInMilliseconds)) + } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) } @@ -6378,6 +6647,229 @@ func (m *ExecutorExecutionSummary) Unmarshal(dAtA []byte) error { } } m.Concurrency = &v + case 6: + if wireType != 2 { + return fmt.Errorf("proto: wrong wireType = %d for field TableScanContext", wireType) + } + var msglen int + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + msglen |= (int(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + if msglen < 0 { + return ErrInvalidLengthExecutor + } + postIndex := iNdEx + msglen + if postIndex > l { + return io.ErrUnexpectedEOF + } + v := &TableScanContext{} + if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { + return err + } + m.DetailInfo = &ExecutorExecutionSummary_TableScanContext{v} + iNdEx = postIndex + default: + iNdEx = preIndex + skippy, err := skipExecutor(dAtA[iNdEx:]) + if err != nil { + return err + } + if skippy < 0 { + return ErrInvalidLengthExecutor + } + if (iNdEx + skippy) > l { + return io.ErrUnexpectedEOF + } + m.XXX_unrecognized = append(m.XXX_unrecognized, dAtA[iNdEx:iNdEx+skippy]...) + iNdEx += skippy + } + } + + if iNdEx > l { + return io.ErrUnexpectedEOF + } + return nil +} +func (m *TableScanContext) Unmarshal(dAtA []byte) error { + l := len(dAtA) + iNdEx := 0 + for iNdEx < l { + preIndex := iNdEx + var wire uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + wire |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + fieldNum := int32(wire >> 3) + wireType := int(wire & 0x7) + if wireType == 4 { + return fmt.Errorf("proto: TableScanContext: wiretype end group for non-group") + } + if fieldNum <= 0 { + return fmt.Errorf("proto: TableScanContext: illegal tag %d (wire type %d)", fieldNum, wire) + } + switch fieldNum { + case 1: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ScanPacksCount", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.ScanPacksCount = &v + case 2: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field ScanRowsCount", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.ScanRowsCount = &v + case 3: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field SkipPacksCount", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.SkipPacksCount = &v + case 4: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field SkipRowsCount", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.SkipRowsCount = &v + case 5: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field RoughSetIndexLoadTimeInMilliseconds", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.RoughSetIndexLoadTimeInMilliseconds = &v + case 6: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field DmfileReadTimeInMilliseconds", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.DmfileReadTimeInMilliseconds = &v + case 7: + if wireType != 0 { + return fmt.Errorf("proto: wrong wireType = %d for field CreateSnapshotTimeInMilliseconds", wireType) + } + var v uint64 + for shift := uint(0); ; shift += 7 { + if shift >= 64 { + return ErrIntOverflowExecutor + } + if iNdEx >= l { + return io.ErrUnexpectedEOF + } + b := dAtA[iNdEx] + iNdEx++ + v |= (uint64(b) & 0x7F) << shift + if b < 0x80 { + break + } + } + m.CreateSnapshotTimeInMilliseconds = &v default: iNdEx = preIndex skippy, err := skipExecutor(dAtA[iNdEx:]) @@ -7131,137 +7623,150 @@ var ( func init() { proto.RegisterFile("executor.proto", fileDescriptorExecutor) } var fileDescriptorExecutor = []byte{ - // 2105 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcf, 0x73, 0x1b, 0x4b, - 0xf1, 0xf7, 0x4a, 0xab, 0x5f, 0x2d, 0x59, 0x5a, 0xcf, 0x37, 0xc9, 0x77, 0x93, 0x47, 0x12, 0x45, - 0x24, 0xc4, 0xb8, 0x82, 0x93, 0x97, 0x40, 0x01, 0x07, 0xe0, 0xc5, 0x79, 0xf1, 0x7b, 0x4e, 0x1e, - 0x79, 0xae, 0xb5, 0x0b, 0x8e, 0x5b, 0xab, 0xdd, 0x91, 0x3c, 0xc9, 0x6a, 0x66, 0x33, 0xbb, 0x8b, - 0xad, 0x9c, 0xb8, 0x70, 0xe3, 0x06, 0x45, 0x71, 0xe3, 0xc2, 0x85, 0xa2, 0x8a, 0xbf, 0xe3, 0x1d, - 0xb9, 0x42, 0x51, 0x14, 0x15, 0xfe, 0x05, 0xee, 0x50, 0x3d, 0x33, 0xbb, 0x5a, 0x59, 0xb2, 0xc9, - 0x91, 0x93, 0x35, 0x9f, 0xfe, 0x74, 0x6f, 0x4f, 0xf7, 0x74, 0xcf, 0xb4, 0xa1, 0x4f, 0xcf, 0x68, - 0x98, 0x67, 0x42, 0xee, 0x26, 0x52, 0x64, 0x82, 0xd8, 0x19, 0x4b, 0xc6, 0x37, 0x1c, 0x7a, 0x96, - 0x48, 0x9a, 0xa6, 0x4c, 0x70, 0x8d, 0xdf, 0xe8, 0xa5, 0xe1, 0x09, 0x9d, 0x05, 0x66, 0x75, 0x65, - 0x2a, 0xa6, 0x42, 0xfd, 0x7c, 0x88, 0xbf, 0x34, 0x3a, 0xfa, 0x57, 0x13, 0xda, 0xcf, 0x8d, 0x39, - 0x72, 0x17, 0x6a, 0x59, 0xe2, 0x5a, 0x43, 0x6b, 0xbb, 0xff, 0xb8, 0xbf, 0x8b, 0x56, 0x77, 0x51, - 0x76, 0x3c, 0x4f, 0xe8, 0x9e, 0xfd, 0xd5, 0xdf, 0x6f, 0x6f, 0x78, 0xb5, 0x2c, 0x21, 0x3b, 0xd0, - 0xce, 0xc6, 0xb1, 0x9f, 0x86, 0x01, 0x77, 0x6b, 0x43, 0x6b, 0xbb, 0xfb, 0x78, 0xa0, 0xb9, 0xc7, - 0xc1, 0x38, 0xa6, 0x47, 0x61, 0xc0, 0xbd, 0x56, 0x36, 0x8e, 0xf1, 0x07, 0x72, 0x59, 0x74, 0xa6, - 0xb9, 0xf5, 0x2a, 0xf7, 0x80, 0x47, 0xf4, 0x4c, 0x73, 0x59, 0xa4, 0x7e, 0x90, 0x6f, 0x41, 0x27, - 0xa5, 0x31, 0x0d, 0x33, 0x26, 0xb8, 0x6b, 0x57, 0xc9, 0x47, 0x05, 0xec, 0x2d, 0x18, 0xe4, 0x09, - 0x74, 0x83, 0xe9, 0x54, 0xd2, 0x69, 0xa0, 0x14, 0x1a, 0x4a, 0x61, 0x4b, 0x2b, 0x3c, 0x5d, 0x08, - 0xbc, 0x2a, 0x8b, 0xdc, 0x02, 0x3b, 0x13, 0xc9, 0x2b, 0xb7, 0xa9, 0xd8, 0x60, 0xfc, 0x16, 0xc9, - 0x2b, 0x4f, 0xe1, 0xe4, 0x0e, 0x34, 0x62, 0x36, 0x63, 0x99, 0xdb, 0x52, 0x84, 0xae, 0x26, 0x7c, - 0x81, 0x90, 0xa7, 0x25, 0xe4, 0x19, 0x6c, 0xd1, 0xb3, 0xf0, 0x24, 0xe0, 0x53, 0xea, 0x4b, 0x1a, - 0x52, 0xf6, 0x33, 0x2a, 0xdd, 0xb6, 0xa2, 0x5f, 0x2b, 0x62, 0xa6, 0xc5, 0x9e, 0x91, 0x7a, 0x0e, - 0x3d, 0x87, 0xa0, 0x1f, 0xaf, 0x05, 0xe3, 0x6e, 0xa7, 0xea, 0xc7, 0x0b, 0xc1, 0xb8, 0xa7, 0x70, - 0x72, 0x1b, 0xba, 0x45, 0x92, 0x7d, 0x16, 0xb9, 0x30, 0xb4, 0xb6, 0x3b, 0x1e, 0x14, 0xd0, 0x41, - 0x84, 0x06, 0xde, 0xb0, 0x38, 0x76, 0xbb, 0x55, 0x03, 0x2f, 0x59, 0x1c, 0x7b, 0x0a, 0x27, 0x3f, - 0x80, 0x41, 0xe9, 0x65, 0x4a, 0x79, 0x44, 0xa5, 0xdb, 0x53, 0xd4, 0x2b, 0xcb, 0x3e, 0x1e, 0x29, - 0x99, 0xd7, 0xa7, 0x4b, 0x6b, 0xf2, 0x08, 0xe0, 0x50, 0x8a, 0xd7, 0x26, 0x19, 0x9b, 0x4a, 0xd3, - 0xd1, 0x9a, 0x0b, 0xdc, 0xab, 0x70, 0xc8, 0x0b, 0xb8, 0x92, 0x04, 0x32, 0x63, 0xb8, 0xf0, 0x33, - 0x3c, 0x09, 0x3a, 0xeb, 0x7d, 0xa5, 0xeb, 0x1a, 0xdd, 0x82, 0xb1, 0x38, 0x2a, 0x24, 0x59, 0xc1, - 0x70, 0x73, 0xa9, 0x90, 0x99, 0x3b, 0xa8, 0x6e, 0xee, 0x48, 0xc8, 0xcc, 0x53, 0x38, 0xb9, 0x0b, - 0xcd, 0x53, 0xc6, 0x23, 0x71, 0xea, 0x3a, 0x8a, 0xd1, 0xd3, 0x8c, 0x9f, 0x2a, 0xcc, 0x33, 0x32, - 0xf2, 0x0a, 0xee, 0x4c, 0x18, 0xa7, 0xfe, 0x54, 0x06, 0x8c, 0xd3, 0xc8, 0x4f, 0x4f, 0xf2, 0xc9, - 0x04, 0xdd, 0xca, 0x24, 0x0d, 0x66, 0x7e, 0x28, 0x72, 0x9e, 0xb9, 0x5b, 0x43, 0x6b, 0xdb, 0x36, - 0x87, 0xfb, 0x26, 0xd2, 0x3f, 0xd3, 0xec, 0x23, 0x4d, 0x3e, 0x52, 0xdc, 0x67, 0x48, 0x25, 0x2f, - 0xe0, 0xf6, 0x5a, 0x7b, 0xe3, 0x20, 0x0b, 0x4f, 0xfc, 0x94, 0xbd, 0xa3, 0x2e, 0xa9, 0x58, 0xfb, - 0x68, 0xd5, 0xda, 0x1e, 0x32, 0x8f, 0xd8, 0x3b, 0x3a, 0xfa, 0x5d, 0x0d, 0xfa, 0xcb, 0x29, 0x20, - 0xdb, 0x95, 0xe2, 0x23, 0xcb, 0x49, 0x5a, 0x29, 0xc0, 0x2d, 0xca, 0x43, 0x11, 0xd1, 0xc8, 0xcf, - 0x82, 0xf4, 0x8d, 0x3f, 0xa3, 0x59, 0xe0, 0xd6, 0x86, 0xf5, 0xed, 0x9e, 0x37, 0x30, 0x82, 0xe3, - 0x20, 0x7d, 0xf3, 0x63, 0x9a, 0x05, 0xe4, 0x63, 0xe8, 0x2f, 0xd2, 0xf2, 0x86, 0xce, 0x53, 0xb7, - 0x3e, 0xac, 0x2f, 0x82, 0xfa, 0xfc, 0x2c, 0x91, 0xde, 0x66, 0xc9, 0x78, 0x49, 0xe7, 0x29, 0xb9, - 0x0b, 0x8d, 0xf0, 0x84, 0xc5, 0x91, 0xa9, 0xc1, 0x4a, 0x23, 0xc0, 0xb3, 0xe7, 0x69, 0x21, 0xb9, - 0x07, 0x8d, 0x6c, 0x9e, 0xd0, 0xd4, 0x6d, 0x28, 0x7b, 0xa6, 0x52, 0xf7, 0x19, 0x8d, 0x23, 0x74, - 0xd7, 0xd3, 0x52, 0xf2, 0x5d, 0x18, 0x04, 0x71, 0xec, 0x4f, 0x10, 0xf7, 0xb5, 0x42, 0x73, 0xbd, - 0xc2, 0x66, 0x10, 0xc7, 0xe5, 0x2a, 0x1d, 0xfd, 0xda, 0x02, 0xe7, 0x7c, 0x21, 0xad, 0xdf, 0xb9, - 0xb5, 0x7e, 0xe7, 0x8f, 0xa0, 0x5b, 0xfd, 0x6a, 0x6d, 0xfd, 0x57, 0x61, 0x52, 0x7e, 0x92, 0x8c, - 0x54, 0x06, 0xea, 0x17, 0x65, 0x00, 0x63, 0x3f, 0xfa, 0x65, 0x1d, 0x3a, 0x8b, 0x83, 0x7a, 0x1b, - 0xda, 0xfa, 0xa8, 0xb3, 0x48, 0x65, 0xae, 0x6e, 0xb2, 0xd4, 0x52, 0xe8, 0x41, 0x44, 0x76, 0xa0, - 0x15, 0x8a, 0x38, 0x9f, 0xf1, 0xc2, 0x01, 0x53, 0x44, 0xcf, 0x14, 0x78, 0xc0, 0x27, 0xc2, 0x2b, - 0x08, 0xc4, 0x05, 0x3b, 0xa2, 0x69, 0xa8, 0x1c, 0x68, 0x1b, 0x43, 0x0a, 0x21, 0x0f, 0x80, 0x24, - 0x92, 0xcd, 0x02, 0x39, 0xf7, 0x35, 0xd9, 0x67, 0x51, 0xea, 0xda, 0xc3, 0xfa, 0x76, 0xdd, 0x73, - 0x8c, 0xc4, 0x58, 0x8c, 0x52, 0xf2, 0x09, 0x38, 0x9c, 0x9e, 0x65, 0xbe, 0xa4, 0x41, 0xe4, 0x53, - 0x3e, 0x65, 0x9c, 0xaa, 0xee, 0xd8, 0x2f, 0x3e, 0xfe, 0x5c, 0x61, 0x95, 0x43, 0xd5, 0x47, 0xbe, - 0x47, 0x83, 0x48, 0x4b, 0xc8, 0x03, 0x68, 0x4a, 0xdc, 0x75, 0x91, 0x2b, 0x73, 0x04, 0x5e, 0xd2, - 0xb9, 0x87, 0xb0, 0xd1, 0x32, 0x1c, 0xf2, 0x7d, 0xb8, 0x5e, 0x78, 0x97, 0x48, 0x3a, 0x61, 0x67, - 0x55, 0x27, 0x5b, 0xca, 0xc9, 0x6b, 0x86, 0x70, 0xa8, 0xe4, 0x0b, 0x57, 0x6f, 0x02, 0xbc, 0xa1, - 0x34, 0xf1, 0x85, 0x8c, 0x4c, 0x13, 0x6d, 0x7b, 0x1d, 0x44, 0xbe, 0x44, 0x80, 0x0c, 0xa1, 0xc7, - 0x52, 0x7f, 0x12, 0xa4, 0x99, 0xee, 0x25, 0x1d, 0x45, 0x00, 0x96, 0xee, 0x07, 0x69, 0x86, 0x09, - 0x18, 0xfd, 0xb1, 0x06, 0x64, 0xb5, 0xa9, 0xfc, 0x6f, 0xe6, 0xe5, 0xd2, 0x38, 0x35, 0x2e, 0x8d, - 0xd3, 0xd7, 0x61, 0x51, 0xa3, 0x8a, 0xde, 0x54, 0xf4, 0x5e, 0x09, 0x22, 0xe9, 0x7c, 0xb4, 0x5a, - 0x2b, 0xd1, 0xfa, 0xb7, 0x0d, 0x36, 0x5e, 0x32, 0xe4, 0x63, 0xe8, 0xe0, 0x35, 0xa3, 0x4a, 0x63, - 0xf9, 0xbe, 0x47, 0x71, 0xe5, 0x64, 0xb4, 0x5f, 0x9b, 0x35, 0xf9, 0x21, 0xf4, 0x95, 0x0a, 0xde, - 0x41, 0x5a, 0xaf, 0x56, 0x2d, 0x14, 0xd4, 0x3b, 0xf7, 0x56, 0xe8, 0xbd, 0xae, 0x60, 0xf8, 0x12, - 0x50, 0x8d, 0x43, 0x52, 0x6e, 0x5a, 0xd0, 0xf9, 0xc6, 0x52, 0xca, 0xc9, 0x1d, 0xe8, 0x30, 0xce, - 0x29, 0x5e, 0x7d, 0x67, 0xaa, 0x0b, 0x15, 0xf9, 0x6b, 0x2b, 0xf8, 0x20, 0x3a, 0x23, 0x8f, 0xa0, - 0x1f, 0xd3, 0x49, 0xe6, 0x2b, 0x9f, 0x54, 0x5f, 0x6b, 0xac, 0xf4, 0xb5, 0x1e, 0x32, 0xd0, 0x31, - 0xd5, 0xd6, 0x1e, 0xc3, 0x40, 0xb2, 0xe9, 0x49, 0x55, 0xa5, 0xb9, 0xda, 0x0a, 0x15, 0xa5, 0xd4, - 0x79, 0x04, 0xdd, 0x44, 0x8a, 0x31, 0x35, 0x3d, 0xa4, 0x75, 0x41, 0x0f, 0x51, 0x1c, 0xdd, 0x43, - 0x1e, 0x41, 0x77, 0x9c, 0xb3, 0xb2, 0xeb, 0xb4, 0x2f, 0xd0, 0x50, 0x1c, 0xad, 0xf1, 0x04, 0x06, - 0x6a, 0x27, 0xa1, 0xe0, 0x91, 0xca, 0x65, 0xea, 0x76, 0x56, 0xfc, 0x52, 0x9b, 0x7d, 0x56, 0x32, - 0xc8, 0x77, 0xc0, 0xd1, 0x9b, 0xa9, 0x68, 0xc1, 0x8a, 0x96, 0xde, 0xf0, 0xb2, 0x9a, 0xc8, 0x4e, - 0xa8, 0xac, 0xaa, 0x75, 0x57, 0xd5, 0x14, 0xa7, 0xa2, 0xf6, 0x39, 0x7c, 0xa4, 0xd5, 0xe8, 0xdb, - 0x8a, 0xa6, 0x3f, 0x91, 0x62, 0xe6, 0x33, 0xee, 0xf6, 0x56, 0x2c, 0xfc, 0xbf, 0xa2, 0x3f, 0x7f, - 0xbb, 0xb0, 0xb1, 0x2f, 0xc5, 0xec, 0x80, 0x8f, 0xfe, 0x62, 0x41, 0xa7, 0x7c, 0xfa, 0xfd, 0xf7, - 0x32, 0xbd, 0x0d, 0x6d, 0x86, 0x6c, 0x24, 0xd4, 0xaa, 0x04, 0x85, 0x2e, 0xd7, 0x71, 0xfd, 0x43, - 0xeb, 0xd8, 0x5e, 0xa9, 0xe3, 0x6b, 0xd0, 0xcc, 0x39, 0x7b, 0x9b, 0xeb, 0x3e, 0xd9, 0xf6, 0xcc, - 0xea, 0x82, 0xfa, 0x6e, 0xae, 0xaf, 0xef, 0xd1, 0xaf, 0x2c, 0xe8, 0x94, 0x2f, 0x55, 0xb2, 0x03, - 0x50, 0x09, 0xb2, 0xb5, 0x12, 0xa2, 0x8a, 0x94, 0x7c, 0x1b, 0xfa, 0x32, 0xe1, 0xd5, 0xa4, 0xe8, - 0xa6, 0xb4, 0xa9, 0xf9, 0x5e, 0xc2, 0xcd, 0xe1, 0x4c, 0x78, 0x25, 0x2b, 0xe5, 0x3d, 0x5d, 0xbf, - 0xe4, 0x9e, 0x1e, 0xfd, 0xdc, 0xaa, 0x3e, 0xe5, 0xc8, 0x10, 0x1a, 0x38, 0x27, 0xac, 0xf3, 0x48, - 0x0b, 0xc8, 0x0e, 0x74, 0xd0, 0x19, 0xcd, 0x5a, 0xeb, 0x47, 0x5b, 0xea, 0x1f, 0x1f, 0xea, 0xc2, - 0x2f, 0x6a, 0xd0, 0xad, 0xbc, 0xc8, 0xc9, 0x3d, 0x68, 0x4f, 0xa5, 0xc8, 0x13, 0x7f, 0x3c, 0x5f, - 0xe3, 0x46, 0x4b, 0xc9, 0xf6, 0xe6, 0x48, 0x0b, 0xa6, 0x53, 0x7f, 0x92, 0xf3, 0xd0, 0xf8, 0xb1, - 0x44, 0x0b, 0xa6, 0xd3, 0xfd, 0x9c, 0x87, 0x64, 0x08, 0x6d, 0xfd, 0xa2, 0xa3, 0xd1, 0x52, 0x8b, - 0x2e, 0x51, 0xf2, 0x10, 0x7a, 0xb8, 0xa3, 0xf2, 0x9b, 0xf6, 0xba, 0x4d, 0x81, 0x4c, 0xf8, 0x67, - 0xe6, 0xcb, 0x46, 0xa1, 0xfc, 0x7a, 0xe3, 0x22, 0x85, 0xa7, 0xc6, 0x87, 0x32, 0x0e, 0xcd, 0xcb, - 0xe2, 0xf0, 0x16, 0x6c, 0x1c, 0x35, 0xc8, 0x7d, 0x68, 0xab, 0x0b, 0x6f, 0xb1, 0x7f, 0xf3, 0x80, - 0xdd, 0x9b, 0x1f, 0x64, 0x74, 0xe6, 0xb5, 0x94, 0x74, 0x6f, 0x4e, 0x6e, 0x14, 0xd3, 0x48, 0xad, - 0xf2, 0xae, 0x34, 0x63, 0xc8, 0x87, 0x85, 0xfe, 0x00, 0x1a, 0x6a, 0x78, 0x59, 0x98, 0xb2, 0x2e, - 0x31, 0x55, 0xbb, 0xcc, 0xd4, 0x27, 0x60, 0xe3, 0x7c, 0x41, 0xbe, 0x06, 0xcd, 0x50, 0x70, 0x7e, - 0xf0, 0xe9, 0x92, 0x29, 0x83, 0xe1, 0x77, 0xde, 0xe6, 0x54, 0xce, 0x95, 0xad, 0x22, 0x15, 0x1a, - 0x1a, 0xfd, 0xcd, 0x02, 0xb7, 0xb0, 0xaa, 0xff, 0x32, 0xc1, 0x8f, 0xf2, 0x19, 0x96, 0x11, 0x3e, - 0xed, 0x32, 0x36, 0xa3, 0x7e, 0x22, 0x45, 0x48, 0xd3, 0x94, 0x46, 0xbe, 0x2a, 0x1b, 0x6b, 0xdb, - 0xf6, 0x06, 0x28, 0x38, 0x2c, 0xf0, 0x57, 0x78, 0x44, 0xb7, 0x78, 0x3e, 0x43, 0x6a, 0x94, 0x87, - 0x34, 0xf2, 0xa5, 0x38, 0x4d, 0x75, 0x8c, 0xbc, 0x01, 0xcf, 0x67, 0x87, 0x06, 0xf7, 0xc4, 0x69, - 0x4a, 0xee, 0x41, 0x1f, 0xb9, 0x2c, 0xa3, 0x32, 0xd0, 0xb5, 0x55, 0x57, 0xc4, 0x4d, 0x9e, 0xcf, - 0x0e, 0x4a, 0xf0, 0xfc, 0xc0, 0x65, 0xaf, 0x0c, 0x5c, 0x43, 0xe8, 0x86, 0x82, 0x87, 0xb9, 0x94, - 0x94, 0x87, 0x73, 0xd5, 0x28, 0x6c, 0xaf, 0x0a, 0x8d, 0xde, 0x81, 0x8d, 0x33, 0x0a, 0xf9, 0x06, - 0xb4, 0xc6, 0x2a, 0x91, 0xe9, 0xfa, 0xec, 0x1a, 0x21, 0xb9, 0x0b, 0x9b, 0x2c, 0x55, 0x8f, 0x97, - 0x20, 0x46, 0x45, 0x1d, 0x32, 0x6f, 0x19, 0xfc, 0xc0, 0x3c, 0xff, 0xc1, 0x02, 0x47, 0x8f, 0x3f, - 0xfb, 0x32, 0x98, 0xd1, 0x3d, 0x91, 0x73, 0x3c, 0xf7, 0x76, 0xe5, 0x82, 0xbf, 0x5a, 0x1d, 0x92, - 0x14, 0xa1, 0x72, 0x57, 0x2b, 0x22, 0x19, 0x41, 0x27, 0xe7, 0x63, 0x14, 0xd1, 0x68, 0x29, 0x81, - 0x0b, 0x18, 0x7b, 0xa5, 0x98, 0x4c, 0x52, 0x9a, 0x99, 0x38, 0x9a, 0x15, 0xd9, 0x86, 0x4e, 0x18, - 0xc4, 0x21, 0x96, 0x43, 0x6a, 0x2a, 0xac, 0x5a, 0xae, 0x0b, 0xe1, 0xe8, 0x37, 0x16, 0x74, 0x2b, - 0xbe, 0x5e, 0xe6, 0xa6, 0x22, 0xac, 0xb8, 0xf9, 0x00, 0x1a, 0x69, 0x16, 0x98, 0x80, 0x95, 0x53, - 0xf7, 0xf9, 0xed, 0x7b, 0x9a, 0x44, 0xb6, 0xa1, 0x4e, 0x79, 0x11, 0xbe, 0x8b, 0xb8, 0x48, 0x19, - 0xfd, 0xd5, 0x82, 0xa6, 0x96, 0x90, 0xfb, 0xd0, 0xc1, 0xca, 0xf7, 0xd5, 0x85, 0xb1, 0xda, 0xa3, - 0xda, 0x28, 0xfc, 0x14, 0xaf, 0x8e, 0x87, 0xb0, 0x78, 0x84, 0x61, 0x3d, 0xd7, 0xd6, 0x64, 0xbc, - 0x5b, 0x32, 0xf6, 0xe6, 0x4b, 0xc5, 0x5f, 0xbf, 0xac, 0xf8, 0xef, 0x43, 0x63, 0x82, 0x0e, 0x9a, - 0x31, 0x6c, 0x6b, 0xc5, 0x73, 0x4f, 0xcb, 0x17, 0x27, 0xa4, 0x71, 0xc9, 0x09, 0xd9, 0xf9, 0x7d, - 0x4d, 0xff, 0xa3, 0x47, 0x3d, 0xc6, 0xb6, 0x60, 0x13, 0xff, 0x96, 0x0f, 0x66, 0x67, 0xa3, 0x80, - 0xca, 0xcb, 0xd9, 0xb1, 0x0a, 0xa8, 0xbc, 0xd3, 0x9c, 0x1a, 0xf9, 0x3f, 0x18, 0x20, 0x54, 0xe9, - 0xe6, 0x4e, 0x9d, 0xf4, 0xa0, 0xad, 0xac, 0x89, 0xe4, 0x95, 0x63, 0x93, 0x4d, 0xe8, 0xe0, 0x4a, - 0xb5, 0x1d, 0xa7, 0x51, 0x1a, 0x51, 0xcd, 0xf8, 0xe9, 0x74, 0xea, 0x34, 0x0b, 0x3e, 0xbe, 0xb2, - 0x9c, 0x56, 0xb1, 0xc2, 0xde, 0xe2, 0xb4, 0xc9, 0x35, 0x20, 0xb8, 0x5a, 0x9e, 0x8d, 0x9d, 0x0e, - 0x71, 0xe1, 0x4a, 0x15, 0x2f, 0x26, 0x42, 0x07, 0x08, 0x81, 0x3e, 0x4a, 0x16, 0x77, 0x9c, 0xd3, - 0x25, 0x37, 0xe0, 0x9a, 0xc2, 0x56, 0x26, 0x03, 0xa7, 0x57, 0x7c, 0x0f, 0x8b, 0xcb, 0xd9, 0x24, - 0x7d, 0x00, 0x5c, 0xe9, 0xb0, 0x3a, 0xfd, 0x9d, 0xef, 0x41, 0xaf, 0x3a, 0xf3, 0x91, 0x01, 0x74, - 0x0f, 0x83, 0x34, 0x3d, 0x3e, 0x91, 0x22, 0x9f, 0x9e, 0x38, 0x1b, 0xb8, 0xbd, 0x3d, 0x29, 0x82, - 0x28, 0x0c, 0xd2, 0xcc, 0xb1, 0x48, 0x1b, 0xec, 0xcf, 0x83, 0xf4, 0xc4, 0xa9, 0xed, 0xec, 0x02, - 0x2c, 0x06, 0x2b, 0xd2, 0x81, 0xc6, 0x17, 0x22, 0x0c, 0x62, 0x67, 0x03, 0x29, 0xc7, 0xec, 0xe5, - 0x4f, 0x1c, 0x8b, 0x74, 0xa1, 0x75, 0xcc, 0xf6, 0x63, 0xcd, 0xff, 0x93, 0x05, 0xed, 0xe2, 0xb5, - 0xbd, 0x88, 0x3e, 0xa7, 0x52, 0xc5, 0x65, 0x83, 0x5c, 0x85, 0x2d, 0x15, 0x47, 0x3a, 0xc9, 0xbe, - 0xcc, 0x33, 0x03, 0x5b, 0x45, 0x80, 0x3c, 0x7c, 0xd9, 0x2d, 0xf0, 0x1a, 0x71, 0xa0, 0xa7, 0x93, - 0x35, 0x63, 0x0a, 0xa9, 0x93, 0x2b, 0xe0, 0xa8, 0x5c, 0xf1, 0x8c, 0x95, 0xa8, 0x4d, 0xae, 0xc3, - 0xd5, 0x25, 0xb3, 0xa5, 0xa8, 0x41, 0x6e, 0xc2, 0xf5, 0x42, 0x61, 0x55, 0xdc, 0xdc, 0x19, 0x42, - 0xaf, 0xfa, 0xca, 0x2f, 0xbe, 0x88, 0xdb, 0xd7, 0x2e, 0xef, 0xfc, 0x08, 0x06, 0xe7, 0xda, 0x0b, - 0x86, 0x6b, 0x5f, 0xc4, 0xb1, 0x38, 0x65, 0x7c, 0xaa, 0xa3, 0x77, 0x28, 0x69, 0x48, 0x23, 0x5c, - 0x5a, 0x18, 0xfd, 0x67, 0xaa, 0x7d, 0x66, 0x9e, 0x38, 0x75, 0x6a, 0x3b, 0x4f, 0x0a, 0x03, 0x65, - 0xe1, 0x63, 0xf4, 0xb0, 0x8f, 0x3b, 0x1b, 0x04, 0xa0, 0xa9, 0xc6, 0xcf, 0xd4, 0xb1, 0xf0, 0xb7, - 0xba, 0xac, 0x53, 0xa7, 0xb6, 0xf7, 0xcd, 0xaf, 0xde, 0xdf, 0xb2, 0xfe, 0xfc, 0xfe, 0x96, 0xf5, - 0x8f, 0xf7, 0xb7, 0xac, 0xdf, 0xfe, 0xf3, 0xd6, 0x06, 0x5c, 0x0d, 0xc5, 0x6c, 0x37, 0x61, 0x7c, - 0x1a, 0x06, 0xc9, 0x6e, 0xc6, 0xa2, 0xb1, 0x2a, 0x89, 0x43, 0xeb, 0x3f, 0x01, 0x00, 0x00, 0xff, - 0xff, 0x1d, 0xc2, 0x00, 0x83, 0x3a, 0x15, 0x00, 0x00, + // 2305 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0x4f, 0x73, 0x1b, 0x49, + 0x15, 0xf7, 0xe8, 0xbf, 0x9e, 0x64, 0x69, 0xdc, 0x24, 0x66, 0x36, 0xbb, 0x9b, 0x68, 0xb5, 0xc9, + 0xc6, 0xeb, 0x0a, 0x4e, 0x36, 0x81, 0x02, 0x0e, 0xc0, 0xc6, 0x4e, 0xbc, 0x71, 0x92, 0xf5, 0xba, + 0xc6, 0xae, 0xe5, 0x38, 0x35, 0x9e, 0x69, 0xc9, 0x1d, 0x8f, 0xba, 0x27, 0x33, 0x2d, 0x2c, 0xe5, + 0xc4, 0x85, 0x1b, 0x37, 0x28, 0x8a, 0x1b, 0x17, 0x8a, 0x2a, 0x8a, 0x2a, 0x0e, 0x7c, 0x8a, 0x3d, + 0x72, 0x85, 0x03, 0x45, 0x85, 0xaf, 0xc0, 0x1d, 0xea, 0x75, 0xf7, 0x8c, 0x46, 0x7f, 0x6c, 0x72, + 0xe4, 0xa4, 0xe9, 0xdf, 0xfb, 0xbd, 0xd7, 0xaf, 0x5f, 0xf7, 0x7b, 0xfd, 0x5a, 0xd0, 0xa1, 0x13, + 0x1a, 0x8c, 0xa5, 0x48, 0x76, 0xe2, 0x44, 0x48, 0x41, 0x2a, 0x92, 0xc5, 0xa7, 0x37, 0x6c, 0x3a, + 0x89, 0x13, 0x9a, 0xa6, 0x4c, 0x70, 0x8d, 0xdf, 0x68, 0xa7, 0xc1, 0x19, 0x1d, 0xf9, 0x66, 0x74, + 0x6d, 0x28, 0x86, 0x42, 0x7d, 0xde, 0xc7, 0x2f, 0x8d, 0xf6, 0xff, 0x5d, 0x83, 0xc6, 0x53, 0x63, + 0x8e, 0xdc, 0x86, 0x92, 0x8c, 0x1d, 0xab, 0x67, 0x6d, 0x75, 0x1e, 0x76, 0x76, 0xd0, 0xea, 0x0e, + 0xca, 0x4e, 0xa6, 0x31, 0xdd, 0xad, 0x7c, 0xf3, 0x8f, 0x5b, 0x6b, 0x6e, 0x49, 0xc6, 0x64, 0x1b, + 0x1a, 0xf2, 0x34, 0xf2, 0xd2, 0xc0, 0xe7, 0x4e, 0xa9, 0x67, 0x6d, 0xb5, 0x1e, 0x76, 0x35, 0xf7, + 0xc4, 0x3f, 0x8d, 0xe8, 0x71, 0xe0, 0x73, 0xb7, 0x2e, 0x4f, 0x23, 0xfc, 0x40, 0x2e, 0x0b, 0x27, + 0x9a, 0x5b, 0x2e, 0x72, 0x0f, 0x78, 0x48, 0x27, 0x9a, 0xcb, 0x42, 0xf5, 0x41, 0xbe, 0x03, 0xcd, + 0x94, 0x46, 0x34, 0x90, 0x4c, 0x70, 0xa7, 0x52, 0x24, 0x1f, 0x67, 0xb0, 0x3b, 0x63, 0x90, 0x47, + 0xd0, 0xf2, 0x87, 0xc3, 0x84, 0x0e, 0x7d, 0xa5, 0x50, 0x55, 0x0a, 0x1b, 0x5a, 0xe1, 0xf1, 0x4c, + 0xe0, 0x16, 0x59, 0xe4, 0x26, 0x54, 0xa4, 0x88, 0x0f, 0x9d, 0x9a, 0x62, 0x83, 0xf1, 0x5b, 0xc4, + 0x87, 0xae, 0xc2, 0xc9, 0x47, 0x50, 0x8d, 0xd8, 0x88, 0x49, 0xa7, 0xae, 0x08, 0x2d, 0x4d, 0x78, + 0x89, 0x90, 0xab, 0x25, 0x64, 0x0f, 0x36, 0xe8, 0x24, 0x38, 0xf3, 0xf9, 0x90, 0x7a, 0x09, 0x0d, + 0x28, 0xfb, 0x19, 0x4d, 0x9c, 0x86, 0xa2, 0x6f, 0x66, 0x31, 0xd3, 0x62, 0xd7, 0x48, 0x5d, 0x9b, + 0x2e, 0x20, 0xe8, 0xc7, 0x2b, 0xc1, 0xb8, 0xd3, 0x2c, 0xfa, 0xf1, 0x5c, 0x30, 0xee, 0x2a, 0x9c, + 0xdc, 0x82, 0x56, 0xb6, 0xc9, 0x1e, 0x0b, 0x1d, 0xe8, 0x59, 0x5b, 0x4d, 0x17, 0x32, 0xe8, 0x20, + 0x44, 0x03, 0xe7, 0x2c, 0x8a, 0x9c, 0x56, 0xd1, 0xc0, 0x0b, 0x16, 0x45, 0xae, 0xc2, 0xc9, 0x8f, + 0xa0, 0x9b, 0x7b, 0x99, 0x52, 0x1e, 0xd2, 0xc4, 0x69, 0x2b, 0xea, 0xb5, 0x79, 0x1f, 0x8f, 0x95, + 0xcc, 0xed, 0xd0, 0xb9, 0x31, 0x79, 0x00, 0x70, 0x94, 0x88, 0x57, 0x66, 0x33, 0xd6, 0x95, 0xa6, + 0xad, 0x35, 0x67, 0xb8, 0x5b, 0xe0, 0x90, 0xe7, 0x70, 0x2d, 0xf6, 0x13, 0xc9, 0x70, 0xe0, 0x49, + 0x3c, 0x09, 0x7a, 0xd7, 0x3b, 0x4a, 0xd7, 0x31, 0xba, 0x19, 0x63, 0x76, 0x54, 0x48, 0xbc, 0x84, + 0xe1, 0xe2, 0x52, 0x91, 0x48, 0xa7, 0x5b, 0x5c, 0xdc, 0xb1, 0x48, 0xa4, 0xab, 0x70, 0x72, 0x1b, + 0x6a, 0x17, 0x8c, 0x87, 0xe2, 0xc2, 0xb1, 0x15, 0xa3, 0xad, 0x19, 0x3f, 0x55, 0x98, 0x6b, 0x64, + 0xe4, 0x10, 0x3e, 0x1a, 0x30, 0x4e, 0xbd, 0x61, 0xe2, 0x33, 0x4e, 0x43, 0x2f, 0x3d, 0x1b, 0x0f, + 0x06, 0xe8, 0x96, 0x4c, 0xa8, 0x3f, 0xf2, 0x02, 0x31, 0xe6, 0xd2, 0xd9, 0xe8, 0x59, 0x5b, 0x15, + 0x73, 0xb8, 0x3f, 0x44, 0xfa, 0x17, 0x9a, 0x7d, 0xac, 0xc9, 0xc7, 0x8a, 0xbb, 0x87, 0x54, 0xf2, + 0x1c, 0x6e, 0xad, 0xb4, 0x77, 0xea, 0xcb, 0xe0, 0xcc, 0x4b, 0xd9, 0x1b, 0xea, 0x90, 0x82, 0xb5, + 0xf7, 0x97, 0xad, 0xed, 0x22, 0xf3, 0x98, 0xbd, 0xa1, 0xfd, 0xdf, 0x95, 0xa0, 0x33, 0xbf, 0x05, + 0x64, 0xab, 0x90, 0x7c, 0x64, 0x7e, 0x93, 0x96, 0x12, 0x70, 0x83, 0xf2, 0x40, 0x84, 0x34, 0xf4, + 0xa4, 0x9f, 0x9e, 0x7b, 0x23, 0x2a, 0x7d, 0xa7, 0xd4, 0x2b, 0x6f, 0xb5, 0xdd, 0xae, 0x11, 0x9c, + 0xf8, 0xe9, 0xf9, 0x97, 0x54, 0xfa, 0xe4, 0x33, 0xe8, 0xcc, 0xb6, 0xe5, 0x9c, 0x4e, 0x53, 0xa7, + 0xdc, 0x2b, 0xcf, 0x82, 0xfa, 0x74, 0x12, 0x27, 0xee, 0x7a, 0xce, 0x78, 0x41, 0xa7, 0x29, 0xb9, + 0x0d, 0xd5, 0xe0, 0x8c, 0x45, 0xa1, 0xc9, 0xc1, 0x42, 0x21, 0xc0, 0xb3, 0xe7, 0x6a, 0x21, 0xb9, + 0x03, 0x55, 0x39, 0x8d, 0x69, 0xea, 0x54, 0x95, 0x3d, 0x93, 0xa9, 0xfb, 0x8c, 0x46, 0x21, 0xba, + 0xeb, 0x6a, 0x29, 0xf9, 0x3e, 0x74, 0xfd, 0x28, 0xf2, 0x06, 0x88, 0x7b, 0x5a, 0xa1, 0xb6, 0x5a, + 0x61, 0xdd, 0x8f, 0xa2, 0x7c, 0x94, 0xf6, 0x7f, 0x6d, 0x81, 0xbd, 0x98, 0x48, 0xab, 0x57, 0x6e, + 0xad, 0x5e, 0xf9, 0x03, 0x68, 0x15, 0x67, 0x2d, 0xad, 0x9e, 0x15, 0x06, 0xf9, 0x94, 0xa4, 0xaf, + 0x76, 0xa0, 0x7c, 0xd9, 0x0e, 0x60, 0xec, 0xfb, 0xbf, 0x2c, 0x43, 0x73, 0x76, 0x50, 0x6f, 0x41, + 0x43, 0x1f, 0x75, 0x16, 0xaa, 0x9d, 0x2b, 0x9b, 0x5d, 0xaa, 0x2b, 0xf4, 0x20, 0x24, 0xdb, 0x50, + 0x0f, 0x44, 0x34, 0x1e, 0xf1, 0xcc, 0x01, 0x93, 0x44, 0x7b, 0x0a, 0x3c, 0xe0, 0x03, 0xe1, 0x66, + 0x04, 0xe2, 0x40, 0x25, 0xa4, 0x69, 0xa0, 0x1c, 0x68, 0x18, 0x43, 0x0a, 0x21, 0xf7, 0x80, 0xc4, + 0x09, 0x1b, 0xf9, 0xc9, 0xd4, 0xd3, 0x64, 0x8f, 0x85, 0xa9, 0x53, 0xe9, 0x95, 0xb7, 0xca, 0xae, + 0x6d, 0x24, 0xc6, 0x62, 0x98, 0x92, 0xcf, 0xc1, 0xe6, 0x74, 0x22, 0xbd, 0x84, 0xfa, 0xa1, 0x47, + 0xf9, 0x90, 0x71, 0xaa, 0xaa, 0x63, 0x27, 0x9b, 0xfc, 0xa9, 0xc2, 0x0a, 0x87, 0xaa, 0x83, 0x7c, + 0x97, 0xfa, 0xa1, 0x96, 0x90, 0x7b, 0x50, 0x4b, 0x70, 0xd5, 0xd9, 0x5e, 0x99, 0x23, 0xf0, 0x82, + 0x4e, 0x5d, 0x84, 0x8d, 0x96, 0xe1, 0x90, 0x1f, 0xc2, 0x7b, 0x99, 0x77, 0x71, 0x42, 0x07, 0x6c, + 0x52, 0x74, 0xb2, 0xae, 0x9c, 0xdc, 0x34, 0x84, 0x23, 0x25, 0x9f, 0xb9, 0xfa, 0x21, 0xc0, 0x39, + 0xa5, 0xb1, 0x27, 0x92, 0xd0, 0x14, 0xd1, 0x86, 0xdb, 0x44, 0xe4, 0x2b, 0x04, 0x48, 0x0f, 0xda, + 0x2c, 0xf5, 0x06, 0x7e, 0x2a, 0x75, 0x2d, 0x69, 0x2a, 0x02, 0xb0, 0x74, 0xdf, 0x4f, 0x25, 0x6e, + 0x40, 0xff, 0x4f, 0x25, 0x20, 0xcb, 0x45, 0xe5, 0xff, 0x73, 0x5f, 0xae, 0x8c, 0x53, 0xf5, 0xca, + 0x38, 0x7d, 0x0c, 0xb3, 0x1c, 0x55, 0xf4, 0x9a, 0xa2, 0xb7, 0x73, 0x10, 0x49, 0x8b, 0xd1, 0xaa, + 0x2f, 0x45, 0xeb, 0x3f, 0x15, 0xa8, 0xe0, 0x25, 0x43, 0x3e, 0x83, 0x26, 0x5e, 0x33, 0x2a, 0x35, + 0xe6, 0xef, 0x7b, 0x14, 0x17, 0x4e, 0x46, 0xe3, 0x95, 0x19, 0x93, 0x1f, 0x43, 0x47, 0xa9, 0xe0, + 0x1d, 0xa4, 0xf5, 0x4a, 0xc5, 0x44, 0x41, 0xbd, 0x85, 0x5e, 0xa1, 0xfd, 0xaa, 0x80, 0x61, 0x27, + 0xa0, 0x0a, 0x47, 0x42, 0xb9, 0x29, 0x41, 0x8b, 0x85, 0x25, 0x97, 0x93, 0x8f, 0xa0, 0xc9, 0x38, + 0xa7, 0x78, 0xf5, 0x4d, 0x54, 0x15, 0xca, 0xf6, 0xaf, 0xa1, 0xe0, 0x83, 0x70, 0x42, 0x1e, 0x40, + 0x27, 0xa2, 0x03, 0xe9, 0x29, 0x9f, 0x54, 0x5d, 0xab, 0x2e, 0xd5, 0xb5, 0x36, 0x32, 0xd0, 0x31, + 0x55, 0xd6, 0x1e, 0x42, 0x37, 0x61, 0xc3, 0xb3, 0xa2, 0x4a, 0x6d, 0xb9, 0x14, 0x2a, 0x4a, 0xae, + 0xf3, 0x00, 0x5a, 0x71, 0x22, 0x4e, 0xa9, 0xa9, 0x21, 0xf5, 0x4b, 0x6a, 0x88, 0xe2, 0xe8, 0x1a, + 0xf2, 0x00, 0x5a, 0xa7, 0x63, 0x96, 0x57, 0x9d, 0xc6, 0x25, 0x1a, 0x8a, 0xa3, 0x35, 0x1e, 0x41, + 0x57, 0xad, 0x24, 0x10, 0x3c, 0x54, 0x7b, 0x99, 0x3a, 0xcd, 0x25, 0xbf, 0xd4, 0x62, 0xf7, 0x72, + 0x06, 0xf9, 0x1e, 0xd8, 0x7a, 0x31, 0x05, 0x2d, 0x58, 0xd2, 0xd2, 0x0b, 0x9e, 0x57, 0x13, 0xf2, + 0x8c, 0x26, 0x45, 0xb5, 0xd6, 0xb2, 0x9a, 0xe2, 0x14, 0xd4, 0x9e, 0xc1, 0xfb, 0x5a, 0x8d, 0xbe, + 0x2e, 0x68, 0x7a, 0x83, 0x44, 0x8c, 0x3c, 0xc6, 0x9d, 0xf6, 0x92, 0x85, 0x6f, 0x2b, 0xfa, 0xd3, + 0xd7, 0x33, 0x1b, 0xfb, 0x89, 0x18, 0x1d, 0xf0, 0xfe, 0xdf, 0x2c, 0x68, 0xe6, 0xad, 0xdf, 0xff, + 0x4e, 0xd3, 0x5b, 0xd0, 0x60, 0xc8, 0x46, 0x42, 0xa9, 0x48, 0x50, 0xe8, 0x7c, 0x1e, 0x97, 0xdf, + 0x35, 0x8f, 0x2b, 0x4b, 0x79, 0xbc, 0x09, 0xb5, 0x31, 0x67, 0xaf, 0xc7, 0xba, 0x4e, 0x36, 0x5c, + 0x33, 0xba, 0x24, 0xbf, 0x6b, 0xab, 0xf3, 0xbb, 0xff, 0x2b, 0x0b, 0x9a, 0x79, 0xa7, 0x4a, 0xb6, + 0x01, 0x0a, 0x41, 0xb6, 0x96, 0x42, 0x54, 0x90, 0x92, 0xef, 0x42, 0x27, 0x89, 0x79, 0x71, 0x53, + 0x74, 0x51, 0x5a, 0xd7, 0x7c, 0x37, 0xe6, 0xe6, 0x70, 0xc6, 0xbc, 0xb0, 0x2b, 0xf9, 0x3d, 0x5d, + 0xbe, 0xe2, 0x9e, 0xee, 0xff, 0xdc, 0x2a, 0xb6, 0x72, 0xa4, 0x07, 0x55, 0x7c, 0x27, 0xac, 0xf2, + 0x48, 0x0b, 0xc8, 0x36, 0x34, 0xd1, 0x19, 0xcd, 0x5a, 0xe9, 0x47, 0x23, 0xd1, 0x1f, 0xef, 0xea, + 0xc2, 0x2f, 0x4a, 0xd0, 0x2a, 0x74, 0xe4, 0xe4, 0x0e, 0x34, 0x86, 0x89, 0x18, 0xc7, 0xde, 0xe9, + 0x74, 0x85, 0x1b, 0x75, 0x25, 0xdb, 0x9d, 0x22, 0xcd, 0x1f, 0x0e, 0xbd, 0xc1, 0x98, 0x07, 0xc6, + 0x8f, 0x39, 0x9a, 0x3f, 0x1c, 0xee, 0x8f, 0x79, 0x40, 0x7a, 0xd0, 0xd0, 0x1d, 0x1d, 0x0d, 0xe7, + 0x4a, 0x74, 0x8e, 0x92, 0xfb, 0xd0, 0xc6, 0x15, 0xe5, 0x73, 0x56, 0x56, 0x2d, 0x0a, 0x92, 0x98, + 0x7f, 0x61, 0x66, 0x36, 0x0a, 0xf9, 0xec, 0xd5, 0xcb, 0x14, 0x1e, 0x1b, 0x1f, 0xf2, 0x38, 0xd4, + 0xae, 0x8a, 0xc3, 0x6b, 0xa8, 0xe0, 0x53, 0x83, 0xdc, 0x85, 0x86, 0xba, 0xf0, 0x66, 0xeb, 0x37, + 0x0d, 0xec, 0xee, 0xf4, 0x40, 0xd2, 0x91, 0x5b, 0x57, 0xd2, 0xdd, 0x29, 0xb9, 0x91, 0xbd, 0x46, + 0x4a, 0x85, 0xbe, 0xd2, 0x3c, 0x43, 0xde, 0x2d, 0xf4, 0x07, 0x50, 0x55, 0x8f, 0x97, 0x99, 0x29, + 0xeb, 0x0a, 0x53, 0xa5, 0xab, 0x4c, 0x7d, 0x0e, 0x15, 0x7c, 0x5f, 0x90, 0x0f, 0xa0, 0x16, 0x08, + 0xce, 0x0f, 0x9e, 0xcc, 0x99, 0x32, 0x18, 0xce, 0xf3, 0x7a, 0x4c, 0x93, 0xa9, 0xb2, 0x95, 0x6d, + 0x85, 0x86, 0xfa, 0x7f, 0x29, 0x81, 0x93, 0x59, 0xd5, 0xbf, 0x4c, 0xf0, 0xe3, 0xf1, 0x08, 0xd3, + 0x08, 0x5b, 0x3b, 0xc9, 0x46, 0xd4, 0x8b, 0x13, 0x11, 0xd0, 0x34, 0xa5, 0xa1, 0xa7, 0xd2, 0xc6, + 0xda, 0xaa, 0xb8, 0x5d, 0x14, 0x1c, 0x65, 0xf8, 0x21, 0x1e, 0xd1, 0x0d, 0x3e, 0x1e, 0x21, 0x35, + 0x1c, 0x07, 0x34, 0xf4, 0x12, 0x71, 0x91, 0xea, 0x18, 0xb9, 0x5d, 0x3e, 0x1e, 0x1d, 0x19, 0xdc, + 0x15, 0x17, 0x29, 0xb9, 0x03, 0x1d, 0xe4, 0x32, 0x49, 0x13, 0x5f, 0xe7, 0x56, 0x59, 0x11, 0xd7, + 0xf9, 0x78, 0x74, 0x90, 0x83, 0x8b, 0x0f, 0xae, 0xca, 0xd2, 0x83, 0xab, 0x07, 0xad, 0x40, 0xf0, + 0x60, 0x9c, 0x24, 0x94, 0x07, 0x53, 0x55, 0x28, 0x2a, 0x6e, 0x11, 0x22, 0xfb, 0x40, 0x66, 0xef, + 0x1e, 0x4c, 0x66, 0x49, 0x27, 0xd2, 0x9c, 0x88, 0xcd, 0x85, 0x17, 0xf2, 0x9e, 0x96, 0x3e, 0x5b, + 0x73, 0x6d, 0xb9, 0x80, 0xed, 0xb6, 0x01, 0x9e, 0x50, 0xe9, 0xb3, 0x08, 0xcb, 0x57, 0xff, 0x0f, + 0x65, 0xb0, 0x17, 0xd5, 0xc8, 0x16, 0xd8, 0x6a, 0x92, 0xd8, 0x0f, 0xce, 0x53, 0xf3, 0x92, 0xd1, + 0xb1, 0xea, 0x20, 0x7e, 0x84, 0xb0, 0x7e, 0xb4, 0x7c, 0x02, 0x5d, 0xc5, 0xc4, 0x10, 0x19, 0xa2, + 0x0e, 0xd4, 0x3a, 0xc2, 0x18, 0x21, 0xcd, 0x43, 0x8b, 0xe7, 0x2c, 0x9e, 0xb3, 0x58, 0x36, 0x16, + 0xcf, 0x59, 0xbc, 0x60, 0x11, 0x99, 0x05, 0x8b, 0x15, 0x63, 0xf1, 0x9c, 0xc5, 0x33, 0x8b, 0x5f, + 0xc3, 0xa7, 0x89, 0x18, 0x0f, 0xcf, 0xbc, 0x94, 0x4a, 0x4f, 0x57, 0xf1, 0x48, 0xf8, 0xa1, 0xa7, + 0x76, 0x99, 0x71, 0x6f, 0xc4, 0xa2, 0x88, 0xa5, 0x14, 0x8b, 0x5e, 0x6a, 0xc2, 0xf9, 0xb1, 0x52, + 0x38, 0xa6, 0x52, 0x5d, 0x11, 0x2f, 0x85, 0x1f, 0x9e, 0xb0, 0x11, 0x3d, 0xe0, 0x5f, 0x16, 0xa8, + 0x64, 0x1f, 0x7a, 0xe1, 0x68, 0xc0, 0x22, 0xaa, 0x1b, 0xdc, 0x95, 0xe6, 0x6a, 0xca, 0xdc, 0x07, + 0x9a, 0x87, 0x8d, 0xed, 0x0a, 0x3b, 0x87, 0x70, 0x3b, 0x48, 0xa8, 0x2f, 0xa9, 0x97, 0x72, 0x3f, + 0x4e, 0xcf, 0x84, 0x5c, 0x6d, 0xab, 0xae, 0x6c, 0xf5, 0x34, 0xf7, 0xd8, 0x50, 0x97, 0xed, 0xf5, + 0xdf, 0x40, 0x05, 0x9f, 0xa8, 0xe4, 0x13, 0xa8, 0x9f, 0xaa, 0x3c, 0x4e, 0x57, 0x27, 0xb7, 0x11, + 0x92, 0xdb, 0xb0, 0xce, 0x52, 0xd5, 0xbb, 0xfa, 0x11, 0x2a, 0xea, 0x8c, 0x71, 0xe7, 0xc1, 0x77, + 0x4c, 0xf3, 0x3f, 0x5a, 0x60, 0xeb, 0xd7, 0xef, 0x7e, 0xe2, 0x8f, 0xe8, 0xae, 0x18, 0x73, 0x2c, + 0x7b, 0x95, 0x42, 0x7f, 0x77, 0xbd, 0xf8, 0x46, 0x56, 0x84, 0x42, 0xab, 0xa6, 0x88, 0xa4, 0x0f, + 0xcd, 0x31, 0x3f, 0x45, 0x11, 0x0d, 0xe7, 0xf2, 0x77, 0x06, 0xe3, 0x55, 0x29, 0x06, 0x83, 0x94, + 0x66, 0xa7, 0xc3, 0x8c, 0xc8, 0x16, 0x34, 0x03, 0x3f, 0x0a, 0xb0, 0x1a, 0xa6, 0xa6, 0xc0, 0x16, + 0xab, 0xf5, 0x4c, 0xd8, 0xff, 0x8d, 0x05, 0xad, 0x82, 0xaf, 0x57, 0xb9, 0xa9, 0x08, 0x4b, 0x6e, + 0xde, 0x83, 0x6a, 0x2a, 0x7d, 0x13, 0xb0, 0x3c, 0xb5, 0x16, 0x97, 0xef, 0x6a, 0x12, 0xd9, 0x82, + 0x32, 0xe5, 0x59, 0xf8, 0x2e, 0xe3, 0x22, 0xa5, 0xff, 0x77, 0x0b, 0x6a, 0x5a, 0x42, 0xee, 0x42, + 0x13, 0x0b, 0xbf, 0xa7, 0xfa, 0x85, 0xe5, 0x2b, 0xaa, 0x81, 0xc2, 0x27, 0xd8, 0x39, 0xdc, 0x87, + 0x59, 0x0f, 0x8e, 0xe5, 0xbc, 0xb4, 0x62, 0xc7, 0x5b, 0x39, 0x63, 0x77, 0x3a, 0x57, 0xfb, 0xcb, + 0x57, 0xd5, 0xfe, 0xbb, 0x50, 0x1d, 0xa0, 0x83, 0xe6, 0x15, 0xbe, 0xb1, 0xe4, 0xb9, 0xab, 0xe5, + 0xb3, 0x13, 0x52, 0xbd, 0xe2, 0x84, 0x6c, 0xff, 0xbe, 0xa4, 0xff, 0xe7, 0x53, 0xbd, 0xf8, 0x06, + 0xac, 0xe3, 0x6f, 0x5e, 0x56, 0xec, 0xb5, 0x0c, 0xca, 0x7b, 0x33, 0xdb, 0xca, 0xa0, 0xbc, 0xa5, + 0xb1, 0x4b, 0xe4, 0x5b, 0xd0, 0x45, 0xa8, 0x70, 0x99, 0xdb, 0x65, 0xd2, 0x86, 0x86, 0xb2, 0x26, + 0xe2, 0x43, 0xbb, 0x42, 0xd6, 0xa1, 0x89, 0x23, 0x75, 0xeb, 0xd8, 0xd5, 0xdc, 0x88, 0xba, 0x8b, + 0x1f, 0x0f, 0x87, 0x76, 0x2d, 0xe3, 0x63, 0x93, 0x6d, 0xd7, 0xb3, 0x11, 0x5e, 0x2d, 0x76, 0x83, + 0x6c, 0x02, 0xc1, 0xd1, 0xfc, 0x5f, 0x23, 0x76, 0x93, 0x38, 0x70, 0xad, 0x88, 0x67, 0x7f, 0x08, + 0xd8, 0x40, 0x08, 0x74, 0x50, 0x32, 0x6b, 0x71, 0xec, 0x16, 0xb9, 0x01, 0x9b, 0x0a, 0x5b, 0x7a, + 0x18, 0xda, 0xed, 0x6c, 0x3e, 0x4c, 0x2e, 0x7b, 0x9d, 0x74, 0x00, 0x70, 0xa4, 0xc3, 0x6a, 0x77, + 0xb6, 0x7f, 0x00, 0xed, 0xe2, 0x93, 0x9f, 0x74, 0xa1, 0x75, 0xe4, 0xa7, 0xe9, 0xc9, 0x99, 0xaa, + 0x4c, 0xf6, 0x1a, 0x2e, 0x6f, 0x37, 0x11, 0x7e, 0x18, 0xf8, 0xa9, 0xb4, 0x2d, 0xd2, 0x80, 0xca, + 0x33, 0x3f, 0x3d, 0xb3, 0x4b, 0xdb, 0x3b, 0x00, 0xb3, 0x77, 0x35, 0x69, 0x42, 0xf5, 0xa5, 0x08, + 0xfc, 0xc8, 0x5e, 0x43, 0xca, 0x09, 0x7b, 0xf1, 0xb5, 0x6d, 0x91, 0x16, 0xd4, 0x4f, 0xd8, 0x7e, + 0xa4, 0xf9, 0x7f, 0xb6, 0xa0, 0x91, 0x3d, 0xb6, 0x66, 0xd1, 0xe7, 0x34, 0x51, 0x71, 0x59, 0x23, + 0xd7, 0x61, 0x43, 0xc5, 0x91, 0x0e, 0xe4, 0x57, 0x63, 0x69, 0x60, 0x2b, 0x0b, 0x90, 0x8b, 0x8d, + 0xfd, 0x0c, 0x2f, 0x11, 0x1b, 0xda, 0x7a, 0xb3, 0x46, 0x4c, 0x21, 0x65, 0x72, 0x0d, 0x6c, 0xb5, + 0x57, 0x5c, 0xb2, 0x1c, 0xad, 0x90, 0xf7, 0xe0, 0xfa, 0x9c, 0xd9, 0x5c, 0x54, 0x25, 0x1f, 0xc2, + 0x7b, 0x99, 0xc2, 0xb2, 0xb8, 0xb6, 0xdd, 0x83, 0x76, 0xf1, 0x91, 0x97, 0xcd, 0x88, 0xcb, 0xd7, + 0x2e, 0x6f, 0xff, 0x04, 0xba, 0x0b, 0xe5, 0x05, 0xc3, 0xb5, 0x2f, 0xa2, 0x48, 0x5c, 0x30, 0x3e, + 0xd4, 0xd1, 0x3b, 0x4a, 0x68, 0x40, 0x43, 0x1c, 0x5a, 0x18, 0xfd, 0x3d, 0x75, 0x7b, 0x4a, 0x57, + 0x5c, 0xd8, 0xa5, 0xed, 0x47, 0x99, 0x81, 0x3c, 0xf1, 0x31, 0x7a, 0x78, 0xa5, 0xd8, 0x6b, 0x04, + 0xa0, 0xa6, 0xfe, 0x7d, 0x48, 0x6d, 0x0b, 0xbf, 0x55, 0xaf, 0x96, 0xda, 0xa5, 0xdd, 0x4f, 0xbf, + 0x79, 0x7b, 0xd3, 0xfa, 0xeb, 0xdb, 0x9b, 0xd6, 0x3f, 0xdf, 0xde, 0xb4, 0x7e, 0xfb, 0xaf, 0x9b, + 0x6b, 0x70, 0x3d, 0x10, 0xa3, 0x9d, 0x98, 0xf1, 0x61, 0xe0, 0xc7, 0x3b, 0x92, 0x85, 0xa7, 0x2a, + 0x25, 0x8e, 0xac, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x15, 0x03, 0x9f, 0x9f, 0x39, 0x17, 0x00, + 0x00, } From 36c9b9bf454cf8563192498299818e042ce9ae3d Mon Sep 17 00:00:00 2001 From: hongyunyan <649330952@qq.com> Date: Mon, 21 Nov 2022 11:22:41 +0800 Subject: [PATCH 04/13] update proto --- go-tipb/executor.pb.go | 361 ++++++++++++++++++++--------------------- proto/executor.proto | 6 +- 2 files changed, 183 insertions(+), 184 deletions(-) diff --git a/go-tipb/executor.pb.go b/go-tipb/executor.pb.go index 1bc53480..01447cfc 100644 --- a/go-tipb/executor.pb.go +++ b/go-tipb/executor.pb.go @@ -1232,14 +1232,14 @@ func _ExecutorExecutionSummary_OneofSizer(msg proto.Message) (n int) { } type TableScanContext struct { - ScanPacksCount *uint64 `protobuf:"varint,1,opt,name=scan_packs_count,json=scanPacksCount" json:"scan_packs_count,omitempty"` - ScanRowsCount *uint64 `protobuf:"varint,2,opt,name=scan_rows_count,json=scanRowsCount" json:"scan_rows_count,omitempty"` - SkipPacksCount *uint64 `protobuf:"varint,3,opt,name=skip_packs_count,json=skipPacksCount" json:"skip_packs_count,omitempty"` - SkipRowsCount *uint64 `protobuf:"varint,4,opt,name=skip_rows_count,json=skipRowsCount" json:"skip_rows_count,omitempty"` - RoughSetIndexLoadTimeInMilliseconds *uint64 `protobuf:"varint,5,opt,name=rough_set_index_load_time_in_milliseconds,json=roughSetIndexLoadTimeInMilliseconds" json:"rough_set_index_load_time_in_milliseconds,omitempty"` - DmfileReadTimeInMilliseconds *uint64 `protobuf:"varint,6,opt,name=dmfile_read_time_in_milliseconds,json=dmfileReadTimeInMilliseconds" json:"dmfile_read_time_in_milliseconds,omitempty"` - CreateSnapshotTimeInMilliseconds *uint64 `protobuf:"varint,7,opt,name=create_snapshot_time_in_milliseconds,json=createSnapshotTimeInMilliseconds" json:"create_snapshot_time_in_milliseconds,omitempty"` - XXX_unrecognized []byte `json:"-"` + ScanPacksCount *uint64 `protobuf:"varint,1,opt,name=scan_packs_count,json=scanPacksCount" json:"scan_packs_count,omitempty"` + ScanRowsCount *uint64 `protobuf:"varint,2,opt,name=scan_rows_count,json=scanRowsCount" json:"scan_rows_count,omitempty"` + SkipPacksCount *uint64 `protobuf:"varint,3,opt,name=skip_packs_count,json=skipPacksCount" json:"skip_packs_count,omitempty"` + SkipRowsCount *uint64 `protobuf:"varint,4,opt,name=skip_rows_count,json=skipRowsCount" json:"skip_rows_count,omitempty"` + RoughSetIndexLoadTimeInNs *uint64 `protobuf:"varint,5,opt,name=rough_set_index_load_time_in_ns,json=roughSetIndexLoadTimeInNs" json:"rough_set_index_load_time_in_ns,omitempty"` + DmfileReadTimeInNs *uint64 `protobuf:"varint,6,opt,name=dmfile_read_time_in_ns,json=dmfileReadTimeInNs" json:"dmfile_read_time_in_ns,omitempty"` + CreateSnapshotTimeInNs *uint64 `protobuf:"varint,7,opt,name=create_snapshot_time_in_ns,json=createSnapshotTimeInNs" json:"create_snapshot_time_in_ns,omitempty"` + XXX_unrecognized []byte `json:"-"` } func (m *TableScanContext) Reset() { *m = TableScanContext{} } @@ -1275,23 +1275,23 @@ func (m *TableScanContext) GetSkipRowsCount() uint64 { return 0 } -func (m *TableScanContext) GetRoughSetIndexLoadTimeInMilliseconds() uint64 { - if m != nil && m.RoughSetIndexLoadTimeInMilliseconds != nil { - return *m.RoughSetIndexLoadTimeInMilliseconds +func (m *TableScanContext) GetRoughSetIndexLoadTimeInNs() uint64 { + if m != nil && m.RoughSetIndexLoadTimeInNs != nil { + return *m.RoughSetIndexLoadTimeInNs } return 0 } -func (m *TableScanContext) GetDmfileReadTimeInMilliseconds() uint64 { - if m != nil && m.DmfileReadTimeInMilliseconds != nil { - return *m.DmfileReadTimeInMilliseconds +func (m *TableScanContext) GetDmfileReadTimeInNs() uint64 { + if m != nil && m.DmfileReadTimeInNs != nil { + return *m.DmfileReadTimeInNs } return 0 } -func (m *TableScanContext) GetCreateSnapshotTimeInMilliseconds() uint64 { - if m != nil && m.CreateSnapshotTimeInMilliseconds != nil { - return *m.CreateSnapshotTimeInMilliseconds +func (m *TableScanContext) GetCreateSnapshotTimeInNs() uint64 { + if m != nil && m.CreateSnapshotTimeInNs != nil { + return *m.CreateSnapshotTimeInNs } return 0 } @@ -2568,20 +2568,20 @@ func (m *TableScanContext) MarshalTo(dAtA []byte) (int, error) { i++ i = encodeVarintExecutor(dAtA, i, uint64(*m.SkipRowsCount)) } - if m.RoughSetIndexLoadTimeInMilliseconds != nil { + if m.RoughSetIndexLoadTimeInNs != nil { dAtA[i] = 0x28 i++ - i = encodeVarintExecutor(dAtA, i, uint64(*m.RoughSetIndexLoadTimeInMilliseconds)) + i = encodeVarintExecutor(dAtA, i, uint64(*m.RoughSetIndexLoadTimeInNs)) } - if m.DmfileReadTimeInMilliseconds != nil { + if m.DmfileReadTimeInNs != nil { dAtA[i] = 0x30 i++ - i = encodeVarintExecutor(dAtA, i, uint64(*m.DmfileReadTimeInMilliseconds)) + i = encodeVarintExecutor(dAtA, i, uint64(*m.DmfileReadTimeInNs)) } - if m.CreateSnapshotTimeInMilliseconds != nil { + if m.CreateSnapshotTimeInNs != nil { dAtA[i] = 0x38 i++ - i = encodeVarintExecutor(dAtA, i, uint64(*m.CreateSnapshotTimeInMilliseconds)) + i = encodeVarintExecutor(dAtA, i, uint64(*m.CreateSnapshotTimeInNs)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -3307,14 +3307,14 @@ func (m *TableScanContext) Size() (n int) { if m.SkipRowsCount != nil { n += 1 + sovExecutor(uint64(*m.SkipRowsCount)) } - if m.RoughSetIndexLoadTimeInMilliseconds != nil { - n += 1 + sovExecutor(uint64(*m.RoughSetIndexLoadTimeInMilliseconds)) + if m.RoughSetIndexLoadTimeInNs != nil { + n += 1 + sovExecutor(uint64(*m.RoughSetIndexLoadTimeInNs)) } - if m.DmfileReadTimeInMilliseconds != nil { - n += 1 + sovExecutor(uint64(*m.DmfileReadTimeInMilliseconds)) + if m.DmfileReadTimeInNs != nil { + n += 1 + sovExecutor(uint64(*m.DmfileReadTimeInNs)) } - if m.CreateSnapshotTimeInMilliseconds != nil { - n += 1 + sovExecutor(uint64(*m.CreateSnapshotTimeInMilliseconds)) + if m.CreateSnapshotTimeInNs != nil { + n += 1 + sovExecutor(uint64(*m.CreateSnapshotTimeInNs)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) @@ -6812,7 +6812,7 @@ func (m *TableScanContext) Unmarshal(dAtA []byte) error { m.SkipRowsCount = &v case 5: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field RoughSetIndexLoadTimeInMilliseconds", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field RoughSetIndexLoadTimeInNs", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { @@ -6829,10 +6829,10 @@ func (m *TableScanContext) Unmarshal(dAtA []byte) error { break } } - m.RoughSetIndexLoadTimeInMilliseconds = &v + m.RoughSetIndexLoadTimeInNs = &v case 6: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field DmfileReadTimeInMilliseconds", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field DmfileReadTimeInNs", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { @@ -6849,10 +6849,10 @@ func (m *TableScanContext) Unmarshal(dAtA []byte) error { break } } - m.DmfileReadTimeInMilliseconds = &v + m.DmfileReadTimeInNs = &v case 7: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field CreateSnapshotTimeInMilliseconds", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field CreateSnapshotTimeInNs", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { @@ -6869,7 +6869,7 @@ func (m *TableScanContext) Unmarshal(dAtA []byte) error { break } } - m.CreateSnapshotTimeInMilliseconds = &v + m.CreateSnapshotTimeInNs = &v default: iNdEx = preIndex skippy, err := skipExecutor(dAtA[iNdEx:]) @@ -7623,150 +7623,149 @@ var ( func init() { proto.RegisterFile("executor.proto", fileDescriptorExecutor) } var fileDescriptorExecutor = []byte{ - // 2305 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0x4f, 0x73, 0x1b, 0x49, - 0x15, 0xf7, 0xe8, 0xbf, 0x9e, 0x64, 0x69, 0xdc, 0x24, 0x66, 0x36, 0xbb, 0x9b, 0x68, 0xb5, 0xc9, - 0xc6, 0xeb, 0x0a, 0x4e, 0x36, 0x81, 0x02, 0x0e, 0xc0, 0xc6, 0x4e, 0xbc, 0x71, 0x92, 0xf5, 0xba, - 0xc6, 0xae, 0xe5, 0x38, 0x35, 0x9e, 0x69, 0xc9, 0x1d, 0x8f, 0xba, 0x27, 0x33, 0x2d, 0x2c, 0xe5, - 0xc4, 0x85, 0x1b, 0x37, 0x28, 0x8a, 0x1b, 0x17, 0x8a, 0x2a, 0x8a, 0x2a, 0x0e, 0x7c, 0x8a, 0x3d, - 0x72, 0x85, 0x03, 0x45, 0x85, 0xaf, 0xc0, 0x1d, 0xea, 0x75, 0xf7, 0x8c, 0x46, 0x7f, 0x6c, 0x72, - 0xe4, 0xa4, 0xe9, 0xdf, 0xfb, 0xbd, 0xd7, 0xaf, 0x5f, 0xf7, 0x7b, 0xfd, 0x5a, 0xd0, 0xa1, 0x13, - 0x1a, 0x8c, 0xa5, 0x48, 0x76, 0xe2, 0x44, 0x48, 0x41, 0x2a, 0x92, 0xc5, 0xa7, 0x37, 0x6c, 0x3a, - 0x89, 0x13, 0x9a, 0xa6, 0x4c, 0x70, 0x8d, 0xdf, 0x68, 0xa7, 0xc1, 0x19, 0x1d, 0xf9, 0x66, 0x74, - 0x6d, 0x28, 0x86, 0x42, 0x7d, 0xde, 0xc7, 0x2f, 0x8d, 0xf6, 0xff, 0x5d, 0x83, 0xc6, 0x53, 0x63, - 0x8e, 0xdc, 0x86, 0x92, 0x8c, 0x1d, 0xab, 0x67, 0x6d, 0x75, 0x1e, 0x76, 0x76, 0xd0, 0xea, 0x0e, - 0xca, 0x4e, 0xa6, 0x31, 0xdd, 0xad, 0x7c, 0xf3, 0x8f, 0x5b, 0x6b, 0x6e, 0x49, 0xc6, 0x64, 0x1b, - 0x1a, 0xf2, 0x34, 0xf2, 0xd2, 0xc0, 0xe7, 0x4e, 0xa9, 0x67, 0x6d, 0xb5, 0x1e, 0x76, 0x35, 0xf7, - 0xc4, 0x3f, 0x8d, 0xe8, 0x71, 0xe0, 0x73, 0xb7, 0x2e, 0x4f, 0x23, 0xfc, 0x40, 0x2e, 0x0b, 0x27, - 0x9a, 0x5b, 0x2e, 0x72, 0x0f, 0x78, 0x48, 0x27, 0x9a, 0xcb, 0x42, 0xf5, 0x41, 0xbe, 0x03, 0xcd, - 0x94, 0x46, 0x34, 0x90, 0x4c, 0x70, 0xa7, 0x52, 0x24, 0x1f, 0x67, 0xb0, 0x3b, 0x63, 0x90, 0x47, - 0xd0, 0xf2, 0x87, 0xc3, 0x84, 0x0e, 0x7d, 0xa5, 0x50, 0x55, 0x0a, 0x1b, 0x5a, 0xe1, 0xf1, 0x4c, - 0xe0, 0x16, 0x59, 0xe4, 0x26, 0x54, 0xa4, 0x88, 0x0f, 0x9d, 0x9a, 0x62, 0x83, 0xf1, 0x5b, 0xc4, - 0x87, 0xae, 0xc2, 0xc9, 0x47, 0x50, 0x8d, 0xd8, 0x88, 0x49, 0xa7, 0xae, 0x08, 0x2d, 0x4d, 0x78, - 0x89, 0x90, 0xab, 0x25, 0x64, 0x0f, 0x36, 0xe8, 0x24, 0x38, 0xf3, 0xf9, 0x90, 0x7a, 0x09, 0x0d, - 0x28, 0xfb, 0x19, 0x4d, 0x9c, 0x86, 0xa2, 0x6f, 0x66, 0x31, 0xd3, 0x62, 0xd7, 0x48, 0x5d, 0x9b, - 0x2e, 0x20, 0xe8, 0xc7, 0x2b, 0xc1, 0xb8, 0xd3, 0x2c, 0xfa, 0xf1, 0x5c, 0x30, 0xee, 0x2a, 0x9c, - 0xdc, 0x82, 0x56, 0xb6, 0xc9, 0x1e, 0x0b, 0x1d, 0xe8, 0x59, 0x5b, 0x4d, 0x17, 0x32, 0xe8, 0x20, - 0x44, 0x03, 0xe7, 0x2c, 0x8a, 0x9c, 0x56, 0xd1, 0xc0, 0x0b, 0x16, 0x45, 0xae, 0xc2, 0xc9, 0x8f, - 0xa0, 0x9b, 0x7b, 0x99, 0x52, 0x1e, 0xd2, 0xc4, 0x69, 0x2b, 0xea, 0xb5, 0x79, 0x1f, 0x8f, 0x95, - 0xcc, 0xed, 0xd0, 0xb9, 0x31, 0x79, 0x00, 0x70, 0x94, 0x88, 0x57, 0x66, 0x33, 0xd6, 0x95, 0xa6, - 0xad, 0x35, 0x67, 0xb8, 0x5b, 0xe0, 0x90, 0xe7, 0x70, 0x2d, 0xf6, 0x13, 0xc9, 0x70, 0xe0, 0x49, - 0x3c, 0x09, 0x7a, 0xd7, 0x3b, 0x4a, 0xd7, 0x31, 0xba, 0x19, 0x63, 0x76, 0x54, 0x48, 0xbc, 0x84, - 0xe1, 0xe2, 0x52, 0x91, 0x48, 0xa7, 0x5b, 0x5c, 0xdc, 0xb1, 0x48, 0xa4, 0xab, 0x70, 0x72, 0x1b, - 0x6a, 0x17, 0x8c, 0x87, 0xe2, 0xc2, 0xb1, 0x15, 0xa3, 0xad, 0x19, 0x3f, 0x55, 0x98, 0x6b, 0x64, - 0xe4, 0x10, 0x3e, 0x1a, 0x30, 0x4e, 0xbd, 0x61, 0xe2, 0x33, 0x4e, 0x43, 0x2f, 0x3d, 0x1b, 0x0f, - 0x06, 0xe8, 0x96, 0x4c, 0xa8, 0x3f, 0xf2, 0x02, 0x31, 0xe6, 0xd2, 0xd9, 0xe8, 0x59, 0x5b, 0x15, - 0x73, 0xb8, 0x3f, 0x44, 0xfa, 0x17, 0x9a, 0x7d, 0xac, 0xc9, 0xc7, 0x8a, 0xbb, 0x87, 0x54, 0xf2, - 0x1c, 0x6e, 0xad, 0xb4, 0x77, 0xea, 0xcb, 0xe0, 0xcc, 0x4b, 0xd9, 0x1b, 0xea, 0x90, 0x82, 0xb5, - 0xf7, 0x97, 0xad, 0xed, 0x22, 0xf3, 0x98, 0xbd, 0xa1, 0xfd, 0xdf, 0x95, 0xa0, 0x33, 0xbf, 0x05, - 0x64, 0xab, 0x90, 0x7c, 0x64, 0x7e, 0x93, 0x96, 0x12, 0x70, 0x83, 0xf2, 0x40, 0x84, 0x34, 0xf4, - 0xa4, 0x9f, 0x9e, 0x7b, 0x23, 0x2a, 0x7d, 0xa7, 0xd4, 0x2b, 0x6f, 0xb5, 0xdd, 0xae, 0x11, 0x9c, - 0xf8, 0xe9, 0xf9, 0x97, 0x54, 0xfa, 0xe4, 0x33, 0xe8, 0xcc, 0xb6, 0xe5, 0x9c, 0x4e, 0x53, 0xa7, - 0xdc, 0x2b, 0xcf, 0x82, 0xfa, 0x74, 0x12, 0x27, 0xee, 0x7a, 0xce, 0x78, 0x41, 0xa7, 0x29, 0xb9, - 0x0d, 0xd5, 0xe0, 0x8c, 0x45, 0xa1, 0xc9, 0xc1, 0x42, 0x21, 0xc0, 0xb3, 0xe7, 0x6a, 0x21, 0xb9, - 0x03, 0x55, 0x39, 0x8d, 0x69, 0xea, 0x54, 0x95, 0x3d, 0x93, 0xa9, 0xfb, 0x8c, 0x46, 0x21, 0xba, - 0xeb, 0x6a, 0x29, 0xf9, 0x3e, 0x74, 0xfd, 0x28, 0xf2, 0x06, 0x88, 0x7b, 0x5a, 0xa1, 0xb6, 0x5a, - 0x61, 0xdd, 0x8f, 0xa2, 0x7c, 0x94, 0xf6, 0x7f, 0x6d, 0x81, 0xbd, 0x98, 0x48, 0xab, 0x57, 0x6e, - 0xad, 0x5e, 0xf9, 0x03, 0x68, 0x15, 0x67, 0x2d, 0xad, 0x9e, 0x15, 0x06, 0xf9, 0x94, 0xa4, 0xaf, - 0x76, 0xa0, 0x7c, 0xd9, 0x0e, 0x60, 0xec, 0xfb, 0xbf, 0x2c, 0x43, 0x73, 0x76, 0x50, 0x6f, 0x41, - 0x43, 0x1f, 0x75, 0x16, 0xaa, 0x9d, 0x2b, 0x9b, 0x5d, 0xaa, 0x2b, 0xf4, 0x20, 0x24, 0xdb, 0x50, - 0x0f, 0x44, 0x34, 0x1e, 0xf1, 0xcc, 0x01, 0x93, 0x44, 0x7b, 0x0a, 0x3c, 0xe0, 0x03, 0xe1, 0x66, - 0x04, 0xe2, 0x40, 0x25, 0xa4, 0x69, 0xa0, 0x1c, 0x68, 0x18, 0x43, 0x0a, 0x21, 0xf7, 0x80, 0xc4, - 0x09, 0x1b, 0xf9, 0xc9, 0xd4, 0xd3, 0x64, 0x8f, 0x85, 0xa9, 0x53, 0xe9, 0x95, 0xb7, 0xca, 0xae, - 0x6d, 0x24, 0xc6, 0x62, 0x98, 0x92, 0xcf, 0xc1, 0xe6, 0x74, 0x22, 0xbd, 0x84, 0xfa, 0xa1, 0x47, - 0xf9, 0x90, 0x71, 0xaa, 0xaa, 0x63, 0x27, 0x9b, 0xfc, 0xa9, 0xc2, 0x0a, 0x87, 0xaa, 0x83, 0x7c, - 0x97, 0xfa, 0xa1, 0x96, 0x90, 0x7b, 0x50, 0x4b, 0x70, 0xd5, 0xd9, 0x5e, 0x99, 0x23, 0xf0, 0x82, - 0x4e, 0x5d, 0x84, 0x8d, 0x96, 0xe1, 0x90, 0x1f, 0xc2, 0x7b, 0x99, 0x77, 0x71, 0x42, 0x07, 0x6c, - 0x52, 0x74, 0xb2, 0xae, 0x9c, 0xdc, 0x34, 0x84, 0x23, 0x25, 0x9f, 0xb9, 0xfa, 0x21, 0xc0, 0x39, - 0xa5, 0xb1, 0x27, 0x92, 0xd0, 0x14, 0xd1, 0x86, 0xdb, 0x44, 0xe4, 0x2b, 0x04, 0x48, 0x0f, 0xda, - 0x2c, 0xf5, 0x06, 0x7e, 0x2a, 0x75, 0x2d, 0x69, 0x2a, 0x02, 0xb0, 0x74, 0xdf, 0x4f, 0x25, 0x6e, - 0x40, 0xff, 0x4f, 0x25, 0x20, 0xcb, 0x45, 0xe5, 0xff, 0x73, 0x5f, 0xae, 0x8c, 0x53, 0xf5, 0xca, - 0x38, 0x7d, 0x0c, 0xb3, 0x1c, 0x55, 0xf4, 0x9a, 0xa2, 0xb7, 0x73, 0x10, 0x49, 0x8b, 0xd1, 0xaa, - 0x2f, 0x45, 0xeb, 0x3f, 0x15, 0xa8, 0xe0, 0x25, 0x43, 0x3e, 0x83, 0x26, 0x5e, 0x33, 0x2a, 0x35, - 0xe6, 0xef, 0x7b, 0x14, 0x17, 0x4e, 0x46, 0xe3, 0x95, 0x19, 0x93, 0x1f, 0x43, 0x47, 0xa9, 0xe0, - 0x1d, 0xa4, 0xf5, 0x4a, 0xc5, 0x44, 0x41, 0xbd, 0x85, 0x5e, 0xa1, 0xfd, 0xaa, 0x80, 0x61, 0x27, - 0xa0, 0x0a, 0x47, 0x42, 0xb9, 0x29, 0x41, 0x8b, 0x85, 0x25, 0x97, 0x93, 0x8f, 0xa0, 0xc9, 0x38, - 0xa7, 0x78, 0xf5, 0x4d, 0x54, 0x15, 0xca, 0xf6, 0xaf, 0xa1, 0xe0, 0x83, 0x70, 0x42, 0x1e, 0x40, - 0x27, 0xa2, 0x03, 0xe9, 0x29, 0x9f, 0x54, 0x5d, 0xab, 0x2e, 0xd5, 0xb5, 0x36, 0x32, 0xd0, 0x31, - 0x55, 0xd6, 0x1e, 0x42, 0x37, 0x61, 0xc3, 0xb3, 0xa2, 0x4a, 0x6d, 0xb9, 0x14, 0x2a, 0x4a, 0xae, - 0xf3, 0x00, 0x5a, 0x71, 0x22, 0x4e, 0xa9, 0xa9, 0x21, 0xf5, 0x4b, 0x6a, 0x88, 0xe2, 0xe8, 0x1a, - 0xf2, 0x00, 0x5a, 0xa7, 0x63, 0x96, 0x57, 0x9d, 0xc6, 0x25, 0x1a, 0x8a, 0xa3, 0x35, 0x1e, 0x41, - 0x57, 0xad, 0x24, 0x10, 0x3c, 0x54, 0x7b, 0x99, 0x3a, 0xcd, 0x25, 0xbf, 0xd4, 0x62, 0xf7, 0x72, - 0x06, 0xf9, 0x1e, 0xd8, 0x7a, 0x31, 0x05, 0x2d, 0x58, 0xd2, 0xd2, 0x0b, 0x9e, 0x57, 0x13, 0xf2, - 0x8c, 0x26, 0x45, 0xb5, 0xd6, 0xb2, 0x9a, 0xe2, 0x14, 0xd4, 0x9e, 0xc1, 0xfb, 0x5a, 0x8d, 0xbe, - 0x2e, 0x68, 0x7a, 0x83, 0x44, 0x8c, 0x3c, 0xc6, 0x9d, 0xf6, 0x92, 0x85, 0x6f, 0x2b, 0xfa, 0xd3, - 0xd7, 0x33, 0x1b, 0xfb, 0x89, 0x18, 0x1d, 0xf0, 0xfe, 0xdf, 0x2c, 0x68, 0xe6, 0xad, 0xdf, 0xff, - 0x4e, 0xd3, 0x5b, 0xd0, 0x60, 0xc8, 0x46, 0x42, 0xa9, 0x48, 0x50, 0xe8, 0x7c, 0x1e, 0x97, 0xdf, - 0x35, 0x8f, 0x2b, 0x4b, 0x79, 0xbc, 0x09, 0xb5, 0x31, 0x67, 0xaf, 0xc7, 0xba, 0x4e, 0x36, 0x5c, - 0x33, 0xba, 0x24, 0xbf, 0x6b, 0xab, 0xf3, 0xbb, 0xff, 0x2b, 0x0b, 0x9a, 0x79, 0xa7, 0x4a, 0xb6, - 0x01, 0x0a, 0x41, 0xb6, 0x96, 0x42, 0x54, 0x90, 0x92, 0xef, 0x42, 0x27, 0x89, 0x79, 0x71, 0x53, - 0x74, 0x51, 0x5a, 0xd7, 0x7c, 0x37, 0xe6, 0xe6, 0x70, 0xc6, 0xbc, 0xb0, 0x2b, 0xf9, 0x3d, 0x5d, - 0xbe, 0xe2, 0x9e, 0xee, 0xff, 0xdc, 0x2a, 0xb6, 0x72, 0xa4, 0x07, 0x55, 0x7c, 0x27, 0xac, 0xf2, - 0x48, 0x0b, 0xc8, 0x36, 0x34, 0xd1, 0x19, 0xcd, 0x5a, 0xe9, 0x47, 0x23, 0xd1, 0x1f, 0xef, 0xea, - 0xc2, 0x2f, 0x4a, 0xd0, 0x2a, 0x74, 0xe4, 0xe4, 0x0e, 0x34, 0x86, 0x89, 0x18, 0xc7, 0xde, 0xe9, - 0x74, 0x85, 0x1b, 0x75, 0x25, 0xdb, 0x9d, 0x22, 0xcd, 0x1f, 0x0e, 0xbd, 0xc1, 0x98, 0x07, 0xc6, - 0x8f, 0x39, 0x9a, 0x3f, 0x1c, 0xee, 0x8f, 0x79, 0x40, 0x7a, 0xd0, 0xd0, 0x1d, 0x1d, 0x0d, 0xe7, - 0x4a, 0x74, 0x8e, 0x92, 0xfb, 0xd0, 0xc6, 0x15, 0xe5, 0x73, 0x56, 0x56, 0x2d, 0x0a, 0x92, 0x98, - 0x7f, 0x61, 0x66, 0x36, 0x0a, 0xf9, 0xec, 0xd5, 0xcb, 0x14, 0x1e, 0x1b, 0x1f, 0xf2, 0x38, 0xd4, - 0xae, 0x8a, 0xc3, 0x6b, 0xa8, 0xe0, 0x53, 0x83, 0xdc, 0x85, 0x86, 0xba, 0xf0, 0x66, 0xeb, 0x37, - 0x0d, 0xec, 0xee, 0xf4, 0x40, 0xd2, 0x91, 0x5b, 0x57, 0xd2, 0xdd, 0x29, 0xb9, 0x91, 0xbd, 0x46, - 0x4a, 0x85, 0xbe, 0xd2, 0x3c, 0x43, 0xde, 0x2d, 0xf4, 0x07, 0x50, 0x55, 0x8f, 0x97, 0x99, 0x29, - 0xeb, 0x0a, 0x53, 0xa5, 0xab, 0x4c, 0x7d, 0x0e, 0x15, 0x7c, 0x5f, 0x90, 0x0f, 0xa0, 0x16, 0x08, - 0xce, 0x0f, 0x9e, 0xcc, 0x99, 0x32, 0x18, 0xce, 0xf3, 0x7a, 0x4c, 0x93, 0xa9, 0xb2, 0x95, 0x6d, - 0x85, 0x86, 0xfa, 0x7f, 0x29, 0x81, 0x93, 0x59, 0xd5, 0xbf, 0x4c, 0xf0, 0xe3, 0xf1, 0x08, 0xd3, - 0x08, 0x5b, 0x3b, 0xc9, 0x46, 0xd4, 0x8b, 0x13, 0x11, 0xd0, 0x34, 0xa5, 0xa1, 0xa7, 0xd2, 0xc6, - 0xda, 0xaa, 0xb8, 0x5d, 0x14, 0x1c, 0x65, 0xf8, 0x21, 0x1e, 0xd1, 0x0d, 0x3e, 0x1e, 0x21, 0x35, - 0x1c, 0x07, 0x34, 0xf4, 0x12, 0x71, 0x91, 0xea, 0x18, 0xb9, 0x5d, 0x3e, 0x1e, 0x1d, 0x19, 0xdc, - 0x15, 0x17, 0x29, 0xb9, 0x03, 0x1d, 0xe4, 0x32, 0x49, 0x13, 0x5f, 0xe7, 0x56, 0x59, 0x11, 0xd7, - 0xf9, 0x78, 0x74, 0x90, 0x83, 0x8b, 0x0f, 0xae, 0xca, 0xd2, 0x83, 0xab, 0x07, 0xad, 0x40, 0xf0, - 0x60, 0x9c, 0x24, 0x94, 0x07, 0x53, 0x55, 0x28, 0x2a, 0x6e, 0x11, 0x22, 0xfb, 0x40, 0x66, 0xef, - 0x1e, 0x4c, 0x66, 0x49, 0x27, 0xd2, 0x9c, 0x88, 0xcd, 0x85, 0x17, 0xf2, 0x9e, 0x96, 0x3e, 0x5b, - 0x73, 0x6d, 0xb9, 0x80, 0xed, 0xb6, 0x01, 0x9e, 0x50, 0xe9, 0xb3, 0x08, 0xcb, 0x57, 0xff, 0x0f, - 0x65, 0xb0, 0x17, 0xd5, 0xc8, 0x16, 0xd8, 0x6a, 0x92, 0xd8, 0x0f, 0xce, 0x53, 0xf3, 0x92, 0xd1, - 0xb1, 0xea, 0x20, 0x7e, 0x84, 0xb0, 0x7e, 0xb4, 0x7c, 0x02, 0x5d, 0xc5, 0xc4, 0x10, 0x19, 0xa2, - 0x0e, 0xd4, 0x3a, 0xc2, 0x18, 0x21, 0xcd, 0x43, 0x8b, 0xe7, 0x2c, 0x9e, 0xb3, 0x58, 0x36, 0x16, - 0xcf, 0x59, 0xbc, 0x60, 0x11, 0x99, 0x05, 0x8b, 0x15, 0x63, 0xf1, 0x9c, 0xc5, 0x33, 0x8b, 0x5f, - 0xc3, 0xa7, 0x89, 0x18, 0x0f, 0xcf, 0xbc, 0x94, 0x4a, 0x4f, 0x57, 0xf1, 0x48, 0xf8, 0xa1, 0xa7, - 0x76, 0x99, 0x71, 0x6f, 0xc4, 0xa2, 0x88, 0xa5, 0x14, 0x8b, 0x5e, 0x6a, 0xc2, 0xf9, 0xb1, 0x52, - 0x38, 0xa6, 0x52, 0x5d, 0x11, 0x2f, 0x85, 0x1f, 0x9e, 0xb0, 0x11, 0x3d, 0xe0, 0x5f, 0x16, 0xa8, - 0x64, 0x1f, 0x7a, 0xe1, 0x68, 0xc0, 0x22, 0xaa, 0x1b, 0xdc, 0x95, 0xe6, 0x6a, 0xca, 0xdc, 0x07, - 0x9a, 0x87, 0x8d, 0xed, 0x0a, 0x3b, 0x87, 0x70, 0x3b, 0x48, 0xa8, 0x2f, 0xa9, 0x97, 0x72, 0x3f, - 0x4e, 0xcf, 0x84, 0x5c, 0x6d, 0xab, 0xae, 0x6c, 0xf5, 0x34, 0xf7, 0xd8, 0x50, 0x97, 0xed, 0xf5, - 0xdf, 0x40, 0x05, 0x9f, 0xa8, 0xe4, 0x13, 0xa8, 0x9f, 0xaa, 0x3c, 0x4e, 0x57, 0x27, 0xb7, 0x11, - 0x92, 0xdb, 0xb0, 0xce, 0x52, 0xd5, 0xbb, 0xfa, 0x11, 0x2a, 0xea, 0x8c, 0x71, 0xe7, 0xc1, 0x77, - 0x4c, 0xf3, 0x3f, 0x5a, 0x60, 0xeb, 0xd7, 0xef, 0x7e, 0xe2, 0x8f, 0xe8, 0xae, 0x18, 0x73, 0x2c, - 0x7b, 0x95, 0x42, 0x7f, 0x77, 0xbd, 0xf8, 0x46, 0x56, 0x84, 0x42, 0xab, 0xa6, 0x88, 0xa4, 0x0f, - 0xcd, 0x31, 0x3f, 0x45, 0x11, 0x0d, 0xe7, 0xf2, 0x77, 0x06, 0xe3, 0x55, 0x29, 0x06, 0x83, 0x94, - 0x66, 0xa7, 0xc3, 0x8c, 0xc8, 0x16, 0x34, 0x03, 0x3f, 0x0a, 0xb0, 0x1a, 0xa6, 0xa6, 0xc0, 0x16, - 0xab, 0xf5, 0x4c, 0xd8, 0xff, 0x8d, 0x05, 0xad, 0x82, 0xaf, 0x57, 0xb9, 0xa9, 0x08, 0x4b, 0x6e, - 0xde, 0x83, 0x6a, 0x2a, 0x7d, 0x13, 0xb0, 0x3c, 0xb5, 0x16, 0x97, 0xef, 0x6a, 0x12, 0xd9, 0x82, - 0x32, 0xe5, 0x59, 0xf8, 0x2e, 0xe3, 0x22, 0xa5, 0xff, 0x77, 0x0b, 0x6a, 0x5a, 0x42, 0xee, 0x42, - 0x13, 0x0b, 0xbf, 0xa7, 0xfa, 0x85, 0xe5, 0x2b, 0xaa, 0x81, 0xc2, 0x27, 0xd8, 0x39, 0xdc, 0x87, - 0x59, 0x0f, 0x8e, 0xe5, 0xbc, 0xb4, 0x62, 0xc7, 0x5b, 0x39, 0x63, 0x77, 0x3a, 0x57, 0xfb, 0xcb, - 0x57, 0xd5, 0xfe, 0xbb, 0x50, 0x1d, 0xa0, 0x83, 0xe6, 0x15, 0xbe, 0xb1, 0xe4, 0xb9, 0xab, 0xe5, - 0xb3, 0x13, 0x52, 0xbd, 0xe2, 0x84, 0x6c, 0xff, 0xbe, 0xa4, 0xff, 0xe7, 0x53, 0xbd, 0xf8, 0x06, - 0xac, 0xe3, 0x6f, 0x5e, 0x56, 0xec, 0xb5, 0x0c, 0xca, 0x7b, 0x33, 0xdb, 0xca, 0xa0, 0xbc, 0xa5, - 0xb1, 0x4b, 0xe4, 0x5b, 0xd0, 0x45, 0xa8, 0x70, 0x99, 0xdb, 0x65, 0xd2, 0x86, 0x86, 0xb2, 0x26, - 0xe2, 0x43, 0xbb, 0x42, 0xd6, 0xa1, 0x89, 0x23, 0x75, 0xeb, 0xd8, 0xd5, 0xdc, 0x88, 0xba, 0x8b, - 0x1f, 0x0f, 0x87, 0x76, 0x2d, 0xe3, 0x63, 0x93, 0x6d, 0xd7, 0xb3, 0x11, 0x5e, 0x2d, 0x76, 0x83, - 0x6c, 0x02, 0xc1, 0xd1, 0xfc, 0x5f, 0x23, 0x76, 0x93, 0x38, 0x70, 0xad, 0x88, 0x67, 0x7f, 0x08, - 0xd8, 0x40, 0x08, 0x74, 0x50, 0x32, 0x6b, 0x71, 0xec, 0x16, 0xb9, 0x01, 0x9b, 0x0a, 0x5b, 0x7a, - 0x18, 0xda, 0xed, 0x6c, 0x3e, 0x4c, 0x2e, 0x7b, 0x9d, 0x74, 0x00, 0x70, 0xa4, 0xc3, 0x6a, 0x77, - 0xb6, 0x7f, 0x00, 0xed, 0xe2, 0x93, 0x9f, 0x74, 0xa1, 0x75, 0xe4, 0xa7, 0xe9, 0xc9, 0x99, 0xaa, - 0x4c, 0xf6, 0x1a, 0x2e, 0x6f, 0x37, 0x11, 0x7e, 0x18, 0xf8, 0xa9, 0xb4, 0x2d, 0xd2, 0x80, 0xca, - 0x33, 0x3f, 0x3d, 0xb3, 0x4b, 0xdb, 0x3b, 0x00, 0xb3, 0x77, 0x35, 0x69, 0x42, 0xf5, 0xa5, 0x08, - 0xfc, 0xc8, 0x5e, 0x43, 0xca, 0x09, 0x7b, 0xf1, 0xb5, 0x6d, 0x91, 0x16, 0xd4, 0x4f, 0xd8, 0x7e, - 0xa4, 0xf9, 0x7f, 0xb6, 0xa0, 0x91, 0x3d, 0xb6, 0x66, 0xd1, 0xe7, 0x34, 0x51, 0x71, 0x59, 0x23, - 0xd7, 0x61, 0x43, 0xc5, 0x91, 0x0e, 0xe4, 0x57, 0x63, 0x69, 0x60, 0x2b, 0x0b, 0x90, 0x8b, 0x8d, - 0xfd, 0x0c, 0x2f, 0x11, 0x1b, 0xda, 0x7a, 0xb3, 0x46, 0x4c, 0x21, 0x65, 0x72, 0x0d, 0x6c, 0xb5, - 0x57, 0x5c, 0xb2, 0x1c, 0xad, 0x90, 0xf7, 0xe0, 0xfa, 0x9c, 0xd9, 0x5c, 0x54, 0x25, 0x1f, 0xc2, - 0x7b, 0x99, 0xc2, 0xb2, 0xb8, 0xb6, 0xdd, 0x83, 0x76, 0xf1, 0x91, 0x97, 0xcd, 0x88, 0xcb, 0xd7, - 0x2e, 0x6f, 0xff, 0x04, 0xba, 0x0b, 0xe5, 0x05, 0xc3, 0xb5, 0x2f, 0xa2, 0x48, 0x5c, 0x30, 0x3e, - 0xd4, 0xd1, 0x3b, 0x4a, 0x68, 0x40, 0x43, 0x1c, 0x5a, 0x18, 0xfd, 0x3d, 0x75, 0x7b, 0x4a, 0x57, - 0x5c, 0xd8, 0xa5, 0xed, 0x47, 0x99, 0x81, 0x3c, 0xf1, 0x31, 0x7a, 0x78, 0xa5, 0xd8, 0x6b, 0x04, - 0xa0, 0xa6, 0xfe, 0x7d, 0x48, 0x6d, 0x0b, 0xbf, 0x55, 0xaf, 0x96, 0xda, 0xa5, 0xdd, 0x4f, 0xbf, - 0x79, 0x7b, 0xd3, 0xfa, 0xeb, 0xdb, 0x9b, 0xd6, 0x3f, 0xdf, 0xde, 0xb4, 0x7e, 0xfb, 0xaf, 0x9b, - 0x6b, 0x70, 0x3d, 0x10, 0xa3, 0x9d, 0x98, 0xf1, 0x61, 0xe0, 0xc7, 0x3b, 0x92, 0x85, 0xa7, 0x2a, - 0x25, 0x8e, 0xac, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x15, 0x03, 0x9f, 0x9f, 0x39, 0x17, 0x00, - 0x00, + // 2292 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xbd, 0x73, 0x1c, 0x4b, + 0x11, 0xd7, 0xde, 0xf7, 0xf5, 0x9d, 0xee, 0x56, 0x83, 0x2d, 0xd6, 0x7e, 0x3c, 0xeb, 0xde, 0xe1, + 0xf7, 0x2c, 0x54, 0x46, 0xf6, 0xb3, 0xa1, 0xf8, 0xa8, 0x02, 0x9e, 0x25, 0x5b, 0xcf, 0xb2, 0x8d, + 0x9e, 0x6a, 0xa5, 0x82, 0x70, 0x6b, 0xb5, 0x3b, 0x77, 0x1a, 0x6b, 0x6f, 0x66, 0xbd, 0x3b, 0x87, + 0xee, 0x1c, 0x91, 0x90, 0x91, 0x41, 0x51, 0x64, 0x24, 0x24, 0x14, 0x55, 0x04, 0xfc, 0x15, 0x2f, + 0x24, 0x85, 0x80, 0xa2, 0x4c, 0x46, 0x4c, 0x0e, 0xd5, 0x33, 0xb3, 0x7b, 0x7b, 0x1f, 0x12, 0x0e, + 0x89, 0x74, 0xf3, 0xeb, 0x5f, 0xf7, 0xf6, 0x74, 0x4f, 0xf7, 0xf4, 0x08, 0x3a, 0x74, 0x42, 0x83, + 0xb1, 0x14, 0xc9, 0x6e, 0x9c, 0x08, 0x29, 0x48, 0x45, 0xb2, 0xf8, 0xec, 0xb6, 0x4d, 0x27, 0x71, + 0x42, 0xd3, 0x94, 0x09, 0xae, 0xf1, 0xdb, 0xed, 0x34, 0x38, 0xa7, 0x23, 0xdf, 0xac, 0x6e, 0x0c, + 0xc5, 0x50, 0xa8, 0x9f, 0x0f, 0xf0, 0x97, 0x46, 0xfb, 0xff, 0xae, 0x41, 0xe3, 0x99, 0x31, 0x47, + 0xee, 0x42, 0x49, 0xc6, 0x8e, 0xd5, 0xb3, 0xb6, 0x3b, 0x8f, 0x3a, 0xbb, 0x68, 0x75, 0x17, 0x65, + 0xa7, 0xd3, 0x98, 0xee, 0x55, 0xbe, 0xfc, 0xfb, 0xd6, 0x9a, 0x5b, 0x92, 0x31, 0xd9, 0x81, 0x86, + 0x3c, 0x8b, 0xbc, 0x34, 0xf0, 0xb9, 0x53, 0xea, 0x59, 0xdb, 0xad, 0x47, 0x5d, 0xcd, 0x3d, 0xf5, + 0xcf, 0x22, 0x7a, 0x12, 0xf8, 0xdc, 0xad, 0xcb, 0xb3, 0x08, 0x7f, 0x20, 0x97, 0x85, 0x13, 0xcd, + 0x2d, 0x17, 0xb9, 0x87, 0x3c, 0xa4, 0x13, 0xcd, 0x65, 0xa1, 0xfa, 0x41, 0xbe, 0x09, 0xcd, 0x94, + 0x46, 0x34, 0x90, 0x4c, 0x70, 0xa7, 0x52, 0x24, 0x9f, 0x64, 0xb0, 0x3b, 0x63, 0x90, 0xc7, 0xd0, + 0xf2, 0x87, 0xc3, 0x84, 0x0e, 0x7d, 0xa5, 0x50, 0x55, 0x0a, 0x1b, 0x5a, 0xe1, 0xc9, 0x4c, 0xe0, + 0x16, 0x59, 0xe4, 0x0e, 0x54, 0xa4, 0x88, 0x8f, 0x9c, 0x9a, 0x62, 0x83, 0xf1, 0x5b, 0xc4, 0x47, + 0xae, 0xc2, 0xc9, 0x47, 0x50, 0x8d, 0xd8, 0x88, 0x49, 0xa7, 0xae, 0x08, 0x2d, 0x4d, 0x78, 0x85, + 0x90, 0xab, 0x25, 0x64, 0x1f, 0x36, 0xe8, 0x24, 0x38, 0xf7, 0xf9, 0x90, 0x7a, 0x09, 0x0d, 0x28, + 0xfb, 0x19, 0x4d, 0x9c, 0x86, 0xa2, 0x6f, 0x66, 0x31, 0xd3, 0x62, 0xd7, 0x48, 0x5d, 0x9b, 0x2e, + 0x20, 0xe8, 0xc7, 0x6b, 0xc1, 0xb8, 0xd3, 0x2c, 0xfa, 0xf1, 0x42, 0x30, 0xee, 0x2a, 0x9c, 0x6c, + 0x41, 0x2b, 0x4b, 0xb2, 0xc7, 0x42, 0x07, 0x7a, 0xd6, 0x76, 0xd3, 0x85, 0x0c, 0x3a, 0x0c, 0xd1, + 0xc0, 0x05, 0x8b, 0x22, 0xa7, 0x55, 0x34, 0xf0, 0x92, 0x45, 0x91, 0xab, 0x70, 0xf2, 0x03, 0xe8, + 0xe6, 0x5e, 0xa6, 0x94, 0x87, 0x34, 0x71, 0xda, 0x8a, 0x7a, 0x63, 0xde, 0xc7, 0x13, 0x25, 0x73, + 0x3b, 0x74, 0x6e, 0x4d, 0x1e, 0x02, 0x1c, 0x27, 0xe2, 0xb5, 0x49, 0xc6, 0xba, 0xd2, 0xb4, 0xb5, + 0xe6, 0x0c, 0x77, 0x0b, 0x1c, 0xf2, 0x02, 0x6e, 0xc4, 0x7e, 0x22, 0x19, 0x2e, 0x3c, 0x89, 0x27, + 0x41, 0x67, 0xbd, 0xa3, 0x74, 0x1d, 0xa3, 0x9b, 0x31, 0x66, 0x47, 0x85, 0xc4, 0x4b, 0x18, 0x6e, + 0x2e, 0x15, 0x89, 0x74, 0xba, 0xc5, 0xcd, 0x9d, 0x88, 0x44, 0xba, 0x0a, 0x27, 0x77, 0xa1, 0x76, + 0xc9, 0x78, 0x28, 0x2e, 0x1d, 0x5b, 0x31, 0xda, 0x9a, 0xf1, 0x53, 0x85, 0xb9, 0x46, 0x46, 0x8e, + 0xe0, 0xa3, 0x01, 0xe3, 0xd4, 0x1b, 0x26, 0x3e, 0xe3, 0x34, 0xf4, 0xd2, 0xf3, 0xf1, 0x60, 0x80, + 0x6e, 0xc9, 0x84, 0xfa, 0x23, 0x2f, 0x10, 0x63, 0x2e, 0x9d, 0x8d, 0x9e, 0xb5, 0x5d, 0x31, 0x87, + 0xfb, 0x43, 0xa4, 0x7f, 0xae, 0xd9, 0x27, 0x9a, 0x7c, 0xa2, 0xb8, 0xfb, 0x48, 0x25, 0x2f, 0x60, + 0x6b, 0xa5, 0xbd, 0x33, 0x5f, 0x06, 0xe7, 0x5e, 0xca, 0xde, 0x52, 0x87, 0x14, 0xac, 0x7d, 0xb0, + 0x6c, 0x6d, 0x0f, 0x99, 0x27, 0xec, 0x2d, 0xed, 0xff, 0xae, 0x04, 0x9d, 0xf9, 0x14, 0x90, 0xed, + 0x42, 0xf1, 0x91, 0xf9, 0x24, 0x2d, 0x15, 0xe0, 0x06, 0xe5, 0x81, 0x08, 0x69, 0xe8, 0x49, 0x3f, + 0xbd, 0xf0, 0x46, 0x54, 0xfa, 0x4e, 0xa9, 0x57, 0xde, 0x6e, 0xbb, 0x5d, 0x23, 0x38, 0xf5, 0xd3, + 0x8b, 0x1f, 0x53, 0xe9, 0x93, 0x4f, 0xa1, 0x33, 0x4b, 0xcb, 0x05, 0x9d, 0xa6, 0x4e, 0xb9, 0x57, + 0x9e, 0x05, 0xf5, 0xd9, 0x24, 0x4e, 0xdc, 0xf5, 0x9c, 0xf1, 0x92, 0x4e, 0x53, 0x72, 0x17, 0xaa, + 0xc1, 0x39, 0x8b, 0x42, 0x53, 0x83, 0x85, 0x46, 0x80, 0x67, 0xcf, 0xd5, 0x42, 0xf2, 0x31, 0x54, + 0xe5, 0x34, 0xa6, 0xa9, 0x53, 0x55, 0xf6, 0x4c, 0xa5, 0x1e, 0x30, 0x1a, 0x85, 0xe8, 0xae, 0xab, + 0xa5, 0xe4, 0x3b, 0xd0, 0xf5, 0xa3, 0xc8, 0x1b, 0x20, 0xee, 0x69, 0x85, 0xda, 0x6a, 0x85, 0x75, + 0x3f, 0x8a, 0xf2, 0x55, 0xda, 0xff, 0xb5, 0x05, 0xf6, 0x62, 0x21, 0xad, 0xde, 0xb9, 0xb5, 0x7a, + 0xe7, 0x0f, 0xa1, 0x55, 0xfc, 0x6a, 0x69, 0xf5, 0x57, 0x61, 0x90, 0x7f, 0x92, 0xf4, 0x55, 0x06, + 0xca, 0x57, 0x65, 0x00, 0x63, 0xdf, 0xff, 0x65, 0x19, 0x9a, 0xb3, 0x83, 0xba, 0x05, 0x0d, 0x7d, + 0xd4, 0x59, 0xa8, 0x32, 0x57, 0x36, 0x59, 0xaa, 0x2b, 0xf4, 0x30, 0x24, 0x3b, 0x50, 0x0f, 0x44, + 0x34, 0x1e, 0xf1, 0xcc, 0x01, 0x53, 0x44, 0xfb, 0x0a, 0x3c, 0xe4, 0x03, 0xe1, 0x66, 0x04, 0xe2, + 0x40, 0x25, 0xa4, 0x69, 0xa0, 0x1c, 0x68, 0x18, 0x43, 0x0a, 0x21, 0xf7, 0x81, 0xc4, 0x09, 0x1b, + 0xf9, 0xc9, 0xd4, 0xd3, 0x64, 0x8f, 0x85, 0xa9, 0x53, 0xe9, 0x95, 0xb7, 0xcb, 0xae, 0x6d, 0x24, + 0xc6, 0x62, 0x98, 0x92, 0xcf, 0xc0, 0xe6, 0x74, 0x22, 0xbd, 0x84, 0xfa, 0xa1, 0x47, 0xf9, 0x90, + 0x71, 0xaa, 0xba, 0x63, 0x27, 0xfb, 0xf8, 0x33, 0x85, 0x15, 0x0e, 0x55, 0x07, 0xf9, 0x2e, 0xf5, + 0x43, 0x2d, 0x21, 0xf7, 0xa1, 0x96, 0xe0, 0xae, 0xb3, 0x5c, 0x99, 0x23, 0xf0, 0x92, 0x4e, 0x5d, + 0x84, 0x8d, 0x96, 0xe1, 0x90, 0xef, 0xc1, 0xad, 0xcc, 0xbb, 0x38, 0xa1, 0x03, 0x36, 0x29, 0x3a, + 0x59, 0x57, 0x4e, 0x6e, 0x1a, 0xc2, 0xb1, 0x92, 0xcf, 0x5c, 0xfd, 0x10, 0xe0, 0x82, 0xd2, 0xd8, + 0x13, 0x49, 0x68, 0x9a, 0x68, 0xc3, 0x6d, 0x22, 0xf2, 0x05, 0x02, 0xa4, 0x07, 0x6d, 0x96, 0x7a, + 0x03, 0x3f, 0x95, 0xba, 0x97, 0x34, 0x15, 0x01, 0x58, 0x7a, 0xe0, 0xa7, 0x12, 0x13, 0xd0, 0xff, + 0x63, 0x09, 0xc8, 0x72, 0x53, 0xf9, 0xff, 0xcc, 0xcb, 0xb5, 0x71, 0xaa, 0x5e, 0x1b, 0xa7, 0xaf, + 0xc3, 0xac, 0x46, 0x15, 0xbd, 0xa6, 0xe8, 0xed, 0x1c, 0x44, 0xd2, 0x62, 0xb4, 0xea, 0x4b, 0xd1, + 0xfa, 0x4f, 0x05, 0x2a, 0x78, 0xc9, 0x90, 0x4f, 0xa1, 0x89, 0xd7, 0x8c, 0x2a, 0x8d, 0xf9, 0xfb, + 0x1e, 0xc5, 0x85, 0x93, 0xd1, 0x78, 0x6d, 0xd6, 0xe4, 0x87, 0xd0, 0x51, 0x2a, 0x78, 0x07, 0x69, + 0xbd, 0x52, 0xb1, 0x50, 0x50, 0x6f, 0x61, 0x56, 0x68, 0xbf, 0x2e, 0x60, 0x38, 0x09, 0xa8, 0xc6, + 0x91, 0x50, 0x6e, 0x5a, 0xd0, 0x62, 0x63, 0xc9, 0xe5, 0xe4, 0x23, 0x68, 0x32, 0xce, 0x29, 0x5e, + 0x7d, 0x13, 0xd5, 0x85, 0xb2, 0xfc, 0x35, 0x14, 0x7c, 0x18, 0x4e, 0xc8, 0x43, 0xe8, 0x44, 0x74, + 0x20, 0x3d, 0xe5, 0x93, 0xea, 0x6b, 0xd5, 0xa5, 0xbe, 0xd6, 0x46, 0x06, 0x3a, 0xa6, 0xda, 0xda, + 0x23, 0xe8, 0x26, 0x6c, 0x78, 0x5e, 0x54, 0xa9, 0x2d, 0xb7, 0x42, 0x45, 0xc9, 0x75, 0x1e, 0x42, + 0x2b, 0x4e, 0xc4, 0x19, 0x35, 0x3d, 0xa4, 0x7e, 0x45, 0x0f, 0x51, 0x1c, 0xdd, 0x43, 0x1e, 0x42, + 0xeb, 0x6c, 0xcc, 0xf2, 0xae, 0xd3, 0xb8, 0x42, 0x43, 0x71, 0xb4, 0xc6, 0x63, 0xe8, 0xaa, 0x9d, + 0x04, 0x82, 0x87, 0x2a, 0x97, 0xa9, 0xd3, 0x5c, 0xf2, 0x4b, 0x6d, 0x76, 0x3f, 0x67, 0x90, 0x6f, + 0x83, 0xad, 0x37, 0x53, 0xd0, 0x82, 0x25, 0x2d, 0xbd, 0xe1, 0x79, 0x35, 0x21, 0xcf, 0x69, 0x52, + 0x54, 0x6b, 0x2d, 0xab, 0x29, 0x4e, 0x41, 0xed, 0x39, 0x7c, 0xa0, 0xd5, 0xe8, 0x9b, 0x82, 0xa6, + 0x37, 0x48, 0xc4, 0xc8, 0x63, 0xdc, 0x69, 0x2f, 0x59, 0xf8, 0xaa, 0xa2, 0x3f, 0x7b, 0x33, 0xb3, + 0x71, 0x90, 0x88, 0xd1, 0x21, 0xef, 0xff, 0xd5, 0x82, 0x66, 0x3e, 0xfa, 0xfd, 0xef, 0x32, 0xdd, + 0x82, 0x06, 0x43, 0x36, 0x12, 0x4a, 0x45, 0x82, 0x42, 0xe7, 0xeb, 0xb8, 0xfc, 0xbe, 0x75, 0x5c, + 0x59, 0xaa, 0xe3, 0x4d, 0xa8, 0x8d, 0x39, 0x7b, 0x33, 0xd6, 0x7d, 0xb2, 0xe1, 0x9a, 0xd5, 0x15, + 0xf5, 0x5d, 0x5b, 0x5d, 0xdf, 0xfd, 0x5f, 0x59, 0xd0, 0xcc, 0x27, 0x55, 0xb2, 0x03, 0x50, 0x08, + 0xb2, 0xb5, 0x14, 0xa2, 0x82, 0x94, 0x7c, 0x0b, 0x3a, 0x49, 0xcc, 0x8b, 0x49, 0xd1, 0x4d, 0x69, + 0x5d, 0xf3, 0xdd, 0x98, 0x9b, 0xc3, 0x19, 0xf3, 0x42, 0x56, 0xf2, 0x7b, 0xba, 0x7c, 0xcd, 0x3d, + 0xdd, 0xff, 0xb9, 0x55, 0x1c, 0xe5, 0x48, 0x0f, 0xaa, 0xf8, 0x4e, 0x58, 0xe5, 0x91, 0x16, 0x90, + 0x1d, 0x68, 0xa2, 0x33, 0x9a, 0xb5, 0xd2, 0x8f, 0x46, 0xa2, 0x7f, 0xbc, 0xaf, 0x0b, 0xbf, 0x28, + 0x41, 0xab, 0x30, 0x91, 0x93, 0x8f, 0xa1, 0x31, 0x4c, 0xc4, 0x38, 0xf6, 0xce, 0xa6, 0x2b, 0xdc, + 0xa8, 0x2b, 0xd9, 0xde, 0x14, 0x69, 0xfe, 0x70, 0xe8, 0x0d, 0xc6, 0x3c, 0x30, 0x7e, 0xcc, 0xd1, + 0xfc, 0xe1, 0xf0, 0x60, 0xcc, 0x03, 0xd2, 0x83, 0x86, 0x9e, 0xe8, 0x68, 0x38, 0xd7, 0xa2, 0x73, + 0x94, 0x3c, 0x80, 0x36, 0xee, 0x28, 0xff, 0x66, 0x65, 0xd5, 0xa6, 0x20, 0x89, 0xf9, 0xe7, 0xe6, + 0xcb, 0x46, 0x21, 0xff, 0x7a, 0xf5, 0x2a, 0x85, 0x27, 0xc6, 0x87, 0x3c, 0x0e, 0xb5, 0xeb, 0xe2, + 0xf0, 0x06, 0x2a, 0xf8, 0xd4, 0x20, 0xf7, 0xa0, 0xa1, 0x2e, 0xbc, 0xd9, 0xfe, 0xcd, 0x00, 0xbb, + 0x37, 0x3d, 0x94, 0x74, 0xe4, 0xd6, 0x95, 0x74, 0x6f, 0x4a, 0x6e, 0x67, 0xaf, 0x91, 0x52, 0x61, + 0xae, 0x34, 0xcf, 0x90, 0xf7, 0x0b, 0xfd, 0x21, 0x54, 0xd5, 0xe3, 0x65, 0x66, 0xca, 0xba, 0xc6, + 0x54, 0xe9, 0x3a, 0x53, 0x9f, 0x41, 0x05, 0xdf, 0x17, 0xe4, 0x6b, 0x50, 0x0b, 0x04, 0xe7, 0x87, + 0x4f, 0xe7, 0x4c, 0x19, 0x0c, 0xbf, 0xf3, 0x66, 0x4c, 0x93, 0xa9, 0xb2, 0x95, 0xa5, 0x42, 0x43, + 0xfd, 0x3f, 0x97, 0xc0, 0xc9, 0xac, 0xea, 0xbf, 0x4c, 0xf0, 0x93, 0xf1, 0x08, 0xcb, 0x08, 0x47, + 0x3b, 0xc9, 0x46, 0xd4, 0x8b, 0x13, 0x11, 0xd0, 0x34, 0xa5, 0xa1, 0xa7, 0xca, 0xc6, 0xda, 0xae, + 0xb8, 0x5d, 0x14, 0x1c, 0x67, 0xf8, 0x11, 0x1e, 0xd1, 0x0d, 0x3e, 0x1e, 0x21, 0x35, 0x1c, 0x07, + 0x34, 0xf4, 0x12, 0x71, 0x99, 0xea, 0x18, 0xb9, 0x5d, 0x3e, 0x1e, 0x1d, 0x1b, 0xdc, 0x15, 0x97, + 0x29, 0xf9, 0x18, 0x3a, 0xc8, 0x65, 0x92, 0x26, 0xbe, 0xae, 0xad, 0xb2, 0x22, 0xae, 0xf3, 0xf1, + 0xe8, 0x30, 0x07, 0x17, 0x1f, 0x5c, 0x95, 0xa5, 0x07, 0x57, 0x0f, 0x5a, 0x81, 0xe0, 0xc1, 0x38, + 0x49, 0x28, 0x0f, 0xa6, 0xaa, 0x51, 0x54, 0xdc, 0x22, 0x44, 0x0e, 0x80, 0xcc, 0xde, 0x3d, 0x58, + 0xcc, 0x92, 0x4e, 0xa4, 0x39, 0x11, 0x9b, 0x0b, 0x2f, 0xe4, 0x7d, 0x2d, 0x7d, 0xbe, 0xe6, 0xda, + 0x72, 0x01, 0xdb, 0x6b, 0x03, 0x3c, 0xa5, 0xd2, 0x67, 0x11, 0xb6, 0xaf, 0xfe, 0xbf, 0x4a, 0x60, + 0x2f, 0xaa, 0x91, 0x6d, 0xb0, 0xd5, 0x47, 0x62, 0x3f, 0xb8, 0x48, 0xcd, 0x4b, 0x46, 0xc7, 0xaa, + 0x83, 0xf8, 0x31, 0xc2, 0xfa, 0xd1, 0xf2, 0x09, 0x74, 0x15, 0x13, 0x43, 0x64, 0x88, 0x3a, 0x50, + 0xeb, 0x08, 0x63, 0x84, 0x34, 0x0f, 0x2d, 0x5e, 0xb0, 0x78, 0xce, 0x62, 0xd9, 0x58, 0xbc, 0x60, + 0xf1, 0x82, 0x45, 0x64, 0x16, 0x2c, 0x56, 0x8c, 0xc5, 0x0b, 0x16, 0xcf, 0x2c, 0xee, 0xc1, 0x56, + 0x22, 0xc6, 0xc3, 0x73, 0x2f, 0xa5, 0xd2, 0xd3, 0x5d, 0x3c, 0x12, 0x7e, 0xe8, 0xa9, 0x2c, 0x33, + 0x8e, 0xe9, 0xd5, 0x41, 0xbc, 0xa5, 0x68, 0x27, 0x54, 0xaa, 0x8b, 0xe1, 0x95, 0xf0, 0xc3, 0x53, + 0x36, 0xa2, 0x87, 0xfc, 0x08, 0xef, 0xec, 0xcd, 0x70, 0x34, 0x60, 0x11, 0xd5, 0xc3, 0x6c, 0x41, + 0xb5, 0xa6, 0x54, 0x89, 0x96, 0xe2, 0xe8, 0x9a, 0xeb, 0x7c, 0x1f, 0x6e, 0x07, 0x09, 0xf5, 0x25, + 0xf5, 0x52, 0xee, 0xc7, 0xe9, 0xb9, 0x90, 0x45, 0xbd, 0xba, 0xd2, 0xdb, 0xd4, 0x8c, 0x13, 0x43, + 0xc8, 0x74, 0xfb, 0x6f, 0xa1, 0x82, 0xcf, 0x4c, 0xf2, 0x09, 0xd4, 0xcf, 0x54, 0x2d, 0xa6, 0xab, + 0x0b, 0xd4, 0x08, 0xc9, 0x5d, 0x58, 0x67, 0xa9, 0x9a, 0x3f, 0xfd, 0x08, 0x15, 0xf5, 0xa9, 0x77, + 0xe7, 0xc1, 0xf7, 0x2c, 0xd5, 0x3f, 0x58, 0x60, 0xeb, 0x17, 0xec, 0x41, 0xe2, 0x8f, 0xe8, 0x9e, + 0x18, 0x73, 0x6c, 0x5d, 0x95, 0xc2, 0x8c, 0x76, 0xb3, 0xf8, 0xce, 0x55, 0x84, 0xc2, 0xb8, 0xa5, + 0x88, 0xa4, 0x0f, 0xcd, 0x31, 0x3f, 0x43, 0x11, 0x0d, 0xe7, 0x6a, 0x70, 0x06, 0xe3, 0x75, 0x27, + 0x06, 0x83, 0x94, 0x66, 0x19, 0x36, 0x2b, 0xb2, 0x0d, 0xcd, 0xc0, 0x8f, 0x02, 0xec, 0x68, 0xa9, + 0x69, 0x92, 0xc5, 0x8e, 0x3b, 0x13, 0xf6, 0x7f, 0x63, 0x41, 0xab, 0xe0, 0xeb, 0x75, 0x6e, 0x2a, + 0xc2, 0x92, 0x9b, 0xf7, 0xa1, 0x9a, 0x4a, 0xdf, 0x04, 0x2c, 0x2f, 0x8f, 0xc5, 0xed, 0xbb, 0x9a, + 0x44, 0xb6, 0xa1, 0x4c, 0x79, 0x16, 0xbe, 0xab, 0xb8, 0x48, 0xe9, 0xff, 0xcd, 0x82, 0x9a, 0x96, + 0x90, 0x7b, 0xd0, 0xc4, 0xe6, 0xed, 0xa9, 0x3b, 0x7f, 0xf9, 0x9a, 0x69, 0xa0, 0xf0, 0x29, 0xde, + 0xfe, 0x0f, 0x60, 0x36, 0x47, 0x63, 0x4b, 0x2e, 0xad, 0xc8, 0x78, 0x2b, 0x67, 0xec, 0x4d, 0xe7, + 0xfa, 0x77, 0xf9, 0xba, 0xfe, 0x7d, 0x0f, 0xaa, 0x03, 0x74, 0xd0, 0xbc, 0xa4, 0x37, 0x96, 0x3c, + 0x77, 0xb5, 0x7c, 0x76, 0x42, 0xaa, 0xd7, 0x9c, 0x90, 0x9d, 0xdf, 0x97, 0xf4, 0xff, 0xea, 0xd4, + 0x3c, 0xbd, 0x01, 0xeb, 0xf8, 0x37, 0x6f, 0x0d, 0xf6, 0x5a, 0x06, 0xe5, 0xf3, 0x95, 0x6d, 0x65, + 0x50, 0x3e, 0x96, 0xd8, 0x25, 0xf2, 0x15, 0xe8, 0x22, 0x54, 0xb8, 0x90, 0xed, 0x32, 0x69, 0x43, + 0x43, 0x59, 0x13, 0xf1, 0x91, 0x5d, 0x21, 0xeb, 0xd0, 0xc4, 0x95, 0xba, 0x39, 0xec, 0x6a, 0x6e, + 0x44, 0xdd, 0xa7, 0x4f, 0x86, 0x43, 0xbb, 0x96, 0xf1, 0x71, 0x50, 0xb6, 0xeb, 0xd9, 0x0a, 0xaf, + 0x07, 0xbb, 0x41, 0x36, 0x81, 0xe0, 0x6a, 0xfe, 0xdf, 0x1b, 0x76, 0x93, 0x38, 0x70, 0xa3, 0x88, + 0x67, 0x8f, 0x7a, 0x1b, 0x08, 0x81, 0x0e, 0x4a, 0x66, 0x63, 0x8a, 0xdd, 0x22, 0xb7, 0x61, 0x53, + 0x61, 0x4b, 0x8f, 0x3b, 0xbb, 0x9d, 0x7d, 0x0f, 0x8b, 0xcb, 0x5e, 0x27, 0x1d, 0x00, 0x5c, 0xe9, + 0xb0, 0xda, 0x9d, 0x9d, 0xef, 0x42, 0xbb, 0xf8, 0x6c, 0x27, 0x5d, 0x68, 0x1d, 0xfb, 0x69, 0x7a, + 0x7a, 0xae, 0xfa, 0x8c, 0xbd, 0x86, 0xdb, 0xdb, 0x4b, 0x84, 0x1f, 0x06, 0x7e, 0x2a, 0x6d, 0x8b, + 0x34, 0xa0, 0xf2, 0xdc, 0x4f, 0xcf, 0xed, 0xd2, 0xce, 0x2e, 0xc0, 0xec, 0x6d, 0x4c, 0x9a, 0x50, + 0x7d, 0x25, 0x02, 0x3f, 0xb2, 0xd7, 0x90, 0x72, 0xca, 0x5e, 0xfe, 0xc4, 0xb6, 0x48, 0x0b, 0xea, + 0xa7, 0xec, 0x20, 0xd2, 0xfc, 0x3f, 0x59, 0xd0, 0xc8, 0x1e, 0x4c, 0xb3, 0xe8, 0x73, 0x9a, 0xa8, + 0xb8, 0xac, 0x91, 0x9b, 0xb0, 0xa1, 0xe2, 0x48, 0x07, 0xf2, 0x8b, 0xb1, 0x34, 0xb0, 0x95, 0x05, + 0xc8, 0xc5, 0xe1, 0x7c, 0x86, 0x97, 0x88, 0x0d, 0x6d, 0x9d, 0xac, 0x11, 0x53, 0x48, 0x99, 0xdc, + 0x00, 0x5b, 0xe5, 0x8a, 0x4b, 0x96, 0xa3, 0x15, 0x72, 0x0b, 0x6e, 0xce, 0x99, 0xcd, 0x45, 0x55, + 0xf2, 0x21, 0xdc, 0xca, 0x14, 0x96, 0xc5, 0xb5, 0x9d, 0x1e, 0xb4, 0x8b, 0x0f, 0xb5, 0xec, 0x8b, + 0xb8, 0x7d, 0xed, 0xf2, 0xce, 0x8f, 0xa0, 0xbb, 0xd0, 0x5e, 0x30, 0x5c, 0x07, 0x22, 0x8a, 0xc4, + 0x25, 0xe3, 0x43, 0x1d, 0xbd, 0xe3, 0x84, 0x06, 0x34, 0xc4, 0xa5, 0x85, 0xd1, 0xdf, 0x57, 0x37, + 0xa0, 0x74, 0xc5, 0xa5, 0x5d, 0xda, 0x79, 0x9c, 0x19, 0xc8, 0x0b, 0x1f, 0xa3, 0x87, 0xd7, 0x82, + 0xbd, 0x46, 0x00, 0x6a, 0xea, 0x3f, 0x08, 0xa9, 0x6d, 0xe1, 0x6f, 0x35, 0x6f, 0xa5, 0x76, 0x69, + 0xef, 0x1b, 0x5f, 0xbe, 0xbb, 0x63, 0xfd, 0xe5, 0xdd, 0x1d, 0xeb, 0x1f, 0xef, 0xee, 0x58, 0xbf, + 0xfd, 0xe7, 0x9d, 0x35, 0xb8, 0x19, 0x88, 0xd1, 0x6e, 0xcc, 0xf8, 0x30, 0xf0, 0xe3, 0x5d, 0xc9, + 0xc2, 0x33, 0x55, 0x12, 0xc7, 0xd6, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xad, 0x91, 0x69, 0xe7, + 0xfd, 0x16, 0x00, 0x00, } diff --git a/proto/executor.proto b/proto/executor.proto index 5886448a..7474b836 100644 --- a/proto/executor.proto +++ b/proto/executor.proto @@ -218,9 +218,9 @@ message TableScanContext { optional uint64 scan_rows_count = 2; optional uint64 skip_packs_count = 3; optional uint64 skip_rows_count = 4; - optional uint64 rough_set_index_load_time_in_milliseconds = 5; - optional uint64 dmfile_read_time_in_milliseconds = 6; - optional uint64 create_snapshot_time_in_milliseconds = 7; + optional uint64 rough_set_index_load_time_in_ns = 5; + optional uint64 dmfile_read_time_in_ns = 6; + optional uint64 create_snapshot_time_in_ns = 7; } message Sort { From cf5eee9880398bd327e478de3f339fa8580a9dd2 Mon Sep 17 00:00:00 2001 From: hongyunyan <649330952@qq.com> Date: Mon, 21 Nov 2022 13:07:17 +0800 Subject: [PATCH 05/13] fix --- go-tipb/analyze.pb.go | 177 +++++++++++++++++++++--------------------- 1 file changed, 90 insertions(+), 87 deletions(-) diff --git a/go-tipb/analyze.pb.go b/go-tipb/analyze.pb.go index 89a864e0..06ea7d45 100644 --- a/go-tipb/analyze.pb.go +++ b/go-tipb/analyze.pb.go @@ -2,93 +2,96 @@ // source: analyze.proto /* - Package tipb is a generated protocol buffer package. - - It is generated from these files: - analyze.proto - checksum.proto - executor.proto - explain.proto - expression.proto - metadata.proto - resourcetag.proto - schema.proto - select.proto - topsql_agent.proto - trace.proto - - It has these top-level messages: - AnalyzeReq - AnalyzeIndexReq - AnalyzeColumnsReq - AnalyzeMixedResp - AnalyzeColumnGroup - AnalyzeColumnsResp - AnalyzeIndexResp - Bucket - Histogram - FMSketch - SampleCollector - RowSampleCollector - RowSample - CMSketchRow - CMSketchTopN - CMSketch - ChecksumRewriteRule - ChecksumRequest - ChecksumResponse - Executor - ExchangeSender - ExchangeReceiver - TableScan - PartitionTableScan - Join - IndexScan - Selection - Projection - Aggregation - TopN - Limit - Kill - ExecutorExecutionSummary - Sort - WindowFrameBound - WindowFrame - Window - ExplainData - ExplainOperator - AccessObject - DynamicPartitionAccessObjects - DynamicPartitionAccessObject - ScanAccessObject - IndexAccess - FieldType - Expr - RpnExpr - ByItem - InUnionMetadata - CompareInMetadata - ResourceGroupTag - TableInfo - ColumnInfo - IndexInfo - KeyRange - Row - Error - SelectResponse - Chunk - RowMeta - DAGRequest - ChunkMemoryLayout - UserIdentity - StreamResponse - TopSQLRecord - TopSQLRecordItem - SQLMeta - PlanMeta - EmptyResponse - TopSQLSubRequest - TopSQLSubResponse +Package tipb is a generated protocol buffer package. + +It is generated from these files: + + analyze.proto + checksum.proto + executor.proto + explain.proto + expression.proto + metadata.proto + resourcetag.proto + schema.proto + select.proto + topsql_agent.proto + trace.proto + +It has these top-level messages: + + AnalyzeReq + AnalyzeIndexReq + AnalyzeColumnsReq + AnalyzeMixedResp + AnalyzeColumnGroup + AnalyzeColumnsResp + AnalyzeIndexResp + Bucket + Histogram + FMSketch + SampleCollector + RowSampleCollector + RowSample + CMSketchRow + CMSketchTopN + CMSketch + ChecksumRewriteRule + ChecksumRequest + ChecksumResponse + Executor + ExchangeSender + ExchangeReceiver + TableScan + PartitionTableScan + Join + IndexScan + Selection + Projection + Aggregation + TopN + Limit + Kill + ExecutorExecutionSummary + TableScanContext + Sort + WindowFrameBound + WindowFrame + Window + ExplainData + ExplainOperator + AccessObject + DynamicPartitionAccessObjects + DynamicPartitionAccessObject + ScanAccessObject + IndexAccess + FieldType + Expr + RpnExpr + ByItem + InUnionMetadata + CompareInMetadata + ResourceGroupTag + TableInfo + ColumnInfo + IndexInfo + KeyRange + Row + Error + SelectResponse + Chunk + RowMeta + DAGRequest + ChunkMemoryLayout + UserIdentity + StreamResponse + TopSQLRecord + TopSQLRecordItem + SQLMeta + PlanMeta + EmptyResponse + TopSQLSubRequest + TopSQLSubResponse */ package tipb From 1b83de23b04afe030a9b3e99de8e57b706148764 Mon Sep 17 00:00:00 2001 From: hongyunyan <649330952@qq.com> Date: Mon, 21 Nov 2022 13:10:43 +0800 Subject: [PATCH 06/13] update --- go-binlog/binlog.pb.go | 16 +++++++++------- go-binlog/cistern.pb.go | 26 ++++++++++++++------------ go-binlog/pump.pb.go | 28 +++++++++++++++------------- 3 files changed, 38 insertions(+), 32 deletions(-) diff --git a/go-binlog/binlog.pb.go b/go-binlog/binlog.pb.go index 1d9794ed..b448dd18 100644 --- a/go-binlog/binlog.pb.go +++ b/go-binlog/binlog.pb.go @@ -2,15 +2,17 @@ // source: binlog.proto /* - Package binlog is a generated protocol buffer package. +Package binlog is a generated protocol buffer package. - It is generated from these files: - binlog.proto +It is generated from these files: - It has these top-level messages: - TableMutation - PrewriteValue - Binlog + binlog.proto + +It has these top-level messages: + + TableMutation + PrewriteValue + Binlog */ package binlog diff --git a/go-binlog/cistern.pb.go b/go-binlog/cistern.pb.go index 35216705..0e2ba419 100644 --- a/go-binlog/cistern.pb.go +++ b/go-binlog/cistern.pb.go @@ -2,18 +2,20 @@ // source: cistern.proto /* - Package binlog is a generated protocol buffer package. - - It is generated from these files: - cistern.proto - - It has these top-level messages: - DumpBinlogReq - DumpBinlogResp - DumpDDLJobsReq - DumpDDLJobsResp - NotifyReq - NotifyResp +Package binlog is a generated protocol buffer package. + +It is generated from these files: + + cistern.proto + +It has these top-level messages: + + DumpBinlogReq + DumpBinlogResp + DumpDDLJobsReq + DumpDDLJobsResp + NotifyReq + NotifyResp */ package binlog diff --git a/go-binlog/pump.pb.go b/go-binlog/pump.pb.go index 7a3d65dd..40092b43 100644 --- a/go-binlog/pump.pb.go +++ b/go-binlog/pump.pb.go @@ -2,19 +2,21 @@ // source: pump.proto /* - Package binlog is a generated protocol buffer package. - - It is generated from these files: - pump.proto - - It has these top-level messages: - WriteBinlogReq - WriteBinlogResp - PullBinlogReq - PullBinlogResp - Pos - Meta - Entity +Package binlog is a generated protocol buffer package. + +It is generated from these files: + + pump.proto + +It has these top-level messages: + + WriteBinlogReq + WriteBinlogResp + PullBinlogReq + PullBinlogResp + Pos + Meta + Entity */ package binlog From 90b70912298cda8e88644a818b1d4e23df5fd6cc Mon Sep 17 00:00:00 2001 From: hongyunyan <649330952@qq.com> Date: Mon, 21 Nov 2022 13:14:50 +0800 Subject: [PATCH 07/13] update code --- go-binlog/binlog.pb.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/go-binlog/binlog.pb.go b/go-binlog/binlog.pb.go index b448dd18..2c05c815 100644 --- a/go-binlog/binlog.pb.go +++ b/go-binlog/binlog.pb.go @@ -2,17 +2,17 @@ // source: binlog.proto /* -Package binlog is a generated protocol buffer package. + Package binlog is a generated protocol buffer package. -It is generated from these files: + It is generated from these files: - binlog.proto + binlog.proto -It has these top-level messages: + It has these top-level messages: - TableMutation - PrewriteValue - Binlog + TableMutation + PrewriteValue + Binlog */ package binlog From e3761a239d8ff65af682d14512c629368290422a Mon Sep 17 00:00:00 2001 From: hongyunyan <649330952@qq.com> Date: Mon, 21 Nov 2022 13:17:03 +0800 Subject: [PATCH 08/13] fix --- go-binlog/binlog.pb.go | 2 -- go-binlog/cistern.pb.go | 26 ++++++++++++-------------- go-binlog/pump.pb.go | 28 +++++++++++++--------------- 3 files changed, 25 insertions(+), 31 deletions(-) diff --git a/go-binlog/binlog.pb.go b/go-binlog/binlog.pb.go index 2c05c815..1d9794ed 100644 --- a/go-binlog/binlog.pb.go +++ b/go-binlog/binlog.pb.go @@ -5,11 +5,9 @@ Package binlog is a generated protocol buffer package. It is generated from these files: - binlog.proto It has these top-level messages: - TableMutation PrewriteValue Binlog diff --git a/go-binlog/cistern.pb.go b/go-binlog/cistern.pb.go index 0e2ba419..35216705 100644 --- a/go-binlog/cistern.pb.go +++ b/go-binlog/cistern.pb.go @@ -2,20 +2,18 @@ // source: cistern.proto /* -Package binlog is a generated protocol buffer package. - -It is generated from these files: - - cistern.proto - -It has these top-level messages: - - DumpBinlogReq - DumpBinlogResp - DumpDDLJobsReq - DumpDDLJobsResp - NotifyReq - NotifyResp + Package binlog is a generated protocol buffer package. + + It is generated from these files: + cistern.proto + + It has these top-level messages: + DumpBinlogReq + DumpBinlogResp + DumpDDLJobsReq + DumpDDLJobsResp + NotifyReq + NotifyResp */ package binlog diff --git a/go-binlog/pump.pb.go b/go-binlog/pump.pb.go index 40092b43..7a3d65dd 100644 --- a/go-binlog/pump.pb.go +++ b/go-binlog/pump.pb.go @@ -2,21 +2,19 @@ // source: pump.proto /* -Package binlog is a generated protocol buffer package. - -It is generated from these files: - - pump.proto - -It has these top-level messages: - - WriteBinlogReq - WriteBinlogResp - PullBinlogReq - PullBinlogResp - Pos - Meta - Entity + Package binlog is a generated protocol buffer package. + + It is generated from these files: + pump.proto + + It has these top-level messages: + WriteBinlogReq + WriteBinlogResp + PullBinlogReq + PullBinlogResp + Pos + Meta + Entity */ package binlog From a5b808f2438a1781dd4432c36c2b1f33a9158c24 Mon Sep 17 00:00:00 2001 From: hongyunyan <649330952@qq.com> Date: Mon, 21 Nov 2022 13:19:16 +0800 Subject: [PATCH 09/13] fix --- go-tipb/analyze.pb.go | 178 +++++++++++++++++++++--------------------- 1 file changed, 88 insertions(+), 90 deletions(-) diff --git a/go-tipb/analyze.pb.go b/go-tipb/analyze.pb.go index 06ea7d45..408c3e42 100644 --- a/go-tipb/analyze.pb.go +++ b/go-tipb/analyze.pb.go @@ -2,96 +2,94 @@ // source: analyze.proto /* -Package tipb is a generated protocol buffer package. - -It is generated from these files: - - analyze.proto - checksum.proto - executor.proto - explain.proto - expression.proto - metadata.proto - resourcetag.proto - schema.proto - select.proto - topsql_agent.proto - trace.proto - -It has these top-level messages: - - AnalyzeReq - AnalyzeIndexReq - AnalyzeColumnsReq - AnalyzeMixedResp - AnalyzeColumnGroup - AnalyzeColumnsResp - AnalyzeIndexResp - Bucket - Histogram - FMSketch - SampleCollector - RowSampleCollector - RowSample - CMSketchRow - CMSketchTopN - CMSketch - ChecksumRewriteRule - ChecksumRequest - ChecksumResponse - Executor - ExchangeSender - ExchangeReceiver - TableScan - PartitionTableScan - Join - IndexScan - Selection - Projection - Aggregation - TopN - Limit - Kill - ExecutorExecutionSummary - TableScanContext - Sort - WindowFrameBound - WindowFrame - Window - ExplainData - ExplainOperator - AccessObject - DynamicPartitionAccessObjects - DynamicPartitionAccessObject - ScanAccessObject - IndexAccess - FieldType - Expr - RpnExpr - ByItem - InUnionMetadata - CompareInMetadata - ResourceGroupTag - TableInfo - ColumnInfo - IndexInfo - KeyRange - Row - Error - SelectResponse - Chunk - RowMeta - DAGRequest - ChunkMemoryLayout - UserIdentity - StreamResponse - TopSQLRecord - TopSQLRecordItem - SQLMeta - PlanMeta - EmptyResponse - TopSQLSubRequest - TopSQLSubResponse + Package tipb is a generated protocol buffer package. + + It is generated from these files: + analyze.proto + checksum.proto + executor.proto + explain.proto + expression.proto + metadata.proto + resourcetag.proto + schema.proto + select.proto + topsql_agent.proto + trace.proto + + It has these top-level messages: + AnalyzeReq + AnalyzeIndexReq + AnalyzeColumnsReq + AnalyzeMixedResp + AnalyzeColumnGroup + AnalyzeColumnsResp + AnalyzeIndexResp + Bucket + Histogram + FMSketch + SampleCollector + RowSampleCollector + RowSample + CMSketchRow + CMSketchTopN + CMSketch + ChecksumRewriteRule + ChecksumRequest + ChecksumResponse + Executor + ExchangeSender + ExchangeReceiver + TableScan + PartitionTableScan + Join + IndexScan + Selection + Projection + Aggregation + TopN + Limit + Kill + ExecutorExecutionSummary + TableScanContext + Sort + WindowFrameBound + WindowFrame + Window + ExplainData + ExplainOperator + AccessObject + DynamicPartitionAccessObjects + DynamicPartitionAccessObject + ScanAccessObject + IndexAccess + FieldType + Expr + RpnExpr + ByItem + InUnionMetadata + CompareInMetadata + ResourceGroupTag + TableInfo + ColumnInfo + IndexInfo + KeyRange + Row + Error + SelectResponse + Chunk + RowMeta + DAGRequest + ChunkMemoryLayout + UserIdentity + StreamResponse + TopSQLRecord + TopSQLRecordItem + SQLMeta + PlanMeta + EmptyResponse + TopSQLSubRequest + TopSQLSubResponse */ package tipb From 9789d08e55577ed859def1bded5e433018dd7f95 Mon Sep 17 00:00:00 2001 From: hongyunyan <649330952@qq.com> Date: Mon, 21 Nov 2022 13:31:46 +0800 Subject: [PATCH 10/13] update proto --- proto/executor.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/proto/executor.proto b/proto/executor.proto index 7474b836..ae984379 100644 --- a/proto/executor.proto +++ b/proto/executor.proto @@ -215,9 +215,9 @@ message ExecutorExecutionSummary { message TableScanContext { optional uint64 scan_packs_count = 1; - optional uint64 scan_rows_count = 2; - optional uint64 skip_packs_count = 3; - optional uint64 skip_rows_count = 4; + optional uint64 scan_rows_count = 2; + optional uint64 skip_packs_count = 3; + optional uint64 skip_rows_count = 4; optional uint64 rough_set_index_load_time_in_ns = 5; optional uint64 dmfile_read_time_in_ns = 6; optional uint64 create_snapshot_time_in_ns = 7; From 439f8cc5720e843740a48c6ff62fbbd663aed62e Mon Sep 17 00:00:00 2001 From: hongyunyan <649330952@qq.com> Date: Tue, 22 Nov 2022 16:09:27 +0800 Subject: [PATCH 11/13] update proto --- go-tipb/executor.pb.go | 509 +++++++++++++++++++++-------------------- proto/executor.proto | 19 +- 2 files changed, 266 insertions(+), 262 deletions(-) diff --git a/go-tipb/executor.pb.go b/go-tipb/executor.pb.go index 01447cfc..8257016b 100644 --- a/go-tipb/executor.pb.go +++ b/go-tipb/executor.pb.go @@ -1103,7 +1103,7 @@ type ExecutorExecutionSummary struct { // The execution concurrency for this executor Concurrency *uint64 `protobuf:"varint,5,opt,name=concurrency" json:"concurrency,omitempty"` // Types that are valid to be assigned to DetailInfo: - // *ExecutorExecutionSummary_TableScanContext + // *ExecutorExecutionSummary_TiflashScanContext DetailInfo isExecutorExecutionSummary_DetailInfo `protobuf_oneof:"DetailInfo"` XXX_unrecognized []byte `json:"-"` } @@ -1121,11 +1121,11 @@ type isExecutorExecutionSummary_DetailInfo interface { Size() int } -type ExecutorExecutionSummary_TableScanContext struct { - TableScanContext *TableScanContext `protobuf:"bytes,6,opt,name=table_scan_context,json=tableScanContext,oneof"` +type ExecutorExecutionSummary_TiflashScanContext struct { + TiflashScanContext *TiFlashScanContext `protobuf:"bytes,6,opt,name=tiflash_scan_context,json=tiflashScanContext,oneof"` } -func (*ExecutorExecutionSummary_TableScanContext) isExecutorExecutionSummary_DetailInfo() {} +func (*ExecutorExecutionSummary_TiflashScanContext) isExecutorExecutionSummary_DetailInfo() {} func (m *ExecutorExecutionSummary) GetDetailInfo() isExecutorExecutionSummary_DetailInfo { if m != nil { @@ -1169,9 +1169,9 @@ func (m *ExecutorExecutionSummary) GetConcurrency() uint64 { return 0 } -func (m *ExecutorExecutionSummary) GetTableScanContext() *TableScanContext { - if x, ok := m.GetDetailInfo().(*ExecutorExecutionSummary_TableScanContext); ok { - return x.TableScanContext +func (m *ExecutorExecutionSummary) GetTiflashScanContext() *TiFlashScanContext { + if x, ok := m.GetDetailInfo().(*ExecutorExecutionSummary_TiflashScanContext); ok { + return x.TiflashScanContext } return nil } @@ -1179,7 +1179,7 @@ func (m *ExecutorExecutionSummary) GetTableScanContext() *TableScanContext { // XXX_OneofFuncs is for the internal use of the proto package. func (*ExecutorExecutionSummary) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { return _ExecutorExecutionSummary_OneofMarshaler, _ExecutorExecutionSummary_OneofUnmarshaler, _ExecutorExecutionSummary_OneofSizer, []interface{}{ - (*ExecutorExecutionSummary_TableScanContext)(nil), + (*ExecutorExecutionSummary_TiflashScanContext)(nil), } } @@ -1187,9 +1187,9 @@ func _ExecutorExecutionSummary_OneofMarshaler(msg proto.Message, b *proto.Buffer m := msg.(*ExecutorExecutionSummary) // DetailInfo switch x := m.DetailInfo.(type) { - case *ExecutorExecutionSummary_TableScanContext: + case *ExecutorExecutionSummary_TiflashScanContext: _ = b.EncodeVarint(6<<3 | proto.WireBytes) - if err := b.EncodeMessage(x.TableScanContext); err != nil { + if err := b.EncodeMessage(x.TiflashScanContext); err != nil { return err } case nil: @@ -1202,13 +1202,13 @@ func _ExecutorExecutionSummary_OneofMarshaler(msg proto.Message, b *proto.Buffer func _ExecutorExecutionSummary_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { m := msg.(*ExecutorExecutionSummary) switch tag { - case 6: // DetailInfo.table_scan_context + case 6: // DetailInfo.tiflash_scan_context if wire != proto.WireBytes { return true, proto.ErrInternalBadWireType } - msg := new(TableScanContext) + msg := new(TiFlashScanContext) err := b.DecodeMessage(msg) - m.DetailInfo = &ExecutorExecutionSummary_TableScanContext{msg} + m.DetailInfo = &ExecutorExecutionSummary_TiflashScanContext{msg} return true, err default: return false, nil @@ -1219,8 +1219,8 @@ func _ExecutorExecutionSummary_OneofSizer(msg proto.Message) (n int) { m := msg.(*ExecutorExecutionSummary) // DetailInfo switch x := m.DetailInfo.(type) { - case *ExecutorExecutionSummary_TableScanContext: - s := proto.Size(x.TableScanContext) + case *ExecutorExecutionSummary_TiflashScanContext: + s := proto.Size(x.TiflashScanContext) n += proto.SizeVarint(6<<3 | proto.WireBytes) n += proto.SizeVarint(uint64(s)) n += s @@ -1231,67 +1231,67 @@ func _ExecutorExecutionSummary_OneofSizer(msg proto.Message) (n int) { return n } -type TableScanContext struct { - ScanPacksCount *uint64 `protobuf:"varint,1,opt,name=scan_packs_count,json=scanPacksCount" json:"scan_packs_count,omitempty"` - ScanRowsCount *uint64 `protobuf:"varint,2,opt,name=scan_rows_count,json=scanRowsCount" json:"scan_rows_count,omitempty"` - SkipPacksCount *uint64 `protobuf:"varint,3,opt,name=skip_packs_count,json=skipPacksCount" json:"skip_packs_count,omitempty"` - SkipRowsCount *uint64 `protobuf:"varint,4,opt,name=skip_rows_count,json=skipRowsCount" json:"skip_rows_count,omitempty"` - RoughSetIndexLoadTimeInNs *uint64 `protobuf:"varint,5,opt,name=rough_set_index_load_time_in_ns,json=roughSetIndexLoadTimeInNs" json:"rough_set_index_load_time_in_ns,omitempty"` - DmfileReadTimeInNs *uint64 `protobuf:"varint,6,opt,name=dmfile_read_time_in_ns,json=dmfileReadTimeInNs" json:"dmfile_read_time_in_ns,omitempty"` - CreateSnapshotTimeInNs *uint64 `protobuf:"varint,7,opt,name=create_snapshot_time_in_ns,json=createSnapshotTimeInNs" json:"create_snapshot_time_in_ns,omitempty"` - XXX_unrecognized []byte `json:"-"` +type TiFlashScanContext struct { + TotalScannedPacksInDmfile *uint64 `protobuf:"varint,1,opt,name=total_scanned_packs_in_dmfile,json=totalScannedPacksInDmfile" json:"total_scanned_packs_in_dmfile,omitempty"` + TotalSkippedPacksInDmfile *uint64 `protobuf:"varint,2,opt,name=total_skipped_packs_in_dmfile,json=totalSkippedPacksInDmfile" json:"total_skipped_packs_in_dmfile,omitempty"` + TotalScannedRowsInDmfile *uint64 `protobuf:"varint,3,opt,name=total_scanned_rows_in_dmfile,json=totalScannedRowsInDmfile" json:"total_scanned_rows_in_dmfile,omitempty"` + TotalSkippedRowsInDmfile *uint64 `protobuf:"varint,4,opt,name=total_skipped_rows_in_dmfile,json=totalSkippedRowsInDmfile" json:"total_skipped_rows_in_dmfile,omitempty"` + TotalRoughSetIndexLoadTimeInNs *uint64 `protobuf:"varint,5,opt,name=total_rough_set_index_load_time_in_ns,json=totalRoughSetIndexLoadTimeInNs" json:"total_rough_set_index_load_time_in_ns,omitempty"` + TotalDmfileReadTimeInNs *uint64 `protobuf:"varint,6,opt,name=total_dmfile_read_time_in_ns,json=totalDmfileReadTimeInNs" json:"total_dmfile_read_time_in_ns,omitempty"` + TotalCreateSnapshotTimeInNs *uint64 `protobuf:"varint,7,opt,name=total_create_snapshot_time_in_ns,json=totalCreateSnapshotTimeInNs" json:"total_create_snapshot_time_in_ns,omitempty"` + XXX_unrecognized []byte `json:"-"` } -func (m *TableScanContext) Reset() { *m = TableScanContext{} } -func (m *TableScanContext) String() string { return proto.CompactTextString(m) } -func (*TableScanContext) ProtoMessage() {} -func (*TableScanContext) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{14} } +func (m *TiFlashScanContext) Reset() { *m = TiFlashScanContext{} } +func (m *TiFlashScanContext) String() string { return proto.CompactTextString(m) } +func (*TiFlashScanContext) ProtoMessage() {} +func (*TiFlashScanContext) Descriptor() ([]byte, []int) { return fileDescriptorExecutor, []int{14} } -func (m *TableScanContext) GetScanPacksCount() uint64 { - if m != nil && m.ScanPacksCount != nil { - return *m.ScanPacksCount +func (m *TiFlashScanContext) GetTotalScannedPacksInDmfile() uint64 { + if m != nil && m.TotalScannedPacksInDmfile != nil { + return *m.TotalScannedPacksInDmfile } return 0 } -func (m *TableScanContext) GetScanRowsCount() uint64 { - if m != nil && m.ScanRowsCount != nil { - return *m.ScanRowsCount +func (m *TiFlashScanContext) GetTotalSkippedPacksInDmfile() uint64 { + if m != nil && m.TotalSkippedPacksInDmfile != nil { + return *m.TotalSkippedPacksInDmfile } return 0 } -func (m *TableScanContext) GetSkipPacksCount() uint64 { - if m != nil && m.SkipPacksCount != nil { - return *m.SkipPacksCount +func (m *TiFlashScanContext) GetTotalScannedRowsInDmfile() uint64 { + if m != nil && m.TotalScannedRowsInDmfile != nil { + return *m.TotalScannedRowsInDmfile } return 0 } -func (m *TableScanContext) GetSkipRowsCount() uint64 { - if m != nil && m.SkipRowsCount != nil { - return *m.SkipRowsCount +func (m *TiFlashScanContext) GetTotalSkippedRowsInDmfile() uint64 { + if m != nil && m.TotalSkippedRowsInDmfile != nil { + return *m.TotalSkippedRowsInDmfile } return 0 } -func (m *TableScanContext) GetRoughSetIndexLoadTimeInNs() uint64 { - if m != nil && m.RoughSetIndexLoadTimeInNs != nil { - return *m.RoughSetIndexLoadTimeInNs +func (m *TiFlashScanContext) GetTotalRoughSetIndexLoadTimeInNs() uint64 { + if m != nil && m.TotalRoughSetIndexLoadTimeInNs != nil { + return *m.TotalRoughSetIndexLoadTimeInNs } return 0 } -func (m *TableScanContext) GetDmfileReadTimeInNs() uint64 { - if m != nil && m.DmfileReadTimeInNs != nil { - return *m.DmfileReadTimeInNs +func (m *TiFlashScanContext) GetTotalDmfileReadTimeInNs() uint64 { + if m != nil && m.TotalDmfileReadTimeInNs != nil { + return *m.TotalDmfileReadTimeInNs } return 0 } -func (m *TableScanContext) GetCreateSnapshotTimeInNs() uint64 { - if m != nil && m.CreateSnapshotTimeInNs != nil { - return *m.CreateSnapshotTimeInNs +func (m *TiFlashScanContext) GetTotalCreateSnapshotTimeInNs() uint64 { + if m != nil && m.TotalCreateSnapshotTimeInNs != nil { + return *m.TotalCreateSnapshotTimeInNs } return 0 } @@ -1467,7 +1467,7 @@ func init() { proto.RegisterType((*Limit)(nil), "tipb.Limit") proto.RegisterType((*Kill)(nil), "tipb.Kill") proto.RegisterType((*ExecutorExecutionSummary)(nil), "tipb.ExecutorExecutionSummary") - proto.RegisterType((*TableScanContext)(nil), "tipb.TableScanContext") + proto.RegisterType((*TiFlashScanContext)(nil), "tipb.TiFlashScanContext") proto.RegisterType((*Sort)(nil), "tipb.Sort") proto.RegisterType((*WindowFrameBound)(nil), "tipb.WindowFrameBound") proto.RegisterType((*WindowFrame)(nil), "tipb.WindowFrame") @@ -2519,13 +2519,13 @@ func (m *ExecutorExecutionSummary) MarshalTo(dAtA []byte) (int, error) { return i, nil } -func (m *ExecutorExecutionSummary_TableScanContext) MarshalTo(dAtA []byte) (int, error) { +func (m *ExecutorExecutionSummary_TiflashScanContext) MarshalTo(dAtA []byte) (int, error) { i := 0 - if m.TableScanContext != nil { + if m.TiflashScanContext != nil { dAtA[i] = 0x32 i++ - i = encodeVarintExecutor(dAtA, i, uint64(m.TableScanContext.Size())) - n22, err := m.TableScanContext.MarshalTo(dAtA[i:]) + i = encodeVarintExecutor(dAtA, i, uint64(m.TiflashScanContext.Size())) + n22, err := m.TiflashScanContext.MarshalTo(dAtA[i:]) if err != nil { return 0, err } @@ -2533,7 +2533,7 @@ func (m *ExecutorExecutionSummary_TableScanContext) MarshalTo(dAtA []byte) (int, } return i, nil } -func (m *TableScanContext) Marshal() (dAtA []byte, err error) { +func (m *TiFlashScanContext) Marshal() (dAtA []byte, err error) { size := m.Size() dAtA = make([]byte, size) n, err := m.MarshalTo(dAtA) @@ -2543,45 +2543,45 @@ func (m *TableScanContext) Marshal() (dAtA []byte, err error) { return dAtA[:n], nil } -func (m *TableScanContext) MarshalTo(dAtA []byte) (int, error) { +func (m *TiFlashScanContext) MarshalTo(dAtA []byte) (int, error) { var i int _ = i var l int _ = l - if m.ScanPacksCount != nil { + if m.TotalScannedPacksInDmfile != nil { dAtA[i] = 0x8 i++ - i = encodeVarintExecutor(dAtA, i, uint64(*m.ScanPacksCount)) + i = encodeVarintExecutor(dAtA, i, uint64(*m.TotalScannedPacksInDmfile)) } - if m.ScanRowsCount != nil { + if m.TotalSkippedPacksInDmfile != nil { dAtA[i] = 0x10 i++ - i = encodeVarintExecutor(dAtA, i, uint64(*m.ScanRowsCount)) + i = encodeVarintExecutor(dAtA, i, uint64(*m.TotalSkippedPacksInDmfile)) } - if m.SkipPacksCount != nil { + if m.TotalScannedRowsInDmfile != nil { dAtA[i] = 0x18 i++ - i = encodeVarintExecutor(dAtA, i, uint64(*m.SkipPacksCount)) + i = encodeVarintExecutor(dAtA, i, uint64(*m.TotalScannedRowsInDmfile)) } - if m.SkipRowsCount != nil { + if m.TotalSkippedRowsInDmfile != nil { dAtA[i] = 0x20 i++ - i = encodeVarintExecutor(dAtA, i, uint64(*m.SkipRowsCount)) + i = encodeVarintExecutor(dAtA, i, uint64(*m.TotalSkippedRowsInDmfile)) } - if m.RoughSetIndexLoadTimeInNs != nil { + if m.TotalRoughSetIndexLoadTimeInNs != nil { dAtA[i] = 0x28 i++ - i = encodeVarintExecutor(dAtA, i, uint64(*m.RoughSetIndexLoadTimeInNs)) + i = encodeVarintExecutor(dAtA, i, uint64(*m.TotalRoughSetIndexLoadTimeInNs)) } - if m.DmfileReadTimeInNs != nil { + if m.TotalDmfileReadTimeInNs != nil { dAtA[i] = 0x30 i++ - i = encodeVarintExecutor(dAtA, i, uint64(*m.DmfileReadTimeInNs)) + i = encodeVarintExecutor(dAtA, i, uint64(*m.TotalDmfileReadTimeInNs)) } - if m.CreateSnapshotTimeInNs != nil { + if m.TotalCreateSnapshotTimeInNs != nil { dAtA[i] = 0x38 i++ - i = encodeVarintExecutor(dAtA, i, uint64(*m.CreateSnapshotTimeInNs)) + i = encodeVarintExecutor(dAtA, i, uint64(*m.TotalCreateSnapshotTimeInNs)) } if m.XXX_unrecognized != nil { i += copy(dAtA[i:], m.XXX_unrecognized) @@ -3283,38 +3283,38 @@ func (m *ExecutorExecutionSummary) Size() (n int) { return n } -func (m *ExecutorExecutionSummary_TableScanContext) Size() (n int) { +func (m *ExecutorExecutionSummary_TiflashScanContext) Size() (n int) { var l int _ = l - if m.TableScanContext != nil { - l = m.TableScanContext.Size() + if m.TiflashScanContext != nil { + l = m.TiflashScanContext.Size() n += 1 + l + sovExecutor(uint64(l)) } return n } -func (m *TableScanContext) Size() (n int) { +func (m *TiFlashScanContext) Size() (n int) { var l int _ = l - if m.ScanPacksCount != nil { - n += 1 + sovExecutor(uint64(*m.ScanPacksCount)) + if m.TotalScannedPacksInDmfile != nil { + n += 1 + sovExecutor(uint64(*m.TotalScannedPacksInDmfile)) } - if m.ScanRowsCount != nil { - n += 1 + sovExecutor(uint64(*m.ScanRowsCount)) + if m.TotalSkippedPacksInDmfile != nil { + n += 1 + sovExecutor(uint64(*m.TotalSkippedPacksInDmfile)) } - if m.SkipPacksCount != nil { - n += 1 + sovExecutor(uint64(*m.SkipPacksCount)) + if m.TotalScannedRowsInDmfile != nil { + n += 1 + sovExecutor(uint64(*m.TotalScannedRowsInDmfile)) } - if m.SkipRowsCount != nil { - n += 1 + sovExecutor(uint64(*m.SkipRowsCount)) + if m.TotalSkippedRowsInDmfile != nil { + n += 1 + sovExecutor(uint64(*m.TotalSkippedRowsInDmfile)) } - if m.RoughSetIndexLoadTimeInNs != nil { - n += 1 + sovExecutor(uint64(*m.RoughSetIndexLoadTimeInNs)) + if m.TotalRoughSetIndexLoadTimeInNs != nil { + n += 1 + sovExecutor(uint64(*m.TotalRoughSetIndexLoadTimeInNs)) } - if m.DmfileReadTimeInNs != nil { - n += 1 + sovExecutor(uint64(*m.DmfileReadTimeInNs)) + if m.TotalDmfileReadTimeInNs != nil { + n += 1 + sovExecutor(uint64(*m.TotalDmfileReadTimeInNs)) } - if m.CreateSnapshotTimeInNs != nil { - n += 1 + sovExecutor(uint64(*m.CreateSnapshotTimeInNs)) + if m.TotalCreateSnapshotTimeInNs != nil { + n += 1 + sovExecutor(uint64(*m.TotalCreateSnapshotTimeInNs)) } if m.XXX_unrecognized != nil { n += len(m.XXX_unrecognized) @@ -6649,7 +6649,7 @@ func (m *ExecutorExecutionSummary) Unmarshal(dAtA []byte) error { m.Concurrency = &v case 6: if wireType != 2 { - return fmt.Errorf("proto: wrong wireType = %d for field TableScanContext", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TiflashScanContext", wireType) } var msglen int for shift := uint(0); ; shift += 7 { @@ -6673,11 +6673,11 @@ func (m *ExecutorExecutionSummary) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - v := &TableScanContext{} + v := &TiFlashScanContext{} if err := v.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err } - m.DetailInfo = &ExecutorExecutionSummary_TableScanContext{v} + m.DetailInfo = &ExecutorExecutionSummary_TiflashScanContext{v} iNdEx = postIndex default: iNdEx = preIndex @@ -6701,7 +6701,7 @@ func (m *ExecutorExecutionSummary) Unmarshal(dAtA []byte) error { } return nil } -func (m *TableScanContext) Unmarshal(dAtA []byte) error { +func (m *TiFlashScanContext) Unmarshal(dAtA []byte) error { l := len(dAtA) iNdEx := 0 for iNdEx < l { @@ -6724,15 +6724,15 @@ func (m *TableScanContext) Unmarshal(dAtA []byte) error { fieldNum := int32(wire >> 3) wireType := int(wire & 0x7) if wireType == 4 { - return fmt.Errorf("proto: TableScanContext: wiretype end group for non-group") + return fmt.Errorf("proto: TiFlashScanContext: wiretype end group for non-group") } if fieldNum <= 0 { - return fmt.Errorf("proto: TableScanContext: illegal tag %d (wire type %d)", fieldNum, wire) + return fmt.Errorf("proto: TiFlashScanContext: illegal tag %d (wire type %d)", fieldNum, wire) } switch fieldNum { case 1: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ScanPacksCount", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TotalScannedPacksInDmfile", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { @@ -6749,10 +6749,10 @@ func (m *TableScanContext) Unmarshal(dAtA []byte) error { break } } - m.ScanPacksCount = &v + m.TotalScannedPacksInDmfile = &v case 2: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field ScanRowsCount", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TotalSkippedPacksInDmfile", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { @@ -6769,10 +6769,10 @@ func (m *TableScanContext) Unmarshal(dAtA []byte) error { break } } - m.ScanRowsCount = &v + m.TotalSkippedPacksInDmfile = &v case 3: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field SkipPacksCount", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TotalScannedRowsInDmfile", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { @@ -6789,10 +6789,10 @@ func (m *TableScanContext) Unmarshal(dAtA []byte) error { break } } - m.SkipPacksCount = &v + m.TotalScannedRowsInDmfile = &v case 4: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field SkipRowsCount", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TotalSkippedRowsInDmfile", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { @@ -6809,10 +6809,10 @@ func (m *TableScanContext) Unmarshal(dAtA []byte) error { break } } - m.SkipRowsCount = &v + m.TotalSkippedRowsInDmfile = &v case 5: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field RoughSetIndexLoadTimeInNs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TotalRoughSetIndexLoadTimeInNs", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { @@ -6829,10 +6829,10 @@ func (m *TableScanContext) Unmarshal(dAtA []byte) error { break } } - m.RoughSetIndexLoadTimeInNs = &v + m.TotalRoughSetIndexLoadTimeInNs = &v case 6: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field DmfileReadTimeInNs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TotalDmfileReadTimeInNs", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { @@ -6849,10 +6849,10 @@ func (m *TableScanContext) Unmarshal(dAtA []byte) error { break } } - m.DmfileReadTimeInNs = &v + m.TotalDmfileReadTimeInNs = &v case 7: if wireType != 0 { - return fmt.Errorf("proto: wrong wireType = %d for field CreateSnapshotTimeInNs", wireType) + return fmt.Errorf("proto: wrong wireType = %d for field TotalCreateSnapshotTimeInNs", wireType) } var v uint64 for shift := uint(0); ; shift += 7 { @@ -6869,7 +6869,7 @@ func (m *TableScanContext) Unmarshal(dAtA []byte) error { break } } - m.CreateSnapshotTimeInNs = &v + m.TotalCreateSnapshotTimeInNs = &v default: iNdEx = preIndex skippy, err := skipExecutor(dAtA[iNdEx:]) @@ -7623,149 +7623,152 @@ var ( func init() { proto.RegisterFile("executor.proto", fileDescriptorExecutor) } var fileDescriptorExecutor = []byte{ - // 2292 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xbd, 0x73, 0x1c, 0x4b, - 0x11, 0xd7, 0xde, 0xf7, 0xf5, 0x9d, 0xee, 0x56, 0x83, 0x2d, 0xd6, 0x7e, 0x3c, 0xeb, 0xde, 0xe1, - 0xf7, 0x2c, 0x54, 0x46, 0xf6, 0xb3, 0xa1, 0xf8, 0xa8, 0x02, 0x9e, 0x25, 0x5b, 0xcf, 0xb2, 0x8d, - 0x9e, 0x6a, 0xa5, 0x82, 0x70, 0x6b, 0xb5, 0x3b, 0x77, 0x1a, 0x6b, 0x6f, 0x66, 0xbd, 0x3b, 0x87, - 0xee, 0x1c, 0x91, 0x90, 0x91, 0x41, 0x51, 0x64, 0x24, 0x24, 0x14, 0x55, 0x04, 0xfc, 0x15, 0x2f, - 0x24, 0x85, 0x80, 0xa2, 0x4c, 0x46, 0x4c, 0x0e, 0xd5, 0x33, 0xb3, 0x7b, 0x7b, 0x1f, 0x12, 0x0e, - 0x89, 0x74, 0xf3, 0xeb, 0x5f, 0xf7, 0xf6, 0x74, 0x4f, 0xf7, 0xf4, 0x08, 0x3a, 0x74, 0x42, 0x83, - 0xb1, 0x14, 0xc9, 0x6e, 0x9c, 0x08, 0x29, 0x48, 0x45, 0xb2, 0xf8, 0xec, 0xb6, 0x4d, 0x27, 0x71, - 0x42, 0xd3, 0x94, 0x09, 0xae, 0xf1, 0xdb, 0xed, 0x34, 0x38, 0xa7, 0x23, 0xdf, 0xac, 0x6e, 0x0c, - 0xc5, 0x50, 0xa8, 0x9f, 0x0f, 0xf0, 0x97, 0x46, 0xfb, 0xff, 0xae, 0x41, 0xe3, 0x99, 0x31, 0x47, - 0xee, 0x42, 0x49, 0xc6, 0x8e, 0xd5, 0xb3, 0xb6, 0x3b, 0x8f, 0x3a, 0xbb, 0x68, 0x75, 0x17, 0x65, - 0xa7, 0xd3, 0x98, 0xee, 0x55, 0xbe, 0xfc, 0xfb, 0xd6, 0x9a, 0x5b, 0x92, 0x31, 0xd9, 0x81, 0x86, - 0x3c, 0x8b, 0xbc, 0x34, 0xf0, 0xb9, 0x53, 0xea, 0x59, 0xdb, 0xad, 0x47, 0x5d, 0xcd, 0x3d, 0xf5, - 0xcf, 0x22, 0x7a, 0x12, 0xf8, 0xdc, 0xad, 0xcb, 0xb3, 0x08, 0x7f, 0x20, 0x97, 0x85, 0x13, 0xcd, - 0x2d, 0x17, 0xb9, 0x87, 0x3c, 0xa4, 0x13, 0xcd, 0x65, 0xa1, 0xfa, 0x41, 0xbe, 0x09, 0xcd, 0x94, - 0x46, 0x34, 0x90, 0x4c, 0x70, 0xa7, 0x52, 0x24, 0x9f, 0x64, 0xb0, 0x3b, 0x63, 0x90, 0xc7, 0xd0, - 0xf2, 0x87, 0xc3, 0x84, 0x0e, 0x7d, 0xa5, 0x50, 0x55, 0x0a, 0x1b, 0x5a, 0xe1, 0xc9, 0x4c, 0xe0, - 0x16, 0x59, 0xe4, 0x0e, 0x54, 0xa4, 0x88, 0x8f, 0x9c, 0x9a, 0x62, 0x83, 0xf1, 0x5b, 0xc4, 0x47, - 0xae, 0xc2, 0xc9, 0x47, 0x50, 0x8d, 0xd8, 0x88, 0x49, 0xa7, 0xae, 0x08, 0x2d, 0x4d, 0x78, 0x85, - 0x90, 0xab, 0x25, 0x64, 0x1f, 0x36, 0xe8, 0x24, 0x38, 0xf7, 0xf9, 0x90, 0x7a, 0x09, 0x0d, 0x28, - 0xfb, 0x19, 0x4d, 0x9c, 0x86, 0xa2, 0x6f, 0x66, 0x31, 0xd3, 0x62, 0xd7, 0x48, 0x5d, 0x9b, 0x2e, - 0x20, 0xe8, 0xc7, 0x6b, 0xc1, 0xb8, 0xd3, 0x2c, 0xfa, 0xf1, 0x42, 0x30, 0xee, 0x2a, 0x9c, 0x6c, - 0x41, 0x2b, 0x4b, 0xb2, 0xc7, 0x42, 0x07, 0x7a, 0xd6, 0x76, 0xd3, 0x85, 0x0c, 0x3a, 0x0c, 0xd1, - 0xc0, 0x05, 0x8b, 0x22, 0xa7, 0x55, 0x34, 0xf0, 0x92, 0x45, 0x91, 0xab, 0x70, 0xf2, 0x03, 0xe8, - 0xe6, 0x5e, 0xa6, 0x94, 0x87, 0x34, 0x71, 0xda, 0x8a, 0x7a, 0x63, 0xde, 0xc7, 0x13, 0x25, 0x73, - 0x3b, 0x74, 0x6e, 0x4d, 0x1e, 0x02, 0x1c, 0x27, 0xe2, 0xb5, 0x49, 0xc6, 0xba, 0xd2, 0xb4, 0xb5, - 0xe6, 0x0c, 0x77, 0x0b, 0x1c, 0xf2, 0x02, 0x6e, 0xc4, 0x7e, 0x22, 0x19, 0x2e, 0x3c, 0x89, 0x27, - 0x41, 0x67, 0xbd, 0xa3, 0x74, 0x1d, 0xa3, 0x9b, 0x31, 0x66, 0x47, 0x85, 0xc4, 0x4b, 0x18, 0x6e, - 0x2e, 0x15, 0x89, 0x74, 0xba, 0xc5, 0xcd, 0x9d, 0x88, 0x44, 0xba, 0x0a, 0x27, 0x77, 0xa1, 0x76, - 0xc9, 0x78, 0x28, 0x2e, 0x1d, 0x5b, 0x31, 0xda, 0x9a, 0xf1, 0x53, 0x85, 0xb9, 0x46, 0x46, 0x8e, - 0xe0, 0xa3, 0x01, 0xe3, 0xd4, 0x1b, 0x26, 0x3e, 0xe3, 0x34, 0xf4, 0xd2, 0xf3, 0xf1, 0x60, 0x80, - 0x6e, 0xc9, 0x84, 0xfa, 0x23, 0x2f, 0x10, 0x63, 0x2e, 0x9d, 0x8d, 0x9e, 0xb5, 0x5d, 0x31, 0x87, - 0xfb, 0x43, 0xa4, 0x7f, 0xae, 0xd9, 0x27, 0x9a, 0x7c, 0xa2, 0xb8, 0xfb, 0x48, 0x25, 0x2f, 0x60, - 0x6b, 0xa5, 0xbd, 0x33, 0x5f, 0x06, 0xe7, 0x5e, 0xca, 0xde, 0x52, 0x87, 0x14, 0xac, 0x7d, 0xb0, - 0x6c, 0x6d, 0x0f, 0x99, 0x27, 0xec, 0x2d, 0xed, 0xff, 0xae, 0x04, 0x9d, 0xf9, 0x14, 0x90, 0xed, - 0x42, 0xf1, 0x91, 0xf9, 0x24, 0x2d, 0x15, 0xe0, 0x06, 0xe5, 0x81, 0x08, 0x69, 0xe8, 0x49, 0x3f, - 0xbd, 0xf0, 0x46, 0x54, 0xfa, 0x4e, 0xa9, 0x57, 0xde, 0x6e, 0xbb, 0x5d, 0x23, 0x38, 0xf5, 0xd3, - 0x8b, 0x1f, 0x53, 0xe9, 0x93, 0x4f, 0xa1, 0x33, 0x4b, 0xcb, 0x05, 0x9d, 0xa6, 0x4e, 0xb9, 0x57, - 0x9e, 0x05, 0xf5, 0xd9, 0x24, 0x4e, 0xdc, 0xf5, 0x9c, 0xf1, 0x92, 0x4e, 0x53, 0x72, 0x17, 0xaa, - 0xc1, 0x39, 0x8b, 0x42, 0x53, 0x83, 0x85, 0x46, 0x80, 0x67, 0xcf, 0xd5, 0x42, 0xf2, 0x31, 0x54, - 0xe5, 0x34, 0xa6, 0xa9, 0x53, 0x55, 0xf6, 0x4c, 0xa5, 0x1e, 0x30, 0x1a, 0x85, 0xe8, 0xae, 0xab, - 0xa5, 0xe4, 0x3b, 0xd0, 0xf5, 0xa3, 0xc8, 0x1b, 0x20, 0xee, 0x69, 0x85, 0xda, 0x6a, 0x85, 0x75, - 0x3f, 0x8a, 0xf2, 0x55, 0xda, 0xff, 0xb5, 0x05, 0xf6, 0x62, 0x21, 0xad, 0xde, 0xb9, 0xb5, 0x7a, - 0xe7, 0x0f, 0xa1, 0x55, 0xfc, 0x6a, 0x69, 0xf5, 0x57, 0x61, 0x90, 0x7f, 0x92, 0xf4, 0x55, 0x06, - 0xca, 0x57, 0x65, 0x00, 0x63, 0xdf, 0xff, 0x65, 0x19, 0x9a, 0xb3, 0x83, 0xba, 0x05, 0x0d, 0x7d, - 0xd4, 0x59, 0xa8, 0x32, 0x57, 0x36, 0x59, 0xaa, 0x2b, 0xf4, 0x30, 0x24, 0x3b, 0x50, 0x0f, 0x44, - 0x34, 0x1e, 0xf1, 0xcc, 0x01, 0x53, 0x44, 0xfb, 0x0a, 0x3c, 0xe4, 0x03, 0xe1, 0x66, 0x04, 0xe2, - 0x40, 0x25, 0xa4, 0x69, 0xa0, 0x1c, 0x68, 0x18, 0x43, 0x0a, 0x21, 0xf7, 0x81, 0xc4, 0x09, 0x1b, - 0xf9, 0xc9, 0xd4, 0xd3, 0x64, 0x8f, 0x85, 0xa9, 0x53, 0xe9, 0x95, 0xb7, 0xcb, 0xae, 0x6d, 0x24, - 0xc6, 0x62, 0x98, 0x92, 0xcf, 0xc0, 0xe6, 0x74, 0x22, 0xbd, 0x84, 0xfa, 0xa1, 0x47, 0xf9, 0x90, - 0x71, 0xaa, 0xba, 0x63, 0x27, 0xfb, 0xf8, 0x33, 0x85, 0x15, 0x0e, 0x55, 0x07, 0xf9, 0x2e, 0xf5, - 0x43, 0x2d, 0x21, 0xf7, 0xa1, 0x96, 0xe0, 0xae, 0xb3, 0x5c, 0x99, 0x23, 0xf0, 0x92, 0x4e, 0x5d, - 0x84, 0x8d, 0x96, 0xe1, 0x90, 0xef, 0xc1, 0xad, 0xcc, 0xbb, 0x38, 0xa1, 0x03, 0x36, 0x29, 0x3a, - 0x59, 0x57, 0x4e, 0x6e, 0x1a, 0xc2, 0xb1, 0x92, 0xcf, 0x5c, 0xfd, 0x10, 0xe0, 0x82, 0xd2, 0xd8, - 0x13, 0x49, 0x68, 0x9a, 0x68, 0xc3, 0x6d, 0x22, 0xf2, 0x05, 0x02, 0xa4, 0x07, 0x6d, 0x96, 0x7a, - 0x03, 0x3f, 0x95, 0xba, 0x97, 0x34, 0x15, 0x01, 0x58, 0x7a, 0xe0, 0xa7, 0x12, 0x13, 0xd0, 0xff, - 0x63, 0x09, 0xc8, 0x72, 0x53, 0xf9, 0xff, 0xcc, 0xcb, 0xb5, 0x71, 0xaa, 0x5e, 0x1b, 0xa7, 0xaf, - 0xc3, 0xac, 0x46, 0x15, 0xbd, 0xa6, 0xe8, 0xed, 0x1c, 0x44, 0xd2, 0x62, 0xb4, 0xea, 0x4b, 0xd1, - 0xfa, 0x4f, 0x05, 0x2a, 0x78, 0xc9, 0x90, 0x4f, 0xa1, 0x89, 0xd7, 0x8c, 0x2a, 0x8d, 0xf9, 0xfb, - 0x1e, 0xc5, 0x85, 0x93, 0xd1, 0x78, 0x6d, 0xd6, 0xe4, 0x87, 0xd0, 0x51, 0x2a, 0x78, 0x07, 0x69, - 0xbd, 0x52, 0xb1, 0x50, 0x50, 0x6f, 0x61, 0x56, 0x68, 0xbf, 0x2e, 0x60, 0x38, 0x09, 0xa8, 0xc6, - 0x91, 0x50, 0x6e, 0x5a, 0xd0, 0x62, 0x63, 0xc9, 0xe5, 0xe4, 0x23, 0x68, 0x32, 0xce, 0x29, 0x5e, - 0x7d, 0x13, 0xd5, 0x85, 0xb2, 0xfc, 0x35, 0x14, 0x7c, 0x18, 0x4e, 0xc8, 0x43, 0xe8, 0x44, 0x74, - 0x20, 0x3d, 0xe5, 0x93, 0xea, 0x6b, 0xd5, 0xa5, 0xbe, 0xd6, 0x46, 0x06, 0x3a, 0xa6, 0xda, 0xda, - 0x23, 0xe8, 0x26, 0x6c, 0x78, 0x5e, 0x54, 0xa9, 0x2d, 0xb7, 0x42, 0x45, 0xc9, 0x75, 0x1e, 0x42, - 0x2b, 0x4e, 0xc4, 0x19, 0x35, 0x3d, 0xa4, 0x7e, 0x45, 0x0f, 0x51, 0x1c, 0xdd, 0x43, 0x1e, 0x42, - 0xeb, 0x6c, 0xcc, 0xf2, 0xae, 0xd3, 0xb8, 0x42, 0x43, 0x71, 0xb4, 0xc6, 0x63, 0xe8, 0xaa, 0x9d, - 0x04, 0x82, 0x87, 0x2a, 0x97, 0xa9, 0xd3, 0x5c, 0xf2, 0x4b, 0x6d, 0x76, 0x3f, 0x67, 0x90, 0x6f, - 0x83, 0xad, 0x37, 0x53, 0xd0, 0x82, 0x25, 0x2d, 0xbd, 0xe1, 0x79, 0x35, 0x21, 0xcf, 0x69, 0x52, - 0x54, 0x6b, 0x2d, 0xab, 0x29, 0x4e, 0x41, 0xed, 0x39, 0x7c, 0xa0, 0xd5, 0xe8, 0x9b, 0x82, 0xa6, - 0x37, 0x48, 0xc4, 0xc8, 0x63, 0xdc, 0x69, 0x2f, 0x59, 0xf8, 0xaa, 0xa2, 0x3f, 0x7b, 0x33, 0xb3, - 0x71, 0x90, 0x88, 0xd1, 0x21, 0xef, 0xff, 0xd5, 0x82, 0x66, 0x3e, 0xfa, 0xfd, 0xef, 0x32, 0xdd, - 0x82, 0x06, 0x43, 0x36, 0x12, 0x4a, 0x45, 0x82, 0x42, 0xe7, 0xeb, 0xb8, 0xfc, 0xbe, 0x75, 0x5c, - 0x59, 0xaa, 0xe3, 0x4d, 0xa8, 0x8d, 0x39, 0x7b, 0x33, 0xd6, 0x7d, 0xb2, 0xe1, 0x9a, 0xd5, 0x15, - 0xf5, 0x5d, 0x5b, 0x5d, 0xdf, 0xfd, 0x5f, 0x59, 0xd0, 0xcc, 0x27, 0x55, 0xb2, 0x03, 0x50, 0x08, - 0xb2, 0xb5, 0x14, 0xa2, 0x82, 0x94, 0x7c, 0x0b, 0x3a, 0x49, 0xcc, 0x8b, 0x49, 0xd1, 0x4d, 0x69, - 0x5d, 0xf3, 0xdd, 0x98, 0x9b, 0xc3, 0x19, 0xf3, 0x42, 0x56, 0xf2, 0x7b, 0xba, 0x7c, 0xcd, 0x3d, - 0xdd, 0xff, 0xb9, 0x55, 0x1c, 0xe5, 0x48, 0x0f, 0xaa, 0xf8, 0x4e, 0x58, 0xe5, 0x91, 0x16, 0x90, - 0x1d, 0x68, 0xa2, 0x33, 0x9a, 0xb5, 0xd2, 0x8f, 0x46, 0xa2, 0x7f, 0xbc, 0xaf, 0x0b, 0xbf, 0x28, - 0x41, 0xab, 0x30, 0x91, 0x93, 0x8f, 0xa1, 0x31, 0x4c, 0xc4, 0x38, 0xf6, 0xce, 0xa6, 0x2b, 0xdc, - 0xa8, 0x2b, 0xd9, 0xde, 0x14, 0x69, 0xfe, 0x70, 0xe8, 0x0d, 0xc6, 0x3c, 0x30, 0x7e, 0xcc, 0xd1, - 0xfc, 0xe1, 0xf0, 0x60, 0xcc, 0x03, 0xd2, 0x83, 0x86, 0x9e, 0xe8, 0x68, 0x38, 0xd7, 0xa2, 0x73, - 0x94, 0x3c, 0x80, 0x36, 0xee, 0x28, 0xff, 0x66, 0x65, 0xd5, 0xa6, 0x20, 0x89, 0xf9, 0xe7, 0xe6, - 0xcb, 0x46, 0x21, 0xff, 0x7a, 0xf5, 0x2a, 0x85, 0x27, 0xc6, 0x87, 0x3c, 0x0e, 0xb5, 0xeb, 0xe2, - 0xf0, 0x06, 0x2a, 0xf8, 0xd4, 0x20, 0xf7, 0xa0, 0xa1, 0x2e, 0xbc, 0xd9, 0xfe, 0xcd, 0x00, 0xbb, - 0x37, 0x3d, 0x94, 0x74, 0xe4, 0xd6, 0x95, 0x74, 0x6f, 0x4a, 0x6e, 0x67, 0xaf, 0x91, 0x52, 0x61, - 0xae, 0x34, 0xcf, 0x90, 0xf7, 0x0b, 0xfd, 0x21, 0x54, 0xd5, 0xe3, 0x65, 0x66, 0xca, 0xba, 0xc6, - 0x54, 0xe9, 0x3a, 0x53, 0x9f, 0x41, 0x05, 0xdf, 0x17, 0xe4, 0x6b, 0x50, 0x0b, 0x04, 0xe7, 0x87, - 0x4f, 0xe7, 0x4c, 0x19, 0x0c, 0xbf, 0xf3, 0x66, 0x4c, 0x93, 0xa9, 0xb2, 0x95, 0xa5, 0x42, 0x43, - 0xfd, 0x3f, 0x97, 0xc0, 0xc9, 0xac, 0xea, 0xbf, 0x4c, 0xf0, 0x93, 0xf1, 0x08, 0xcb, 0x08, 0x47, - 0x3b, 0xc9, 0x46, 0xd4, 0x8b, 0x13, 0x11, 0xd0, 0x34, 0xa5, 0xa1, 0xa7, 0xca, 0xc6, 0xda, 0xae, - 0xb8, 0x5d, 0x14, 0x1c, 0x67, 0xf8, 0x11, 0x1e, 0xd1, 0x0d, 0x3e, 0x1e, 0x21, 0x35, 0x1c, 0x07, - 0x34, 0xf4, 0x12, 0x71, 0x99, 0xea, 0x18, 0xb9, 0x5d, 0x3e, 0x1e, 0x1d, 0x1b, 0xdc, 0x15, 0x97, - 0x29, 0xf9, 0x18, 0x3a, 0xc8, 0x65, 0x92, 0x26, 0xbe, 0xae, 0xad, 0xb2, 0x22, 0xae, 0xf3, 0xf1, - 0xe8, 0x30, 0x07, 0x17, 0x1f, 0x5c, 0x95, 0xa5, 0x07, 0x57, 0x0f, 0x5a, 0x81, 0xe0, 0xc1, 0x38, - 0x49, 0x28, 0x0f, 0xa6, 0xaa, 0x51, 0x54, 0xdc, 0x22, 0x44, 0x0e, 0x80, 0xcc, 0xde, 0x3d, 0x58, - 0xcc, 0x92, 0x4e, 0xa4, 0x39, 0x11, 0x9b, 0x0b, 0x2f, 0xe4, 0x7d, 0x2d, 0x7d, 0xbe, 0xe6, 0xda, - 0x72, 0x01, 0xdb, 0x6b, 0x03, 0x3c, 0xa5, 0xd2, 0x67, 0x11, 0xb6, 0xaf, 0xfe, 0xbf, 0x4a, 0x60, - 0x2f, 0xaa, 0x91, 0x6d, 0xb0, 0xd5, 0x47, 0x62, 0x3f, 0xb8, 0x48, 0xcd, 0x4b, 0x46, 0xc7, 0xaa, - 0x83, 0xf8, 0x31, 0xc2, 0xfa, 0xd1, 0xf2, 0x09, 0x74, 0x15, 0x13, 0x43, 0x64, 0x88, 0x3a, 0x50, - 0xeb, 0x08, 0x63, 0x84, 0x34, 0x0f, 0x2d, 0x5e, 0xb0, 0x78, 0xce, 0x62, 0xd9, 0x58, 0xbc, 0x60, - 0xf1, 0x82, 0x45, 0x64, 0x16, 0x2c, 0x56, 0x8c, 0xc5, 0x0b, 0x16, 0xcf, 0x2c, 0xee, 0xc1, 0x56, - 0x22, 0xc6, 0xc3, 0x73, 0x2f, 0xa5, 0xd2, 0xd3, 0x5d, 0x3c, 0x12, 0x7e, 0xe8, 0xa9, 0x2c, 0x33, - 0x8e, 0xe9, 0xd5, 0x41, 0xbc, 0xa5, 0x68, 0x27, 0x54, 0xaa, 0x8b, 0xe1, 0x95, 0xf0, 0xc3, 0x53, - 0x36, 0xa2, 0x87, 0xfc, 0x08, 0xef, 0xec, 0xcd, 0x70, 0x34, 0x60, 0x11, 0xd5, 0xc3, 0x6c, 0x41, - 0xb5, 0xa6, 0x54, 0x89, 0x96, 0xe2, 0xe8, 0x9a, 0xeb, 0x7c, 0x1f, 0x6e, 0x07, 0x09, 0xf5, 0x25, - 0xf5, 0x52, 0xee, 0xc7, 0xe9, 0xb9, 0x90, 0x45, 0xbd, 0xba, 0xd2, 0xdb, 0xd4, 0x8c, 0x13, 0x43, - 0xc8, 0x74, 0xfb, 0x6f, 0xa1, 0x82, 0xcf, 0x4c, 0xf2, 0x09, 0xd4, 0xcf, 0x54, 0x2d, 0xa6, 0xab, - 0x0b, 0xd4, 0x08, 0xc9, 0x5d, 0x58, 0x67, 0xa9, 0x9a, 0x3f, 0xfd, 0x08, 0x15, 0xf5, 0xa9, 0x77, - 0xe7, 0xc1, 0xf7, 0x2c, 0xd5, 0x3f, 0x58, 0x60, 0xeb, 0x17, 0xec, 0x41, 0xe2, 0x8f, 0xe8, 0x9e, - 0x18, 0x73, 0x6c, 0x5d, 0x95, 0xc2, 0x8c, 0x76, 0xb3, 0xf8, 0xce, 0x55, 0x84, 0xc2, 0xb8, 0xa5, - 0x88, 0xa4, 0x0f, 0xcd, 0x31, 0x3f, 0x43, 0x11, 0x0d, 0xe7, 0x6a, 0x70, 0x06, 0xe3, 0x75, 0x27, - 0x06, 0x83, 0x94, 0x66, 0x19, 0x36, 0x2b, 0xb2, 0x0d, 0xcd, 0xc0, 0x8f, 0x02, 0xec, 0x68, 0xa9, - 0x69, 0x92, 0xc5, 0x8e, 0x3b, 0x13, 0xf6, 0x7f, 0x63, 0x41, 0xab, 0xe0, 0xeb, 0x75, 0x6e, 0x2a, - 0xc2, 0x92, 0x9b, 0xf7, 0xa1, 0x9a, 0x4a, 0xdf, 0x04, 0x2c, 0x2f, 0x8f, 0xc5, 0xed, 0xbb, 0x9a, - 0x44, 0xb6, 0xa1, 0x4c, 0x79, 0x16, 0xbe, 0xab, 0xb8, 0x48, 0xe9, 0xff, 0xcd, 0x82, 0x9a, 0x96, - 0x90, 0x7b, 0xd0, 0xc4, 0xe6, 0xed, 0xa9, 0x3b, 0x7f, 0xf9, 0x9a, 0x69, 0xa0, 0xf0, 0x29, 0xde, - 0xfe, 0x0f, 0x60, 0x36, 0x47, 0x63, 0x4b, 0x2e, 0xad, 0xc8, 0x78, 0x2b, 0x67, 0xec, 0x4d, 0xe7, - 0xfa, 0x77, 0xf9, 0xba, 0xfe, 0x7d, 0x0f, 0xaa, 0x03, 0x74, 0xd0, 0xbc, 0xa4, 0x37, 0x96, 0x3c, - 0x77, 0xb5, 0x7c, 0x76, 0x42, 0xaa, 0xd7, 0x9c, 0x90, 0x9d, 0xdf, 0x97, 0xf4, 0xff, 0xea, 0xd4, - 0x3c, 0xbd, 0x01, 0xeb, 0xf8, 0x37, 0x6f, 0x0d, 0xf6, 0x5a, 0x06, 0xe5, 0xf3, 0x95, 0x6d, 0x65, - 0x50, 0x3e, 0x96, 0xd8, 0x25, 0xf2, 0x15, 0xe8, 0x22, 0x54, 0xb8, 0x90, 0xed, 0x32, 0x69, 0x43, - 0x43, 0x59, 0x13, 0xf1, 0x91, 0x5d, 0x21, 0xeb, 0xd0, 0xc4, 0x95, 0xba, 0x39, 0xec, 0x6a, 0x6e, - 0x44, 0xdd, 0xa7, 0x4f, 0x86, 0x43, 0xbb, 0x96, 0xf1, 0x71, 0x50, 0xb6, 0xeb, 0xd9, 0x0a, 0xaf, - 0x07, 0xbb, 0x41, 0x36, 0x81, 0xe0, 0x6a, 0xfe, 0xdf, 0x1b, 0x76, 0x93, 0x38, 0x70, 0xa3, 0x88, - 0x67, 0x8f, 0x7a, 0x1b, 0x08, 0x81, 0x0e, 0x4a, 0x66, 0x63, 0x8a, 0xdd, 0x22, 0xb7, 0x61, 0x53, - 0x61, 0x4b, 0x8f, 0x3b, 0xbb, 0x9d, 0x7d, 0x0f, 0x8b, 0xcb, 0x5e, 0x27, 0x1d, 0x00, 0x5c, 0xe9, - 0xb0, 0xda, 0x9d, 0x9d, 0xef, 0x42, 0xbb, 0xf8, 0x6c, 0x27, 0x5d, 0x68, 0x1d, 0xfb, 0x69, 0x7a, - 0x7a, 0xae, 0xfa, 0x8c, 0xbd, 0x86, 0xdb, 0xdb, 0x4b, 0x84, 0x1f, 0x06, 0x7e, 0x2a, 0x6d, 0x8b, - 0x34, 0xa0, 0xf2, 0xdc, 0x4f, 0xcf, 0xed, 0xd2, 0xce, 0x2e, 0xc0, 0xec, 0x6d, 0x4c, 0x9a, 0x50, - 0x7d, 0x25, 0x02, 0x3f, 0xb2, 0xd7, 0x90, 0x72, 0xca, 0x5e, 0xfe, 0xc4, 0xb6, 0x48, 0x0b, 0xea, - 0xa7, 0xec, 0x20, 0xd2, 0xfc, 0x3f, 0x59, 0xd0, 0xc8, 0x1e, 0x4c, 0xb3, 0xe8, 0x73, 0x9a, 0xa8, - 0xb8, 0xac, 0x91, 0x9b, 0xb0, 0xa1, 0xe2, 0x48, 0x07, 0xf2, 0x8b, 0xb1, 0x34, 0xb0, 0x95, 0x05, - 0xc8, 0xc5, 0xe1, 0x7c, 0x86, 0x97, 0x88, 0x0d, 0x6d, 0x9d, 0xac, 0x11, 0x53, 0x48, 0x99, 0xdc, - 0x00, 0x5b, 0xe5, 0x8a, 0x4b, 0x96, 0xa3, 0x15, 0x72, 0x0b, 0x6e, 0xce, 0x99, 0xcd, 0x45, 0x55, - 0xf2, 0x21, 0xdc, 0xca, 0x14, 0x96, 0xc5, 0xb5, 0x9d, 0x1e, 0xb4, 0x8b, 0x0f, 0xb5, 0xec, 0x8b, - 0xb8, 0x7d, 0xed, 0xf2, 0xce, 0x8f, 0xa0, 0xbb, 0xd0, 0x5e, 0x30, 0x5c, 0x07, 0x22, 0x8a, 0xc4, - 0x25, 0xe3, 0x43, 0x1d, 0xbd, 0xe3, 0x84, 0x06, 0x34, 0xc4, 0xa5, 0x85, 0xd1, 0xdf, 0x57, 0x37, - 0xa0, 0x74, 0xc5, 0xa5, 0x5d, 0xda, 0x79, 0x9c, 0x19, 0xc8, 0x0b, 0x1f, 0xa3, 0x87, 0xd7, 0x82, - 0xbd, 0x46, 0x00, 0x6a, 0xea, 0x3f, 0x08, 0xa9, 0x6d, 0xe1, 0x6f, 0x35, 0x6f, 0xa5, 0x76, 0x69, - 0xef, 0x1b, 0x5f, 0xbe, 0xbb, 0x63, 0xfd, 0xe5, 0xdd, 0x1d, 0xeb, 0x1f, 0xef, 0xee, 0x58, 0xbf, - 0xfd, 0xe7, 0x9d, 0x35, 0xb8, 0x19, 0x88, 0xd1, 0x6e, 0xcc, 0xf8, 0x30, 0xf0, 0xe3, 0x5d, 0xc9, - 0xc2, 0x33, 0x55, 0x12, 0xc7, 0xd6, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xad, 0x91, 0x69, 0xe7, - 0xfd, 0x16, 0x00, 0x00, + // 2337 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x58, 0xcf, 0x73, 0x1b, 0x49, + 0xf5, 0xf7, 0xe8, 0xb7, 0x9e, 0x64, 0x69, 0xdc, 0x5f, 0x27, 0x3b, 0xc9, 0x6e, 0x1c, 0xad, 0xbe, + 0x09, 0x6b, 0x5c, 0x8b, 0x37, 0xbb, 0x81, 0x02, 0x0e, 0xbb, 0x24, 0x76, 0xe2, 0x8d, 0x92, 0xac, + 0xd7, 0x35, 0x76, 0xc1, 0x71, 0x6a, 0x3c, 0xd3, 0x92, 0x3a, 0x1e, 0xf5, 0x4c, 0x66, 0x5a, 0xd8, + 0xca, 0x89, 0x0b, 0x37, 0x6e, 0x50, 0x14, 0x37, 0x2e, 0x5c, 0x28, 0xaa, 0x38, 0xf3, 0x27, 0xec, + 0x91, 0x2b, 0x1c, 0x28, 0x2a, 0x9c, 0xb9, 0x71, 0x87, 0x7a, 0xdd, 0x3d, 0xa3, 0x96, 0x25, 0x9b, + 0x1c, 0x39, 0x49, 0xfd, 0xde, 0xe7, 0xbd, 0x7e, 0xfd, 0x5e, 0xbf, 0x1f, 0x3d, 0xd0, 0xa1, 0x17, + 0x34, 0x98, 0x8a, 0x38, 0xdd, 0x4d, 0xd2, 0x58, 0xc4, 0xa4, 0x22, 0x58, 0x72, 0x7a, 0xdb, 0xa6, + 0x17, 0x49, 0x4a, 0xb3, 0x8c, 0xc5, 0x5c, 0xd1, 0x6f, 0xb7, 0xb3, 0x60, 0x4c, 0x27, 0xbe, 0x5e, + 0x6d, 0x8e, 0xe2, 0x51, 0x2c, 0xff, 0x7e, 0x82, 0xff, 0x14, 0xb5, 0xff, 0xaf, 0x1a, 0x34, 0x9e, + 0x6a, 0x75, 0xe4, 0x1e, 0x94, 0x44, 0xe2, 0x58, 0x3d, 0x6b, 0xbb, 0xf3, 0x59, 0x67, 0x17, 0xb5, + 0xee, 0x22, 0xef, 0x64, 0x96, 0xd0, 0xbd, 0xca, 0x37, 0x7f, 0xbb, 0xbb, 0xe6, 0x96, 0x44, 0x42, + 0x76, 0xa0, 0x21, 0x4e, 0x23, 0x2f, 0x0b, 0x7c, 0xee, 0x94, 0x7a, 0xd6, 0x76, 0xeb, 0xb3, 0xae, + 0xc2, 0x9e, 0xf8, 0xa7, 0x11, 0x3d, 0x0e, 0x7c, 0xee, 0xd6, 0xc5, 0x69, 0x84, 0x7f, 0x10, 0xcb, + 0xc2, 0x0b, 0x85, 0x2d, 0x9b, 0xd8, 0x01, 0x0f, 0xe9, 0x85, 0xc2, 0xb2, 0x50, 0xfe, 0x21, 0xdf, + 0x81, 0x66, 0x46, 0x23, 0x1a, 0x08, 0x16, 0x73, 0xa7, 0x62, 0x82, 0x8f, 0x73, 0xb2, 0x3b, 0x47, + 0x90, 0x87, 0xd0, 0xf2, 0x47, 0xa3, 0x94, 0x8e, 0x7c, 0x29, 0x50, 0x95, 0x02, 0x1b, 0x4a, 0xe0, + 0xf1, 0x9c, 0xe1, 0x9a, 0x28, 0xb2, 0x05, 0x15, 0x11, 0x27, 0x87, 0x4e, 0x4d, 0xa2, 0x41, 0xdb, + 0x1d, 0x27, 0x87, 0xae, 0xa4, 0x93, 0x0f, 0xa1, 0x1a, 0xb1, 0x09, 0x13, 0x4e, 0x5d, 0x02, 0x5a, + 0x0a, 0xf0, 0x12, 0x49, 0xae, 0xe2, 0x90, 0x7d, 0xd8, 0xa0, 0x17, 0xc1, 0xd8, 0xe7, 0x23, 0xea, + 0xa5, 0x34, 0xa0, 0xec, 0xa7, 0x34, 0x75, 0x1a, 0x12, 0x7e, 0x33, 0xf7, 0x99, 0x62, 0xbb, 0x9a, + 0xeb, 0xda, 0xf4, 0x12, 0x05, 0xed, 0x78, 0x15, 0x33, 0xee, 0x34, 0x4d, 0x3b, 0x9e, 0xc7, 0x8c, + 0xbb, 0x92, 0x4e, 0xee, 0x42, 0x2b, 0x0f, 0xb2, 0xc7, 0x42, 0x07, 0x7a, 0xd6, 0x76, 0xd3, 0x85, + 0x9c, 0x34, 0x08, 0x51, 0xc1, 0x19, 0x8b, 0x22, 0xa7, 0x65, 0x2a, 0x78, 0xc1, 0xa2, 0xc8, 0x95, + 0x74, 0xf2, 0x39, 0x74, 0x0b, 0x2b, 0x33, 0xca, 0x43, 0x9a, 0x3a, 0x6d, 0x09, 0xdd, 0x5c, 0xb4, + 0xf1, 0x58, 0xf2, 0xdc, 0x0e, 0x5d, 0x58, 0x93, 0x07, 0x00, 0x47, 0x69, 0xfc, 0x4a, 0x07, 0x63, + 0x5d, 0x4a, 0xda, 0x4a, 0x72, 0x4e, 0x77, 0x0d, 0x0c, 0x79, 0x0e, 0x9b, 0x89, 0x9f, 0x0a, 0x86, + 0x0b, 0x4f, 0xe0, 0x4d, 0x50, 0x51, 0xef, 0x48, 0x59, 0x47, 0xcb, 0xe6, 0x88, 0xf9, 0x55, 0x21, + 0xc9, 0x12, 0x0d, 0x0f, 0x97, 0xc5, 0xa9, 0x70, 0xba, 0xe6, 0xe1, 0x8e, 0xe3, 0x54, 0xb8, 0x92, + 0x4e, 0xee, 0x41, 0xed, 0x9c, 0xf1, 0x30, 0x3e, 0x77, 0x6c, 0x89, 0x68, 0x2b, 0xc4, 0x4f, 0x24, + 0xcd, 0xd5, 0x3c, 0x72, 0x08, 0x1f, 0x0e, 0x19, 0xa7, 0xde, 0x28, 0xf5, 0x19, 0xa7, 0xa1, 0x97, + 0x8d, 0xa7, 0xc3, 0x21, 0x9a, 0x25, 0x52, 0xea, 0x4f, 0xbc, 0x20, 0x9e, 0x72, 0xe1, 0x6c, 0xf4, + 0xac, 0xed, 0x8a, 0xbe, 0xdc, 0x77, 0x10, 0xfe, 0xa5, 0x42, 0x1f, 0x2b, 0xf0, 0xb1, 0xc4, 0xee, + 0x23, 0x94, 0x3c, 0x87, 0xbb, 0x2b, 0xf5, 0x9d, 0xfa, 0x22, 0x18, 0x7b, 0x19, 0x7b, 0x43, 0x1d, + 0x62, 0x68, 0x7b, 0x7f, 0x59, 0xdb, 0x1e, 0x22, 0x8f, 0xd9, 0x1b, 0xda, 0xff, 0x6d, 0x09, 0x3a, + 0x8b, 0x21, 0x20, 0xdb, 0x46, 0xf2, 0x91, 0xc5, 0x20, 0x2d, 0x25, 0xe0, 0x06, 0xe5, 0x41, 0x1c, + 0xd2, 0xd0, 0x13, 0x7e, 0x76, 0xe6, 0x4d, 0xa8, 0xf0, 0x9d, 0x52, 0xaf, 0xbc, 0xdd, 0x76, 0xbb, + 0x9a, 0x71, 0xe2, 0x67, 0x67, 0x5f, 0x51, 0xe1, 0x93, 0x4f, 0xa1, 0x33, 0x0f, 0xcb, 0x19, 0x9d, + 0x65, 0x4e, 0xb9, 0x57, 0x9e, 0x3b, 0xf5, 0xe9, 0x45, 0x92, 0xba, 0xeb, 0x05, 0xe2, 0x05, 0x9d, + 0x65, 0xe4, 0x1e, 0x54, 0x83, 0x31, 0x8b, 0x42, 0x9d, 0x83, 0x46, 0x21, 0xc0, 0xbb, 0xe7, 0x2a, + 0x26, 0xb9, 0x0f, 0x55, 0x31, 0x4b, 0x68, 0xe6, 0x54, 0xa5, 0x3e, 0x9d, 0xa9, 0x07, 0x8c, 0x46, + 0x21, 0x9a, 0xeb, 0x2a, 0x2e, 0xf9, 0x3e, 0x74, 0xfd, 0x28, 0xf2, 0x86, 0x48, 0xf7, 0x94, 0x40, + 0x6d, 0xb5, 0xc0, 0xba, 0x1f, 0x45, 0xc5, 0x2a, 0xeb, 0xff, 0xca, 0x02, 0xfb, 0x72, 0x22, 0xad, + 0x3e, 0xb9, 0xb5, 0xfa, 0xe4, 0x0f, 0xa0, 0x65, 0xee, 0x5a, 0x5a, 0xbd, 0x2b, 0x0c, 0x8b, 0x2d, + 0x49, 0x5f, 0x46, 0xa0, 0x7c, 0x55, 0x04, 0xd0, 0xf7, 0xfd, 0x5f, 0x94, 0xa1, 0x39, 0xbf, 0xa8, + 0x77, 0xa1, 0xa1, 0xae, 0x3a, 0x0b, 0x65, 0xe4, 0xca, 0x3a, 0x4a, 0x75, 0x49, 0x1d, 0x84, 0x64, + 0x07, 0xea, 0x41, 0x1c, 0x4d, 0x27, 0x3c, 0x37, 0x40, 0x27, 0xd1, 0xbe, 0x24, 0x0e, 0xf8, 0x30, + 0x76, 0x73, 0x00, 0x71, 0xa0, 0x12, 0xd2, 0x2c, 0x90, 0x06, 0x34, 0xb4, 0x22, 0x49, 0x21, 0x1f, + 0x03, 0x49, 0x52, 0x36, 0xf1, 0xd3, 0x99, 0xa7, 0xc0, 0x1e, 0x0b, 0x33, 0xa7, 0xd2, 0x2b, 0x6f, + 0x97, 0x5d, 0x5b, 0x73, 0xb4, 0xc6, 0x30, 0x23, 0x8f, 0xc0, 0xe6, 0xf4, 0x42, 0x78, 0x29, 0xf5, + 0x43, 0x8f, 0xf2, 0x11, 0xe3, 0x54, 0x56, 0xc7, 0x4e, 0xbe, 0xf9, 0x53, 0x49, 0x33, 0x2e, 0x55, + 0x07, 0xf1, 0x2e, 0xf5, 0x43, 0xc5, 0x21, 0x1f, 0x43, 0x2d, 0xc5, 0x53, 0xe7, 0xb1, 0xd2, 0x57, + 0xe0, 0x05, 0x9d, 0xb9, 0x48, 0xd6, 0x52, 0x1a, 0x43, 0x7e, 0x08, 0xb7, 0x72, 0xeb, 0x92, 0x94, + 0x0e, 0xd9, 0x85, 0x69, 0x64, 0x5d, 0x1a, 0x79, 0x53, 0x03, 0x8e, 0x24, 0x7f, 0x6e, 0xea, 0x1d, + 0x80, 0x33, 0x4a, 0x13, 0x2f, 0x4e, 0x43, 0x5d, 0x44, 0x1b, 0x6e, 0x13, 0x29, 0x5f, 0x23, 0x81, + 0xf4, 0xa0, 0xcd, 0x32, 0x6f, 0xe8, 0x67, 0x42, 0xd5, 0x92, 0xa6, 0x04, 0x00, 0xcb, 0x0e, 0xfc, + 0x4c, 0x60, 0x00, 0xfa, 0x7f, 0x28, 0x01, 0x59, 0x2e, 0x2a, 0xff, 0x9b, 0x71, 0xb9, 0xd6, 0x4f, + 0xd5, 0x6b, 0xfd, 0xf4, 0xff, 0x30, 0xcf, 0x51, 0x09, 0xaf, 0x49, 0x78, 0xbb, 0x20, 0x22, 0xe8, + 0xb2, 0xb7, 0xea, 0x4b, 0xde, 0xfa, 0x77, 0x05, 0x2a, 0xd8, 0x64, 0xc8, 0xa7, 0xd0, 0xc4, 0x36, + 0x23, 0x53, 0x63, 0xb1, 0xdf, 0x23, 0xdb, 0xb8, 0x19, 0x8d, 0x57, 0x7a, 0x4d, 0xbe, 0x80, 0x8e, + 0x14, 0xc1, 0x1e, 0xa4, 0xe4, 0x4a, 0x66, 0xa2, 0xa0, 0xdc, 0xa5, 0x59, 0xa1, 0xfd, 0xca, 0xa0, + 0xe1, 0x24, 0x20, 0x0b, 0x47, 0x4a, 0xb9, 0x2e, 0x41, 0x97, 0x0b, 0x4b, 0xc1, 0x27, 0x1f, 0x42, + 0x93, 0x71, 0x4e, 0xb1, 0xf5, 0x5d, 0xc8, 0x2a, 0x94, 0xc7, 0xaf, 0x21, 0xc9, 0x83, 0xf0, 0x82, + 0x3c, 0x80, 0x4e, 0x44, 0x87, 0xc2, 0x93, 0x36, 0xc9, 0xba, 0x56, 0x5d, 0xaa, 0x6b, 0x6d, 0x44, + 0xa0, 0x61, 0xb2, 0xac, 0x7d, 0x06, 0xdd, 0x94, 0x8d, 0xc6, 0xa6, 0x48, 0x6d, 0xb9, 0x14, 0x4a, + 0x48, 0x21, 0xf3, 0x00, 0x5a, 0x49, 0x1a, 0x9f, 0x52, 0x5d, 0x43, 0xea, 0x57, 0xd4, 0x10, 0x89, + 0x51, 0x35, 0xe4, 0x01, 0xb4, 0x4e, 0xa7, 0xac, 0xa8, 0x3a, 0x8d, 0x2b, 0x24, 0x24, 0x46, 0x49, + 0x3c, 0x84, 0xae, 0x3c, 0x49, 0x10, 0xf3, 0x50, 0xc6, 0x32, 0x73, 0x9a, 0x4b, 0x76, 0xc9, 0xc3, + 0xee, 0x17, 0x08, 0xf2, 0x3d, 0xb0, 0xd5, 0x61, 0x0c, 0x29, 0x58, 0x92, 0x52, 0x07, 0x5e, 0x14, + 0x8b, 0xc5, 0x98, 0xa6, 0xa6, 0x58, 0x6b, 0x59, 0x4c, 0x62, 0x0c, 0xb1, 0x67, 0xf0, 0xbe, 0x12, + 0xa3, 0xaf, 0x0d, 0x49, 0x6f, 0x98, 0xc6, 0x13, 0x8f, 0x71, 0xa7, 0xbd, 0xa4, 0xe1, 0x3d, 0x09, + 0x7f, 0xfa, 0x7a, 0xae, 0xe3, 0x20, 0x8d, 0x27, 0x03, 0xde, 0xff, 0x8b, 0x05, 0xcd, 0x62, 0xf4, + 0xfb, 0xef, 0x69, 0x7a, 0x17, 0x1a, 0x0c, 0xd1, 0x08, 0x28, 0x99, 0x00, 0x49, 0x5d, 0xcc, 0xe3, + 0xf2, 0xbb, 0xe6, 0x71, 0x65, 0x29, 0x8f, 0x6f, 0x42, 0x6d, 0xca, 0xd9, 0xeb, 0xa9, 0xaa, 0x93, + 0x0d, 0x57, 0xaf, 0xae, 0xc8, 0xef, 0xda, 0xea, 0xfc, 0xee, 0xff, 0xd2, 0x82, 0x66, 0x31, 0xa9, + 0x92, 0x1d, 0x00, 0xc3, 0xc9, 0xd6, 0x92, 0x8b, 0x0c, 0x2e, 0xf9, 0x2e, 0x74, 0xd2, 0x84, 0x9b, + 0x41, 0x51, 0x45, 0x69, 0x5d, 0xe1, 0xdd, 0x84, 0xeb, 0xcb, 0x99, 0x70, 0x23, 0x2a, 0x45, 0x9f, + 0x2e, 0x5f, 0xd3, 0xa7, 0xfb, 0x3f, 0xb3, 0xcc, 0x51, 0x8e, 0xf4, 0xa0, 0x8a, 0xef, 0x84, 0x55, + 0x16, 0x29, 0x06, 0xd9, 0x81, 0x26, 0x1a, 0xa3, 0x50, 0x2b, 0xed, 0x68, 0xa4, 0xea, 0xcf, 0xbb, + 0x9a, 0xf0, 0xf3, 0x12, 0xb4, 0x8c, 0x89, 0x9c, 0xdc, 0x87, 0xc6, 0x28, 0x8d, 0xa7, 0x89, 0x77, + 0x3a, 0x5b, 0x61, 0x46, 0x5d, 0xf2, 0xf6, 0x66, 0x08, 0xf3, 0x47, 0x23, 0x6f, 0x38, 0xe5, 0x81, + 0xb6, 0x63, 0x01, 0xe6, 0x8f, 0x46, 0x07, 0x53, 0x1e, 0x90, 0x1e, 0x34, 0xd4, 0x44, 0x47, 0xc3, + 0x85, 0x12, 0x5d, 0x50, 0xc9, 0x27, 0xd0, 0xc6, 0x13, 0x15, 0x7b, 0x56, 0x56, 0x1d, 0x0a, 0xd2, + 0x84, 0x7f, 0xa9, 0x77, 0xd6, 0x02, 0xc5, 0xee, 0xd5, 0xab, 0x04, 0x1e, 0x6b, 0x1b, 0x0a, 0x3f, + 0xd4, 0xae, 0xf3, 0xc3, 0x6b, 0xa8, 0xe0, 0x53, 0x83, 0x7c, 0x04, 0x0d, 0xd9, 0xf0, 0xe6, 0xe7, + 0xd7, 0x03, 0xec, 0xde, 0x6c, 0x20, 0xe8, 0xc4, 0xad, 0x4b, 0xee, 0xde, 0x8c, 0xdc, 0xce, 0x5f, + 0x23, 0x25, 0x63, 0xae, 0xd4, 0xcf, 0x90, 0x77, 0x73, 0xfd, 0x00, 0xaa, 0xf2, 0xf1, 0x32, 0x57, + 0x65, 0x5d, 0xa3, 0xaa, 0x74, 0x9d, 0xaa, 0x47, 0x50, 0xc1, 0xf7, 0x05, 0xf9, 0x00, 0x6a, 0x41, + 0xcc, 0xf9, 0xe0, 0xc9, 0x82, 0x2a, 0x4d, 0xc3, 0x7d, 0x5e, 0x4f, 0x69, 0x3a, 0x93, 0xba, 0xf2, + 0x50, 0x28, 0x52, 0xff, 0x4f, 0x25, 0x70, 0x72, 0xad, 0xea, 0x97, 0xc5, 0xfc, 0x78, 0x3a, 0xc1, + 0x34, 0xc2, 0xd1, 0x4e, 0xb0, 0x09, 0xf5, 0x92, 0x34, 0x0e, 0x68, 0x96, 0xd1, 0xd0, 0x93, 0x69, + 0x63, 0x6d, 0x57, 0xdc, 0x2e, 0x32, 0x8e, 0x72, 0xfa, 0x21, 0x5e, 0xd1, 0x0d, 0x3e, 0x9d, 0x20, + 0x34, 0x9c, 0x06, 0x34, 0xf4, 0xd2, 0xf8, 0x3c, 0x53, 0x3e, 0x72, 0xbb, 0x7c, 0x3a, 0x39, 0xd2, + 0x74, 0x37, 0x3e, 0xcf, 0xc8, 0x7d, 0xe8, 0x20, 0x96, 0x09, 0x9a, 0xfa, 0x2a, 0xb7, 0xca, 0x12, + 0xb8, 0xce, 0xa7, 0x93, 0x41, 0x41, 0xbc, 0xfc, 0xe0, 0xaa, 0x2c, 0x3d, 0xb8, 0x7a, 0xd0, 0x0a, + 0x62, 0x1e, 0x4c, 0xd3, 0x94, 0xf2, 0x60, 0x26, 0x0b, 0x45, 0xc5, 0x35, 0x49, 0xe4, 0x25, 0x6c, + 0x0a, 0x36, 0x8c, 0xfc, 0x6c, 0x2c, 0xfb, 0x2f, 0xa6, 0xb3, 0xa0, 0x17, 0x42, 0xdf, 0x09, 0xfd, + 0x02, 0x3a, 0x61, 0x07, 0x88, 0xc0, 0xf2, 0xb7, 0xaf, 0xf8, 0xcf, 0xd6, 0x5c, 0xa2, 0xe5, 0x0c, + 0xea, 0x5e, 0x1b, 0xe0, 0x09, 0x15, 0x3e, 0x8b, 0xb0, 0x88, 0xf5, 0xff, 0x59, 0x06, 0xb2, 0x2c, + 0x4a, 0x1e, 0xc1, 0x1d, 0x11, 0x0b, 0x5f, 0x3d, 0xc6, 0xf1, 0x4d, 0x92, 0xf8, 0xc1, 0x59, 0xe6, + 0x31, 0xee, 0x85, 0x93, 0x21, 0x8b, 0xa8, 0x76, 0xe0, 0x2d, 0x09, 0x3a, 0x56, 0x98, 0x23, 0x84, + 0x0c, 0xf8, 0x13, 0x09, 0x30, 0x34, 0x9c, 0xb1, 0x24, 0x59, 0xa1, 0xa1, 0x64, 0x6a, 0x50, 0x98, + 0x45, 0x0d, 0x5f, 0xc0, 0x07, 0x8b, 0x36, 0x60, 0x34, 0x0c, 0x05, 0xca, 0xdd, 0x8e, 0x69, 0x02, + 0x06, 0x66, 0x85, 0xbc, 0xb6, 0xe0, 0x92, 0x7c, 0xc5, 0x94, 0x57, 0x90, 0x05, 0xf9, 0xaf, 0xe0, + 0xbe, 0x92, 0x4f, 0xe3, 0xe9, 0x68, 0xec, 0x65, 0x54, 0x78, 0xaa, 0x67, 0x44, 0xb1, 0x1f, 0x7a, + 0xf2, 0x4e, 0x31, 0x8e, 0x97, 0x49, 0x85, 0x6c, 0x4b, 0x82, 0x5d, 0xc4, 0x1e, 0x53, 0x21, 0x7b, + 0xd1, 0xcb, 0xd8, 0x0f, 0x4f, 0xd8, 0x84, 0x0e, 0xf8, 0x61, 0x46, 0x3e, 0xcf, 0xcd, 0x51, 0xdb, + 0xab, 0x29, 0xda, 0xd0, 0x52, 0x93, 0x5a, 0xde, 0x93, 0x18, 0x65, 0x01, 0x0e, 0xce, 0x85, 0xf8, + 0x53, 0xe8, 0x29, 0xf1, 0x20, 0xa5, 0xbe, 0xa0, 0x5e, 0xc6, 0xfd, 0x24, 0x1b, 0xc7, 0xc2, 0x54, + 0x51, 0x97, 0x2a, 0xde, 0x97, 0xb8, 0x7d, 0x09, 0x3b, 0xd6, 0xa8, 0x5c, 0x4d, 0xff, 0x0d, 0x54, + 0xf0, 0xbd, 0x4b, 0xbe, 0x05, 0xf5, 0x53, 0x59, 0x14, 0xb2, 0xd5, 0x95, 0x42, 0x33, 0xc9, 0x3d, + 0x58, 0x67, 0x99, 0x1c, 0x84, 0xfd, 0x08, 0x05, 0x55, 0xfa, 0xb9, 0x8b, 0xc4, 0x77, 0xac, 0x19, + 0xbf, 0xb7, 0xc0, 0x56, 0x4f, 0xe9, 0x83, 0xd4, 0x9f, 0xd0, 0xbd, 0x78, 0xca, 0xb1, 0x86, 0x56, + 0x8c, 0x61, 0xf1, 0x86, 0xf9, 0xe0, 0x96, 0x00, 0x63, 0xee, 0x93, 0x40, 0xd2, 0x87, 0xe6, 0x94, + 0x9f, 0x22, 0x8b, 0x86, 0x0b, 0xc5, 0x60, 0x4e, 0xc6, 0xbe, 0x1b, 0x0f, 0x87, 0x19, 0x15, 0xfa, + 0x92, 0xe8, 0x15, 0xd9, 0x86, 0x66, 0xe0, 0x47, 0x01, 0x96, 0xd6, 0x4c, 0x57, 0x6b, 0xb3, 0xf4, + 0xcf, 0x99, 0xfd, 0x5f, 0x5b, 0xd0, 0x32, 0x6c, 0xbd, 0xce, 0x4c, 0x09, 0x58, 0x32, 0xf3, 0x63, + 0xa8, 0x66, 0xc2, 0xd7, 0x0e, 0x2b, 0xbe, 0xe0, 0x5c, 0x3e, 0xbe, 0xab, 0x40, 0x64, 0x1b, 0xca, + 0x94, 0xe7, 0xee, 0xbb, 0x0a, 0x8b, 0x90, 0xfe, 0x5f, 0x2d, 0xa8, 0x29, 0x0e, 0xf9, 0x08, 0x9a, + 0xd8, 0x45, 0x3c, 0x39, 0x7c, 0x2c, 0xf7, 0xbb, 0x06, 0x32, 0x9f, 0xe0, 0x18, 0xf2, 0x09, 0xcc, + 0x07, 0x7a, 0xec, 0x0d, 0xa5, 0x15, 0x11, 0x6f, 0x15, 0x88, 0xbd, 0xd9, 0x42, 0x23, 0x29, 0x5f, + 0xd7, 0x48, 0x3e, 0x82, 0xea, 0x10, 0x0d, 0xd4, 0x4f, 0xfa, 0x8d, 0x25, 0xcb, 0x5d, 0xc5, 0x9f, + 0xdf, 0x90, 0xea, 0x35, 0x37, 0x64, 0xe7, 0x77, 0x25, 0xf5, 0xd1, 0x50, 0x0e, 0xf6, 0x1b, 0xb0, + 0x8e, 0xbf, 0xc5, 0xe3, 0xcb, 0x5e, 0xcb, 0x49, 0xc5, 0xa0, 0x67, 0x5b, 0x39, 0xa9, 0x98, 0x8f, + 0xec, 0x12, 0xf9, 0x3f, 0xe8, 0x22, 0xc9, 0x98, 0x0c, 0xec, 0x32, 0x69, 0x43, 0x43, 0x6a, 0x8b, + 0x93, 0x43, 0xbb, 0x42, 0xd6, 0xa1, 0x89, 0x2b, 0xd9, 0xc2, 0xec, 0x6a, 0xa1, 0x44, 0x36, 0xf6, + 0xc7, 0xa3, 0x91, 0x5d, 0xcb, 0xf1, 0x38, 0xb1, 0xdb, 0xf5, 0x7c, 0x85, 0x7d, 0xca, 0x6e, 0x90, + 0x9b, 0x40, 0x70, 0xb5, 0xf8, 0x9d, 0xc5, 0x6e, 0x12, 0x07, 0x36, 0x4d, 0x7a, 0xfe, 0x75, 0xc1, + 0x06, 0x42, 0xa0, 0x83, 0x9c, 0xf9, 0xbc, 0x64, 0xb7, 0xc8, 0x6d, 0xb8, 0x29, 0x69, 0x4b, 0xaf, + 0x4c, 0xbb, 0x9d, 0xef, 0x87, 0xc9, 0x65, 0xaf, 0x93, 0x0e, 0x00, 0xae, 0x94, 0x5b, 0xed, 0xce, + 0xce, 0x0f, 0xa0, 0x6d, 0x7e, 0x3f, 0x20, 0x5d, 0x68, 0x1d, 0xf9, 0x59, 0x76, 0x32, 0x96, 0x95, + 0xca, 0x5e, 0xc3, 0xe3, 0xed, 0xa5, 0xb1, 0x1f, 0x06, 0x7e, 0x26, 0x6c, 0x8b, 0x34, 0xa0, 0xf2, + 0xcc, 0xcf, 0xc6, 0x76, 0x69, 0x67, 0x17, 0x60, 0xfe, 0x48, 0x27, 0x4d, 0xa8, 0xbe, 0x8c, 0x03, + 0x3f, 0xb2, 0xd7, 0x10, 0x72, 0xc2, 0x5e, 0xfc, 0xd8, 0xb6, 0x48, 0x0b, 0xea, 0xba, 0x21, 0xd8, + 0xa5, 0x9d, 0x3f, 0x5a, 0xd0, 0xc8, 0x5f, 0x6e, 0x73, 0xef, 0x73, 0x9a, 0x4a, 0xbf, 0xac, 0x91, + 0x1b, 0xb0, 0x21, 0xfd, 0x48, 0x87, 0xe2, 0xeb, 0xa9, 0xd0, 0x64, 0x2b, 0x77, 0x90, 0x8b, 0xaf, + 0x84, 0x39, 0xbd, 0x44, 0x6c, 0x68, 0xab, 0x60, 0x4d, 0x98, 0xa4, 0x94, 0xc9, 0x26, 0xd8, 0x32, + 0x56, 0x5c, 0xb0, 0x82, 0x5a, 0x21, 0xb7, 0xe0, 0xc6, 0x82, 0xda, 0x82, 0x55, 0x25, 0x77, 0xe0, + 0x56, 0x2e, 0xb0, 0xcc, 0xae, 0xed, 0xf4, 0xa0, 0x6d, 0xbe, 0x18, 0xf3, 0x1d, 0xf1, 0xf8, 0xca, + 0xe4, 0x9d, 0x1f, 0x41, 0xf7, 0x52, 0x79, 0x41, 0x77, 0x1d, 0xc4, 0x51, 0x14, 0x9f, 0x33, 0x3e, + 0x52, 0xde, 0x3b, 0x4a, 0x69, 0x40, 0x43, 0x5c, 0x5a, 0xe8, 0xfd, 0x7d, 0xd9, 0x8a, 0x85, 0x1b, + 0x9f, 0xdb, 0xa5, 0x9d, 0x87, 0xb9, 0x82, 0x22, 0xf1, 0xd1, 0x7b, 0xd8, 0x3a, 0xec, 0x35, 0x02, + 0x50, 0x93, 0x9f, 0x32, 0x32, 0xdb, 0xc2, 0xff, 0x72, 0xf0, 0xcb, 0xec, 0xd2, 0xde, 0xb7, 0xbf, + 0x79, 0xbb, 0x65, 0xfd, 0xf9, 0xed, 0x96, 0xf5, 0xf7, 0xb7, 0x5b, 0xd6, 0x6f, 0xfe, 0xb1, 0xb5, + 0x06, 0x37, 0x82, 0x78, 0xb2, 0x9b, 0x30, 0x3e, 0x0a, 0xfc, 0x64, 0x57, 0xb0, 0xf0, 0x54, 0xa6, + 0xc4, 0x91, 0xf5, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x12, 0x94, 0xc2, 0xc8, 0x86, 0x17, 0x00, + 0x00, } diff --git a/proto/executor.proto b/proto/executor.proto index ae984379..5c3e76b5 100644 --- a/proto/executor.proto +++ b/proto/executor.proto @@ -209,20 +209,21 @@ message ExecutorExecutionSummary { optional uint64 concurrency = 5; oneof DetailInfo { - TableScanContext table_scan_context = 6; + TiFlashScanContext tiflash_scan_context = 6; } } -message TableScanContext { - optional uint64 scan_packs_count = 1; - optional uint64 scan_rows_count = 2; - optional uint64 skip_packs_count = 3; - optional uint64 skip_rows_count = 4; - optional uint64 rough_set_index_load_time_in_ns = 5; - optional uint64 dmfile_read_time_in_ns = 6; - optional uint64 create_snapshot_time_in_ns = 7; +message TiFlashScanContext { + optional uint64 total_scanned_packs_in_dmfile = 1; + optional uint64 total_skipped_packs_in_dmfile = 2; + optional uint64 total_scanned_rows_in_dmfile = 3; + optional uint64 total_skipped_rows_in_dmfile = 4; + optional uint64 total_rough_set_index_load_time_in_ns = 5; + optional uint64 total_dmfile_read_time_in_ns = 6; + optional uint64 total_create_snapshot_time_in_ns = 7; } + message Sort { repeated ByItem byItems = 1; optional bool isPartialSort = 2; From 9e31487d187dd7b564e8a580f2ed87f3dddfe080 Mon Sep 17 00:00:00 2001 From: hongyunyan <649330952@qq.com> Date: Wed, 23 Nov 2022 10:19:50 +0800 Subject: [PATCH 12/13] update typo --- proto/executor.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/proto/executor.proto b/proto/executor.proto index 5c3e76b5..ae4298ed 100644 --- a/proto/executor.proto +++ b/proto/executor.proto @@ -215,9 +215,9 @@ message ExecutorExecutionSummary { message TiFlashScanContext { optional uint64 total_scanned_packs_in_dmfile = 1; - optional uint64 total_skipped_packs_in_dmfile = 2; - optional uint64 total_scanned_rows_in_dmfile = 3; - optional uint64 total_skipped_rows_in_dmfile = 4; + optional uint64 total_skipped_packs_in_dmfile = 2; + optional uint64 total_scanned_rows_in_dmfile = 3; + optional uint64 total_skipped_rows_in_dmfile = 4; optional uint64 total_rough_set_index_load_time_in_ns = 5; optional uint64 total_dmfile_read_time_in_ns = 6; optional uint64 total_create_snapshot_time_in_ns = 7; From 17ee8629fc389d6c08b3727abad8ac605b415737 Mon Sep 17 00:00:00 2001 From: hongyunyan <649330952@qq.com> Date: Wed, 23 Nov 2022 10:22:34 +0800 Subject: [PATCH 13/13] update code --- go-tipb/analyze.pb.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go-tipb/analyze.pb.go b/go-tipb/analyze.pb.go index 408c3e42..c494f306 100644 --- a/go-tipb/analyze.pb.go +++ b/go-tipb/analyze.pb.go @@ -51,7 +51,7 @@ Limit Kill ExecutorExecutionSummary - TableScanContext + TiFlashScanContext Sort WindowFrameBound WindowFrame