diff --git a/pkg/sql/logictest/testdata/logic_test/pg_catalog b/pkg/sql/logictest/testdata/logic_test/pg_catalog index ce0e1da793e9..f13bb5907fa7 100644 --- a/pkg/sql/logictest/testdata/logic_test/pg_catalog +++ b/pkg/sql/logictest/testdata/logic_test/pg_catalog @@ -1717,3 +1717,63 @@ t statement ok DROP DATABASE d34856 CASCADE + +subtest regression_34862 + +statement ok +CREATE DATABASE d34862; SET database=d34862 + +statement ok +CREATE TABLE t(x INT UNIQUE); + CREATE TABLE u( + a INT REFERENCES t(x) ON DELETE NO ACTION, + b INT REFERENCES t(x) ON DELETE RESTRICT, + c INT REFERENCES t(x) ON DELETE SET NULL, + d INT DEFAULT 123 REFERENCES t(x) ON DELETE SET DEFAULT, + e INT REFERENCES t(x) ON DELETE CASCADE, + f INT REFERENCES t(x) ON UPDATE NO ACTION, + g INT REFERENCES t(x) ON UPDATE RESTRICT, + h INT REFERENCES t(x) ON UPDATE SET NULL, + i INT DEFAULT 123 REFERENCES t(x) ON UPDATE SET DEFAULT, + j INT REFERENCES t(x) ON UPDATE CASCADE, + k INT REFERENCES t(x) ON DELETE RESTRICT ON UPDATE SET NULL + ); + +query TTT +SELECT conname, confupdtype, confdeltype FROM pg_constraint ORDER BY conname +---- +fk_a_ref_t a a +fk_b_ref_t a r +fk_c_ref_t a n +fk_d_ref_t a d +fk_e_ref_t a c +fk_f_ref_t a a +fk_g_ref_t r a +fk_h_ref_t n a +fk_i_ref_t d a +fk_j_ref_t c a +fk_k_ref_t n r +t_x_key NULL NULL + +statement ok +DROP TABLE u; DROP TABLE t + +statement ok +CREATE TABLE v(x INT, y INT, UNIQUE (x,y)) + +statement ok +CREATE TABLE w( + a INT, b INT, c INT, d INT, + FOREIGN KEY (a,b) REFERENCES v(x,y) MATCH FULL, + FOREIGN KEY (c,d) REFERENCES v(x,y) MATCH SIMPLE + ); + +query TT +SELECT conname, confmatchtype FROM pg_constraint ORDER BY conname +---- +fk_a_ref_v f +fk_c_ref_v s +v_x_y_key NULL + +statement ok +DROP DATABASE d34862 CASCADE; SET database=test diff --git a/pkg/sql/pg_catalog.go b/pkg/sql/pg_catalog.go index b63b9deadc52..fe9dff0dd65c 100644 --- a/pkg/sql/pg_catalog.go +++ b/pkg/sql/pg_catalog.go @@ -627,19 +627,23 @@ var ( fkActionSetNull = tree.NewDString("n") fkActionSetDefault = tree.NewDString("d") - // Avoid unused warning for constants. - _ = fkActionRestrict - _ = fkActionCascade - _ = fkActionSetNull - _ = fkActionSetDefault + fkActionMap = map[sqlbase.ForeignKeyReference_Action]tree.Datum{ + sqlbase.ForeignKeyReference_NO_ACTION: fkActionNone, + sqlbase.ForeignKeyReference_RESTRICT: fkActionRestrict, + sqlbase.ForeignKeyReference_CASCADE: fkActionCascade, + sqlbase.ForeignKeyReference_SET_NULL: fkActionSetNull, + sqlbase.ForeignKeyReference_SET_DEFAULT: fkActionSetDefault, + } fkMatchTypeFull = tree.NewDString("f") fkMatchTypePartial = tree.NewDString("p") fkMatchTypeSimple = tree.NewDString("s") - // Avoid unused warning for constants. - _ = fkMatchTypeFull - _ = fkMatchTypePartial + fkMatchMap = map[sqlbase.ForeignKeyReference_Match]tree.Datum{ + sqlbase.ForeignKeyReference_SIMPLE: fkMatchTypeSimple, + sqlbase.ForeignKeyReference_FULL: fkMatchTypeFull, + sqlbase.ForeignKeyReference_PARTIAL: fkMatchTypePartial, + } ) // See: https://www.postgresql.org/docs/9.6/static/catalog-pg-constraint.html. @@ -727,9 +731,15 @@ CREATE TABLE pg_catalog.pg_constraint ( contype = conTypeFK conindid = h.IndexOid(referencedDB, tree.PublicSchema, con.ReferencedTable, con.ReferencedIndex) confrelid = defaultOid(con.ReferencedTable.ID) - confupdtype = fkActionNone - confdeltype = fkActionNone - confmatchtype = fkMatchTypeSimple + if r, ok := fkActionMap[con.FK.OnUpdate]; ok { + confupdtype = r + } + if r, ok := fkActionMap[con.FK.OnDelete]; ok { + confdeltype = r + } + if r, ok := fkMatchMap[con.FK.Match]; ok { + confmatchtype = r + } columnIDs := con.Index.ColumnIDs if int(con.FK.SharedPrefixLen) > len(columnIDs) { return pgerror.NewAssertionErrorf( diff --git a/pkg/sql/row/cascader.go b/pkg/sql/row/cascader.go index 17967bdef222..d3e3674f83b2 100644 --- a/pkg/sql/row/cascader.go +++ b/pkg/sql/row/cascader.go @@ -230,6 +230,10 @@ func spanForIndexValues( if nulls { return roachpb.Span{}, nil } + + case sqlbase.ForeignKeyReference_PARTIAL: + return roachpb.Span{}, pgerror.UnimplementedWithIssueError(20305, "MATCH PARTIAL not supported") + default: return roachpb.Span{}, pgerror.NewAssertionErrorf("unknown composite key match type: %v", match) } diff --git a/pkg/sql/row/fk_existence_base.go b/pkg/sql/row/fk_existence_base.go index 7eeb717a5339..d66d076cbc30 100644 --- a/pkg/sql/row/fk_existence_base.go +++ b/pkg/sql/row/fk_existence_base.go @@ -227,6 +227,10 @@ func computeFkCheckColumnIDs( return nil, pgerror.NewErrorf(pgerror.CodeForeignKeyViolationError, "missing values for columns %q in multi-part foreign key", missingColumns) } + + case sqlbase.ForeignKeyReference_PARTIAL: + return nil, pgerror.UnimplementedWithIssueError(20305, "MATCH PARTIAL not supported") + default: return nil, pgerror.NewAssertionErrorf("unknown composite key match type: %v", match) } diff --git a/pkg/sql/row/fk_existence_check.go b/pkg/sql/row/fk_existence_check.go index a4538cbaf2f3..380eda17648c 100644 --- a/pkg/sql/row/fk_existence_check.go +++ b/pkg/sql/row/fk_existence_check.go @@ -84,6 +84,9 @@ outer: return err } + case sqlbase.ForeignKeyReference_PARTIAL: + return pgerror.UnimplementedWithIssueError(20305, "MATCH PARTIAL not supported") + default: return pgerror.NewAssertionErrorf("unknown composite key match type: %v", fk.ref.Match) } diff --git a/pkg/sql/sem/tree/create.go b/pkg/sql/sem/tree/create.go index a661c87a69a9..feb1e30491b9 100644 --- a/pkg/sql/sem/tree/create.go +++ b/pkg/sql/sem/tree/create.go @@ -652,11 +652,13 @@ type CompositeKeyMatchMethod int const ( MatchSimple CompositeKeyMatchMethod = iota MatchFull + MatchPartial // Note: PARTIAL not actually supported at this point. ) var compositeKeyMatchMethodName = [...]string{ - MatchSimple: "MATCH SIMPLE", - MatchFull: "MATCH FULL", + MatchSimple: "MATCH SIMPLE", + MatchFull: "MATCH FULL", + MatchPartial: "MATCH PARTIAL", } func (c CompositeKeyMatchMethod) String() string { diff --git a/pkg/sql/sqlbase/structured.go b/pkg/sql/sqlbase/structured.go index c4e60158b8d6..8a51b9f43b78 100644 --- a/pkg/sql/sqlbase/structured.go +++ b/pkg/sql/sqlbase/structured.go @@ -2604,16 +2604,18 @@ func (cc *TableDescriptor_CheckConstraint) UsesColumn( // CompositeKeyMatchMethodValue allows the conversion from a // tree.ReferenceCompositeKeyMatchMethod to a ForeignKeyReference_Match. var CompositeKeyMatchMethodValue = [...]ForeignKeyReference_Match{ - tree.MatchSimple: ForeignKeyReference_SIMPLE, - tree.MatchFull: ForeignKeyReference_FULL, + tree.MatchSimple: ForeignKeyReference_SIMPLE, + tree.MatchFull: ForeignKeyReference_FULL, + tree.MatchPartial: ForeignKeyReference_PARTIAL, } // ForeignKeyReferenceMatchValue allows the conversion from a // ForeignKeyReference_Match to a tree.ReferenceCompositeKeyMatchMethod. // This should match CompositeKeyMatchMethodValue. var ForeignKeyReferenceMatchValue = [...]tree.CompositeKeyMatchMethod{ - ForeignKeyReference_SIMPLE: tree.MatchSimple, - ForeignKeyReference_FULL: tree.MatchFull, + ForeignKeyReference_SIMPLE: tree.MatchSimple, + ForeignKeyReference_FULL: tree.MatchFull, + ForeignKeyReference_PARTIAL: tree.MatchPartial, } // String implements the fmt.Stringer interface. @@ -2623,6 +2625,8 @@ func (x ForeignKeyReference_Match) String() string { return "MATCH SIMPLE" case ForeignKeyReference_FULL: return "MATCH FULL" + case ForeignKeyReference_PARTIAL: + return "MATCH PARTIAL" default: return strconv.Itoa(int(x)) } diff --git a/pkg/sql/sqlbase/structured.pb.go b/pkg/sql/sqlbase/structured.pb.go index a098d63475ac..57129b1ca6ae 100644 --- a/pkg/sql/sqlbase/structured.pb.go +++ b/pkg/sql/sqlbase/structured.pb.go @@ -66,7 +66,7 @@ func (x *ConstraintValidity) UnmarshalJSON(data []byte) error { return nil } func (ConstraintValidity) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{0} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{0} } // These mirror the types supported by sql/coltypes. @@ -174,7 +174,7 @@ func (x *ColumnType_SemanticType) UnmarshalJSON(data []byte) error { return nil } func (ColumnType_SemanticType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{0, 0} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{0, 0} } type ColumnType_VisibleType int32 @@ -234,7 +234,7 @@ func (x *ColumnType_VisibleType) UnmarshalJSON(data []byte) error { return nil } func (ColumnType_VisibleType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{0, 1} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{0, 1} } type ForeignKeyReference_Action int32 @@ -279,24 +279,27 @@ func (x *ForeignKeyReference_Action) UnmarshalJSON(data []byte) error { return nil } func (ForeignKeyReference_Action) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{1, 0} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{1, 0} } // Match is the algorithm used to compare composite keys. type ForeignKeyReference_Match int32 const ( - ForeignKeyReference_SIMPLE ForeignKeyReference_Match = 0 - ForeignKeyReference_FULL ForeignKeyReference_Match = 1 + ForeignKeyReference_SIMPLE ForeignKeyReference_Match = 0 + ForeignKeyReference_FULL ForeignKeyReference_Match = 1 + ForeignKeyReference_PARTIAL ForeignKeyReference_Match = 2 ) var ForeignKeyReference_Match_name = map[int32]string{ 0: "SIMPLE", 1: "FULL", + 2: "PARTIAL", } var ForeignKeyReference_Match_value = map[string]int32{ - "SIMPLE": 0, - "FULL": 1, + "SIMPLE": 0, + "FULL": 1, + "PARTIAL": 2, } func (x ForeignKeyReference_Match) Enum() *ForeignKeyReference_Match { @@ -316,7 +319,7 @@ func (x *ForeignKeyReference_Match) UnmarshalJSON(data []byte) error { return nil } func (ForeignKeyReference_Match) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{1, 1} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{1, 1} } // The direction of a column in the index. @@ -353,7 +356,7 @@ func (x *IndexDescriptor_Direction) UnmarshalJSON(data []byte) error { return nil } func (IndexDescriptor_Direction) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{6, 0} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{6, 0} } // The direction of a column in the index. @@ -390,7 +393,7 @@ func (x *IndexDescriptor_Type) UnmarshalJSON(data []byte) error { return nil } func (IndexDescriptor_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{6, 1} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{6, 1} } type ConstraintToValidate_ConstraintType int32 @@ -423,7 +426,7 @@ func (x *ConstraintToValidate_ConstraintType) UnmarshalJSON(data []byte) error { return nil } func (ConstraintToValidate_ConstraintType) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{7, 0} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{7, 0} } // A descriptor within a mutation is unavailable for reads, writes @@ -488,7 +491,7 @@ func (x *DescriptorMutation_State) UnmarshalJSON(data []byte) error { return nil } func (DescriptorMutation_State) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{8, 0} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{8, 0} } // Direction of mutation. @@ -531,7 +534,7 @@ func (x *DescriptorMutation_Direction) UnmarshalJSON(data []byte) error { return nil } func (DescriptorMutation_Direction) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{8, 1} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{8, 1} } // State is set if this TableDescriptor is in the process of being added or deleted. @@ -578,7 +581,7 @@ func (x *TableDescriptor_State) UnmarshalJSON(data []byte) error { return nil } func (TableDescriptor_State) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{9, 0} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{9, 0} } // AuditMode indicates which auditing actions to take when this table is used. @@ -615,7 +618,7 @@ func (x *TableDescriptor_AuditMode) UnmarshalJSON(data []byte) error { return nil } func (TableDescriptor_AuditMode) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{9, 1} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{9, 1} } type ColumnType struct { @@ -647,7 +650,7 @@ func (m *ColumnType) Reset() { *m = ColumnType{} } func (m *ColumnType) String() string { return proto.CompactTextString(m) } func (*ColumnType) ProtoMessage() {} func (*ColumnType) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{0} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{0} } func (m *ColumnType) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -693,7 +696,7 @@ func (m *ForeignKeyReference) Reset() { *m = ForeignKeyReference{} } func (m *ForeignKeyReference) String() string { return proto.CompactTextString(m) } func (*ForeignKeyReference) ProtoMessage() {} func (*ForeignKeyReference) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{1} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{1} } func (m *ForeignKeyReference) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -740,7 +743,7 @@ func (m *ColumnDescriptor) Reset() { *m = ColumnDescriptor{} } func (m *ColumnDescriptor) String() string { return proto.CompactTextString(m) } func (*ColumnDescriptor) ProtoMessage() {} func (*ColumnDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{2} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{2} } func (m *ColumnDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -793,7 +796,7 @@ func (m *ColumnFamilyDescriptor) Reset() { *m = ColumnFamilyDescriptor{} func (m *ColumnFamilyDescriptor) String() string { return proto.CompactTextString(m) } func (*ColumnFamilyDescriptor) ProtoMessage() {} func (*ColumnFamilyDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{3} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{3} } func (m *ColumnFamilyDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -841,7 +844,7 @@ func (m *InterleaveDescriptor) Reset() { *m = InterleaveDescriptor{} } func (m *InterleaveDescriptor) String() string { return proto.CompactTextString(m) } func (*InterleaveDescriptor) ProtoMessage() {} func (*InterleaveDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{4} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{4} } func (m *InterleaveDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -887,7 +890,7 @@ func (m *InterleaveDescriptor_Ancestor) Reset() { *m = InterleaveDescrip func (m *InterleaveDescriptor_Ancestor) String() string { return proto.CompactTextString(m) } func (*InterleaveDescriptor_Ancestor) ProtoMessage() {} func (*InterleaveDescriptor_Ancestor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{4, 0} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{4, 0} } func (m *InterleaveDescriptor_Ancestor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -934,7 +937,7 @@ func (m *PartitioningDescriptor) Reset() { *m = PartitioningDescriptor{} func (m *PartitioningDescriptor) String() string { return proto.CompactTextString(m) } func (*PartitioningDescriptor) ProtoMessage() {} func (*PartitioningDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{5} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{5} } func (m *PartitioningDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -979,7 +982,7 @@ func (m *PartitioningDescriptor_List) Reset() { *m = PartitioningDescrip func (m *PartitioningDescriptor_List) String() string { return proto.CompactTextString(m) } func (*PartitioningDescriptor_List) ProtoMessage() {} func (*PartitioningDescriptor_List) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{5, 0} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{5, 0} } func (m *PartitioningDescriptor_List) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1026,7 +1029,7 @@ func (m *PartitioningDescriptor_Range) Reset() { *m = PartitioningDescri func (m *PartitioningDescriptor_Range) String() string { return proto.CompactTextString(m) } func (*PartitioningDescriptor_Range) ProtoMessage() {} func (*PartitioningDescriptor_Range) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{5, 1} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{5, 1} } func (m *PartitioningDescriptor_Range) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1160,7 +1163,7 @@ func (m *IndexDescriptor) Reset() { *m = IndexDescriptor{} } func (m *IndexDescriptor) String() string { return proto.CompactTextString(m) } func (*IndexDescriptor) ProtoMessage() {} func (*IndexDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{6} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{6} } func (m *IndexDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1196,7 +1199,7 @@ func (m *ConstraintToValidate) Reset() { *m = ConstraintToValidate{} } func (m *ConstraintToValidate) String() string { return proto.CompactTextString(m) } func (*ConstraintToValidate) ProtoMessage() {} func (*ConstraintToValidate) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{7} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{7} } func (m *ConstraintToValidate) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1250,7 +1253,7 @@ func (m *DescriptorMutation) Reset() { *m = DescriptorMutation{} } func (m *DescriptorMutation) String() string { return proto.CompactTextString(m) } func (*DescriptorMutation) ProtoMessage() {} func (*DescriptorMutation) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{8} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{8} } func (m *DescriptorMutation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1534,7 +1537,7 @@ func (m *TableDescriptor) Reset() { *m = TableDescriptor{} } func (m *TableDescriptor) String() string { return proto.CompactTextString(m) } func (*TableDescriptor) ProtoMessage() {} func (*TableDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{9} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{9} } func (m *TableDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1786,7 +1789,7 @@ func (m *TableDescriptor_SchemaChangeLease) Reset() { *m = TableDescript func (m *TableDescriptor_SchemaChangeLease) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_SchemaChangeLease) ProtoMessage() {} func (*TableDescriptor_SchemaChangeLease) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{9, 0} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{9, 0} } func (m *TableDescriptor_SchemaChangeLease) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1825,7 +1828,7 @@ func (m *TableDescriptor_CheckConstraint) Reset() { *m = TableDescriptor func (m *TableDescriptor_CheckConstraint) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_CheckConstraint) ProtoMessage() {} func (*TableDescriptor_CheckConstraint) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{9, 1} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{9, 1} } func (m *TableDescriptor_CheckConstraint) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1930,7 +1933,7 @@ func (m *TableDescriptor_NameInfo) Reset() { *m = TableDescriptor_NameIn func (m *TableDescriptor_NameInfo) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_NameInfo) ProtoMessage() {} func (*TableDescriptor_NameInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{9, 2} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{9, 2} } func (m *TableDescriptor_NameInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -1972,7 +1975,7 @@ func (m *TableDescriptor_Reference) Reset() { *m = TableDescriptor_Refer func (m *TableDescriptor_Reference) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_Reference) ProtoMessage() {} func (*TableDescriptor_Reference) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{9, 3} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{9, 3} } func (m *TableDescriptor_Reference) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2011,7 +2014,7 @@ func (m *TableDescriptor_MutationJob) Reset() { *m = TableDescriptor_Mut func (m *TableDescriptor_MutationJob) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_MutationJob) ProtoMessage() {} func (*TableDescriptor_MutationJob) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{9, 4} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{9, 4} } func (m *TableDescriptor_MutationJob) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2055,7 +2058,7 @@ func (m *TableDescriptor_SequenceOpts) Reset() { *m = TableDescriptor_Se func (m *TableDescriptor_SequenceOpts) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_SequenceOpts) ProtoMessage() {} func (*TableDescriptor_SequenceOpts) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{9, 5} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{9, 5} } func (m *TableDescriptor_SequenceOpts) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2091,7 +2094,7 @@ func (m *TableDescriptor_Replacement) Reset() { *m = TableDescriptor_Rep func (m *TableDescriptor_Replacement) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_Replacement) ProtoMessage() {} func (*TableDescriptor_Replacement) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{9, 6} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{9, 6} } func (m *TableDescriptor_Replacement) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2130,7 +2133,7 @@ func (m *TableDescriptor_GCDescriptorMutation) Reset() { *m = TableDescr func (m *TableDescriptor_GCDescriptorMutation) String() string { return proto.CompactTextString(m) } func (*TableDescriptor_GCDescriptorMutation) ProtoMessage() {} func (*TableDescriptor_GCDescriptorMutation) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{9, 7} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{9, 7} } func (m *TableDescriptor_GCDescriptorMutation) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2171,7 +2174,7 @@ func (m *DatabaseDescriptor) Reset() { *m = DatabaseDescriptor{} } func (m *DatabaseDescriptor) String() string { return proto.CompactTextString(m) } func (*DatabaseDescriptor) ProtoMessage() {} func (*DatabaseDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{10} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{10} } func (m *DatabaseDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -2231,7 +2234,7 @@ func (m *Descriptor) Reset() { *m = Descriptor{} } func (m *Descriptor) String() string { return proto.CompactTextString(m) } func (*Descriptor) ProtoMessage() {} func (*Descriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_structured_1bcacc6943392042, []int{11} + return fileDescriptor_structured_0d1c6fcaf41ee6c3, []int{11} } func (m *Descriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -9237,213 +9240,214 @@ var ( ) func init() { - proto.RegisterFile("sql/sqlbase/structured.proto", fileDescriptor_structured_1bcacc6943392042) -} - -var fileDescriptor_structured_1bcacc6943392042 = []byte{ - // 3260 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x59, 0xcd, 0x6f, 0xe3, 0xd6, - 0x76, 0x37, 0x25, 0x4a, 0xa2, 0x8e, 0xbe, 0xe8, 0x3b, 0x9e, 0x89, 0x46, 0x33, 0xb1, 0x3d, 0x4a, - 0x26, 0x75, 0xbe, 0xe4, 0x89, 0xa7, 0x1f, 0x41, 0x52, 0x04, 0x95, 0x44, 0x7a, 0x4c, 0x8f, 0x2c, - 0x79, 0x28, 0xd9, 0x93, 0x09, 0xd2, 0x0a, 0xb4, 0x78, 0x6d, 0x33, 0x43, 0x91, 0x1a, 0x92, 0x72, - 0xec, 0xff, 0x20, 0xab, 0xa2, 0xe8, 0xa2, 0xdd, 0x05, 0x41, 0xd0, 0x45, 0x80, 0x6e, 0xbb, 0xc8, - 0x9f, 0x30, 0xdd, 0x15, 0x59, 0x75, 0xd3, 0x41, 0xeb, 0xe2, 0x01, 0x6f, 0xf7, 0xf0, 0xb6, 0x01, - 0x1e, 0xf0, 0x70, 0x2f, 0xef, 0xa5, 0x28, 0x7f, 0x45, 0x9e, 0xd9, 0x91, 0xe7, 0xde, 0xf3, 0xe3, - 0xbd, 0xe7, 0x9e, 0xf3, 0x3b, 0xe7, 0x5c, 0xc2, 0x5d, 0xff, 0x85, 0xbd, 0xea, 0xbf, 0xb0, 0xf7, - 0x0c, 0x1f, 0xaf, 0xfa, 0x81, 0x37, 0x1e, 0x04, 0x63, 0x0f, 0x9b, 0xb5, 0x91, 0xe7, 0x06, 0x2e, - 0xba, 0x39, 0x70, 0x07, 0xcf, 0x3d, 0xd7, 0x18, 0x1c, 0xd6, 0xfc, 0x17, 0x76, 0x8d, 0xcd, 0xab, - 0x94, 0xc7, 0x81, 0x65, 0xaf, 0x1e, 0xda, 0x83, 0xd5, 0xc0, 0x1a, 0x62, 0x3f, 0x30, 0x86, 0xa3, - 0x50, 0xa1, 0x72, 0x27, 0x0e, 0x37, 0xf2, 0xac, 0x23, 0xcb, 0xc6, 0x07, 0x98, 0x0d, 0x2e, 0x1c, - 0xb8, 0x07, 0x2e, 0x7d, 0x5c, 0x25, 0x4f, 0xa1, 0xb4, 0xfa, 0x4b, 0x06, 0xa0, 0xe9, 0xda, 0xe3, - 0xa1, 0xd3, 0x3b, 0x19, 0x61, 0xf4, 0x0c, 0x0a, 0x3e, 0x1e, 0x1a, 0x4e, 0x60, 0x0d, 0xfa, 0xc1, - 0xc9, 0x08, 0x97, 0x85, 0x65, 0x61, 0xa5, 0xb8, 0x56, 0xab, 0x5d, 0xb8, 0x94, 0xda, 0x44, 0xb3, - 0xd6, 0x65, 0x6a, 0xe4, 0xa5, 0x21, 0xbe, 0x7c, 0xb5, 0x34, 0xa7, 0xe7, 0xfd, 0x98, 0x0c, 0x55, - 0x20, 0xf5, 0xad, 0x65, 0x06, 0x87, 0xe5, 0xc4, 0xb2, 0xb0, 0x92, 0x62, 0x53, 0x42, 0x11, 0xaa, - 0x42, 0x76, 0xe4, 0xe1, 0x81, 0xe5, 0x5b, 0xae, 0x53, 0x4e, 0xc6, 0xc6, 0x27, 0x62, 0xf4, 0x3e, - 0xc8, 0x86, 0xe7, 0x19, 0x27, 0x7d, 0xd3, 0x1a, 0x62, 0x87, 0x88, 0xfc, 0xb2, 0xb8, 0x9c, 0x5c, - 0x49, 0xe9, 0x25, 0x2a, 0x57, 0x22, 0x31, 0xba, 0x05, 0x69, 0xdb, 0x1d, 0x18, 0x36, 0x2e, 0xa7, - 0x96, 0x85, 0x95, 0xac, 0xce, 0xde, 0xd0, 0x2e, 0xe4, 0x8f, 0x2c, 0xdf, 0xda, 0xb3, 0x71, 0xb8, - 0xb9, 0x34, 0xdd, 0xdc, 0xc7, 0xbf, 0xbd, 0xb9, 0xdd, 0x50, 0x2b, 0xb6, 0xb7, 0xdc, 0xd1, 0x44, - 0x84, 0x76, 0xa0, 0x18, 0x2e, 0x6d, 0xe0, 0x3a, 0x01, 0x76, 0x02, 0xbf, 0x9c, 0x79, 0x1d, 0xb3, - 0xe9, 0x05, 0x8a, 0xd2, 0x64, 0x20, 0xa8, 0x0d, 0xc5, 0x60, 0x3c, 0xb2, 0xf1, 0x04, 0x56, 0x5a, - 0x4e, 0xae, 0xe4, 0xd6, 0xee, 0xfd, 0x26, 0x2c, 0x5b, 0x64, 0x81, 0xaa, 0x47, 0x78, 0xf7, 0x20, - 0x1f, 0xe2, 0xd9, 0xc6, 0x1e, 0xb6, 0xfd, 0x72, 0x76, 0x39, 0xb9, 0x92, 0xd5, 0x73, 0x54, 0xd6, - 0xa2, 0xa2, 0xea, 0x4f, 0x09, 0xc8, 0xc7, 0x97, 0x84, 0x24, 0x10, 0x1b, 0x9d, 0x4e, 0x4b, 0x9e, - 0x43, 0x19, 0x48, 0x6a, 0xed, 0x9e, 0x2c, 0xa0, 0x2c, 0xa4, 0xd6, 0x5b, 0x9d, 0x7a, 0x4f, 0x4e, - 0xa0, 0x1c, 0x64, 0x14, 0xb5, 0xa9, 0x6d, 0xd5, 0x5b, 0x72, 0x92, 0x4c, 0x55, 0xea, 0x3d, 0x55, - 0x16, 0x51, 0x01, 0xb2, 0x3d, 0x6d, 0x4b, 0xed, 0xf6, 0xea, 0x5b, 0xdb, 0x72, 0x0a, 0xe5, 0x41, - 0xd2, 0xda, 0x3d, 0x55, 0xdf, 0xad, 0xb7, 0xe4, 0x34, 0x02, 0x48, 0x77, 0x7b, 0xba, 0xd6, 0x7e, - 0x24, 0x67, 0x08, 0x54, 0xe3, 0x59, 0x4f, 0xed, 0xca, 0x12, 0x2a, 0x41, 0x2e, 0xd2, 0xe9, 0x7d, - 0x25, 0x67, 0x11, 0x82, 0x62, 0xb3, 0xd3, 0x6a, 0xd5, 0x7b, 0xaa, 0xc2, 0xe6, 0x03, 0xf9, 0x44, - 0xbb, 0xbe, 0xa5, 0xca, 0x39, 0xb2, 0x9a, 0x8e, 0xa6, 0xc8, 0x79, 0x2a, 0xda, 0x69, 0xb5, 0xe4, - 0x02, 0x79, 0xda, 0xd9, 0xd1, 0x14, 0xb9, 0x48, 0x60, 0xeb, 0xba, 0x5e, 0x7f, 0x26, 0x97, 0x88, - 0x50, 0x6b, 0xab, 0x3d, 0x59, 0x26, 0x4f, 0xe4, 0x03, 0xf2, 0x3c, 0x19, 0xde, 0xec, 0x76, 0xda, - 0x0d, 0x19, 0x91, 0xc7, 0xde, 0xce, 0x76, 0x4b, 0x95, 0x17, 0x08, 0x62, 0x43, 0xeb, 0xc9, 0x37, - 0x51, 0x09, 0x40, 0x6b, 0xf7, 0xd6, 0x76, 0xd5, 0x66, 0xaf, 0xa3, 0xcb, 0x2f, 0x05, 0x54, 0x84, - 0x6c, 0x47, 0x53, 0xd8, 0xfb, 0x7f, 0x0a, 0x55, 0x51, 0xba, 0x21, 0xdf, 0xa8, 0xfe, 0xb3, 0x00, - 0xb9, 0x98, 0x5f, 0xd0, 0x85, 0x74, 0xda, 0xaa, 0x3c, 0x47, 0xac, 0x42, 0xf6, 0xfb, 0x48, 0xd5, - 0x65, 0x81, 0x6c, 0xbe, 0xbb, 0x55, 0x6f, 0xb5, 0x88, 0xed, 0x12, 0x64, 0xf3, 0x0d, 0xed, 0x11, - 0x79, 0xa6, 0xf6, 0xd2, 0xd5, 0x7a, 0x4b, 0x4e, 0xa1, 0x05, 0x90, 0x95, 0xce, 0x4e, 0xa3, 0xa5, - 0xf6, 0xb7, 0x75, 0xb5, 0xa9, 0x75, 0xb5, 0x4e, 0x5b, 0x4e, 0x13, 0x98, 0xdd, 0xba, 0xde, 0xdc, - 0xa8, 0xeb, 0x72, 0x86, 0x4c, 0xa6, 0x4f, 0x12, 0x59, 0xf2, 0x13, 0xfa, 0x98, 0x25, 0x68, 0xbb, - 0x75, 0x9d, 0xac, 0x1a, 0xaa, 0xa2, 0x24, 0xca, 0xe2, 0x67, 0xe2, 0xef, 0x7f, 0x58, 0x12, 0xaa, - 0x7f, 0x10, 0xe1, 0xc6, 0xba, 0xeb, 0x61, 0xeb, 0xc0, 0x79, 0x8c, 0x4f, 0x74, 0xbc, 0x8f, 0x3d, - 0xec, 0x0c, 0x30, 0x5a, 0x86, 0x54, 0x60, 0xec, 0xd9, 0x61, 0x54, 0x17, 0x1a, 0x40, 0x9c, 0xe4, - 0xd7, 0x57, 0x4b, 0x09, 0x4d, 0xd1, 0xc3, 0x01, 0x74, 0x1f, 0x52, 0x96, 0x63, 0xe2, 0x63, 0x1a, - 0xa4, 0x85, 0x46, 0x89, 0xcd, 0xc8, 0x68, 0x44, 0x48, 0xa6, 0xd1, 0x51, 0x54, 0x06, 0xd1, 0x31, - 0x86, 0x98, 0x86, 0x6a, 0x96, 0x39, 0x1b, 0x95, 0xa0, 0xc7, 0x20, 0x1d, 0x19, 0xb6, 0x65, 0x5a, - 0xc1, 0x49, 0x59, 0xa4, 0x41, 0xf0, 0xfe, 0xa5, 0xde, 0xea, 0xf8, 0x81, 0x67, 0x58, 0x4e, 0xb0, - 0xcb, 0x14, 0x18, 0x50, 0x04, 0x80, 0x1e, 0xc0, 0xbc, 0x7f, 0x68, 0x78, 0xd8, 0xec, 0x8f, 0x3c, - 0xbc, 0x6f, 0x1d, 0xf7, 0x6d, 0xec, 0xd0, 0x90, 0xe6, 0xf4, 0x50, 0x0a, 0x87, 0xb7, 0xe9, 0x68, - 0x0b, 0x3b, 0xa8, 0x07, 0x59, 0xd7, 0xe9, 0x9b, 0xd8, 0xc6, 0x01, 0x0f, 0xef, 0x4f, 0x2e, 0xf9, - 0xfe, 0x05, 0x06, 0xaa, 0xd5, 0x07, 0x81, 0xe5, 0x3a, 0x7c, 0x1d, 0xae, 0xa3, 0x50, 0x20, 0x86, - 0x3a, 0x1e, 0x99, 0x46, 0x80, 0x59, 0x68, 0xbf, 0x09, 0xea, 0x0e, 0x05, 0x42, 0x2d, 0x48, 0x0d, - 0x8d, 0x60, 0x70, 0x58, 0x96, 0x28, 0xe2, 0x83, 0x6b, 0x20, 0x6e, 0x11, 0x3d, 0x4e, 0xa1, 0x14, - 0xa4, 0xfa, 0x14, 0xd2, 0xe1, 0x77, 0x48, 0xf4, 0xb5, 0x3b, 0xfd, 0x7a, 0xb3, 0x47, 0xdc, 0x68, - 0x8e, 0x38, 0xa0, 0xae, 0x92, 0x08, 0x6a, 0xf6, 0x98, 0x3b, 0xaa, 0xbd, 0x3e, 0x0d, 0x99, 0x04, - 0x09, 0x3a, 0xf2, 0xa6, 0xa8, 0xeb, 0xf5, 0x9d, 0x16, 0xf1, 0xc9, 0x1c, 0x64, 0x9a, 0xf5, 0x6e, - 0xb3, 0xae, 0xa8, 0xb2, 0x58, 0x11, 0x7f, 0xfa, 0xb7, 0xc5, 0xb9, 0xea, 0x3b, 0x90, 0xa2, 0x9f, - 0xa3, 0x81, 0xab, 0x6d, 0x91, 0x60, 0x99, 0x23, 0xee, 0xb8, 0x4e, 0x20, 0x04, 0x36, 0xe9, 0x7f, - 0x12, 0x20, 0x87, 0xf4, 0xa3, 0x60, 0x7f, 0xe0, 0x59, 0xa3, 0xc0, 0xf5, 0x22, 0x2f, 0x11, 0xce, - 0x79, 0xc9, 0x7b, 0x90, 0xb0, 0x4c, 0xe6, 0x63, 0xb7, 0x88, 0xfc, 0x94, 0x7a, 0xe1, 0xaf, 0xaf, - 0x96, 0xa4, 0x10, 0x45, 0x53, 0xf4, 0x84, 0x65, 0xa2, 0xcf, 0x41, 0xa4, 0x44, 0x4d, 0xfc, 0xec, - 0x1a, 0xbc, 0x47, 0x95, 0xd0, 0x32, 0x48, 0xce, 0xd8, 0xb6, 0xa9, 0xc3, 0x13, 0x57, 0x94, 0xf8, - 0x09, 0x70, 0x29, 0x21, 0x44, 0x13, 0xef, 0x1b, 0x63, 0x3b, 0xe8, 0xe3, 0xe3, 0x91, 0xc7, 0xb2, - 0x45, 0x8e, 0xc9, 0xd4, 0xe3, 0x91, 0x87, 0xee, 0x42, 0xfa, 0xd0, 0x32, 0x4d, 0xec, 0x50, 0x6f, - 0xe2, 0x10, 0x4c, 0x86, 0xd6, 0x60, 0x7e, 0xec, 0x63, 0xbf, 0xef, 0xe3, 0x17, 0x63, 0x72, 0x30, - 0x7d, 0xcb, 0xf4, 0xcb, 0xb0, 0x9c, 0x5c, 0x29, 0x34, 0xd2, 0x2c, 0xb0, 0x4a, 0x64, 0x42, 0x97, - 0x8d, 0x6b, 0x26, 0x65, 0xe1, 0x81, 0x3b, 0x1c, 0x8d, 0x03, 0x1c, 0x7e, 0x34, 0x17, 0x7e, 0x94, - 0xc9, 0xc8, 0x47, 0x37, 0x45, 0x49, 0x92, 0xb3, 0x9b, 0xa2, 0x94, 0x95, 0x61, 0x53, 0x94, 0x32, - 0xb2, 0x54, 0xfd, 0x2e, 0x01, 0xb7, 0xc2, 0x6d, 0xae, 0x1b, 0x43, 0xcb, 0x3e, 0x79, 0x53, 0x2b, - 0x87, 0x28, 0xcc, 0xca, 0x74, 0x45, 0x04, 0xbb, 0x4f, 0xd4, 0xfc, 0x72, 0x32, 0xcc, 0x0b, 0xa1, - 0xac, 0x4d, 0x44, 0xe8, 0x53, 0x00, 0x36, 0x85, 0xec, 0x50, 0xa4, 0x3b, 0xbc, 0x7d, 0xfa, 0x6a, - 0x29, 0xcb, 0x8f, 0xcb, 0x9f, 0x3a, 0xbb, 0x6c, 0x38, 0x99, 0x6c, 0xb7, 0x03, 0xf3, 0xdc, 0xc6, - 0x11, 0x02, 0x35, 0x74, 0xa1, 0xf1, 0x0e, 0x5b, 0x53, 0x49, 0x09, 0x27, 0x70, 0xf5, 0x29, 0xa8, - 0x92, 0x39, 0x35, 0x68, 0x56, 0xff, 0x3d, 0x01, 0x0b, 0x9a, 0x13, 0x60, 0xcf, 0xc6, 0xc6, 0x11, - 0x8e, 0x19, 0xe2, 0x4b, 0xc8, 0x1a, 0xce, 0x00, 0xfb, 0x81, 0xeb, 0xf9, 0x65, 0x81, 0x66, 0xca, - 0xbf, 0xbc, 0xc4, 0x63, 0x2e, 0xd2, 0xaf, 0xd5, 0x99, 0x32, 0x2f, 0x3d, 0x22, 0xb0, 0xca, 0xcf, - 0x02, 0x48, 0x7c, 0x14, 0x3d, 0x00, 0x89, 0x72, 0x25, 0xd9, 0x47, 0xc8, 0xa3, 0x37, 0xd9, 0x3e, - 0x32, 0x3d, 0x22, 0xa7, 0xeb, 0x27, 0x27, 0x9f, 0xa1, 0xd3, 0x34, 0x13, 0xfd, 0x15, 0x48, 0x94, - 0x36, 0xfb, 0xd1, 0x69, 0x54, 0xb8, 0x06, 0xe3, 0xd5, 0x38, 0xc5, 0x66, 0xe8, 0x5c, 0xcd, 0x44, - 0xcd, 0x8b, 0xd8, 0x2f, 0x49, 0xf5, 0xdf, 0xe2, 0x96, 0xeb, 0x4e, 0xf3, 0xdf, 0x39, 0x42, 0xac, - 0xfe, 0x2e, 0x09, 0xb7, 0xb6, 0x0d, 0x2f, 0xb0, 0x08, 0x35, 0x58, 0xce, 0x41, 0xcc, 0x5e, 0xf7, - 0x21, 0xe7, 0x8c, 0x87, 0xec, 0x54, 0x7c, 0xb6, 0x97, 0x70, 0xef, 0xe0, 0x8c, 0x87, 0xa1, 0xc1, - 0x7d, 0xd4, 0x02, 0xd1, 0xb6, 0xfc, 0xa0, 0x9c, 0xa0, 0x16, 0x5d, 0xbb, 0xc4, 0xa2, 0x17, 0x7f, - 0xa3, 0xd6, 0xb2, 0xfc, 0x80, 0xfb, 0x24, 0x41, 0x41, 0x1d, 0x48, 0x79, 0x86, 0x73, 0x80, 0xa9, - 0x93, 0xe5, 0xd6, 0x1e, 0x5e, 0x0f, 0x4e, 0x27, 0xaa, 0x9c, 0xf7, 0x28, 0x4e, 0xe5, 0x5f, 0x05, - 0x10, 0xc9, 0x57, 0xae, 0x88, 0x83, 0x5b, 0x90, 0x3e, 0x32, 0xec, 0x31, 0xf6, 0xe9, 0x1e, 0xf2, - 0x3a, 0x7b, 0x43, 0x7f, 0x0f, 0x25, 0x7f, 0xbc, 0x37, 0x8a, 0x7d, 0x8a, 0x11, 0xcd, 0xc7, 0xd7, - 0x5a, 0x55, 0x94, 0x8b, 0xa6, 0xb1, 0x2a, 0xcf, 0x21, 0x45, 0xd7, 0x7b, 0xc5, 0xca, 0x48, 0x45, - 0xe6, 0xf6, 0xf1, 0xf1, 0xc0, 0x1e, 0xfb, 0xd6, 0x11, 0xa6, 0xde, 0x91, 0xd7, 0x73, 0x81, 0xab, - 0x72, 0x11, 0xba, 0x0f, 0xc5, 0x7d, 0xcf, 0x1d, 0xf6, 0x2d, 0x87, 0x4f, 0x4a, 0xd2, 0x49, 0x05, - 0x22, 0xd5, 0xb8, 0xb0, 0xfa, 0x27, 0x09, 0x4a, 0xd4, 0x83, 0x66, 0x62, 0x86, 0xfb, 0x31, 0x66, - 0xb8, 0x39, 0xc5, 0x0c, 0x91, 0x1b, 0x12, 0x62, 0xb8, 0x0b, 0xe9, 0xb1, 0x63, 0xbd, 0x18, 0x87, - 0xdf, 0x8c, 0xc8, 0x2f, 0x94, 0x9d, 0xa3, 0x0d, 0xf1, 0x3c, 0x6d, 0x7c, 0x04, 0x88, 0xc4, 0x0c, - 0xee, 0x4f, 0x4d, 0x4c, 0xd1, 0x89, 0x32, 0x1d, 0x69, 0x5e, 0x4a, 0x32, 0xe9, 0x6b, 0x90, 0xcc, - 0x06, 0xc8, 0xf8, 0x38, 0xf0, 0x8c, 0x7e, 0x4c, 0x3f, 0x43, 0xf5, 0x17, 0x4f, 0x5f, 0x2d, 0x15, - 0x55, 0x32, 0x76, 0x31, 0x48, 0x11, 0xc7, 0xc6, 0x4c, 0xe2, 0x13, 0xf3, 0x0c, 0xc3, 0xb4, 0x3c, - 0x4c, 0x13, 0x6a, 0x58, 0x76, 0x5f, 0x9e, 0xa0, 0xcf, 0x98, 0xbd, 0xa6, 0x70, 0x45, 0x5d, 0x0e, - 0xa1, 0x22, 0x81, 0x8f, 0x9e, 0x40, 0x6e, 0x3f, 0xcc, 0xe7, 0xfd, 0xe7, 0xf8, 0xa4, 0x9c, 0xa5, - 0xee, 0xf6, 0xc1, 0xec, 0x99, 0x9f, 0xc7, 0xe7, 0x7e, 0x34, 0x84, 0x76, 0xa0, 0xe0, 0xf1, 0x61, - 0xb3, 0xbf, 0x77, 0x42, 0xf3, 0xcf, 0xeb, 0x80, 0xe6, 0x27, 0x30, 0x8d, 0x13, 0xf4, 0x04, 0xc0, - 0x8a, 0x58, 0x92, 0x26, 0xa9, 0xdc, 0xda, 0x87, 0xd7, 0xa0, 0x53, 0xbe, 0xd2, 0x09, 0x08, 0x7a, - 0x0a, 0xc5, 0xc9, 0x1b, 0x5d, 0x6a, 0xfe, 0x35, 0x97, 0x5a, 0x88, 0xe1, 0x34, 0x4e, 0x50, 0x0f, - 0x16, 0x48, 0xfa, 0x74, 0x7d, 0x2b, 0xc0, 0x71, 0x17, 0x28, 0x50, 0x17, 0xa8, 0x9e, 0xbe, 0x5a, - 0x42, 0x4d, 0x3e, 0x7e, 0xb1, 0x1b, 0xa0, 0xc1, 0x99, 0xf1, 0xd0, 0xa9, 0xa6, 0x9c, 0x97, 0x20, - 0x16, 0x27, 0x4e, 0xd5, 0x9d, 0xb8, 0xef, 0x39, 0xa7, 0x8a, 0xb9, 0x36, 0x41, 0x7a, 0x0a, 0xf9, - 0x29, 0x96, 0x29, 0xbd, 0x3e, 0xcb, 0x4c, 0x01, 0x21, 0x95, 0xd5, 0x47, 0x32, 0xad, 0x20, 0x3f, - 0x9c, 0xd1, 0x41, 0xcf, 0x56, 0x4a, 0xd5, 0x45, 0xc8, 0x46, 0x3e, 0x4a, 0xfa, 0xa0, 0x7a, 0xb7, - 0x19, 0xd6, 0x78, 0x8a, 0xda, 0x6d, 0xca, 0x42, 0xf5, 0x1e, 0x88, 0xb4, 0xc5, 0xc9, 0x41, 0x66, - 0xbd, 0xa3, 0x3f, 0xad, 0xeb, 0x4a, 0x58, 0x57, 0x6a, 0xed, 0x5d, 0x55, 0xef, 0xa9, 0x8a, 0x2c, - 0x54, 0x7f, 0x16, 0x60, 0x61, 0x52, 0xd1, 0xf7, 0x5c, 0x5a, 0xd3, 0x93, 0x2a, 0xd7, 0x82, 0xd2, - 0x20, 0x92, 0xf3, 0x3b, 0x85, 0xc4, 0x4a, 0x71, 0xed, 0xb3, 0xdf, 0xec, 0x0b, 0x26, 0x28, 0x71, - 0xe1, 0x64, 0xf1, 0xc5, 0xc1, 0x94, 0x34, 0xe2, 0xbb, 0xc4, 0x72, 0x62, 0x9a, 0xef, 0xaa, 0x77, - 0xa0, 0x38, 0x8d, 0x40, 0xba, 0xa8, 0xe6, 0x86, 0xda, 0x7c, 0x2c, 0xcf, 0x55, 0xff, 0x28, 0x02, - 0x9a, 0x58, 0x67, 0x6b, 0x1c, 0x18, 0xd4, 0x0e, 0x75, 0x48, 0x87, 0x07, 0x4f, 0xf9, 0x33, 0xb7, - 0xf6, 0x17, 0x57, 0x56, 0x9f, 0x13, 0x80, 0x8d, 0x39, 0x9d, 0x29, 0xa2, 0x2f, 0xe2, 0xdd, 0x54, - 0x6e, 0xed, 0xbd, 0xd9, 0xce, 0x67, 0x63, 0x8e, 0xb7, 0x59, 0x8f, 0x21, 0xe5, 0x07, 0xa4, 0xe7, - 0x48, 0xd2, 0xf3, 0x5d, 0xbd, 0x44, 0xff, 0xfc, 0xe2, 0x6b, 0x5d, 0xa2, 0xc6, 0x13, 0x25, 0xc5, - 0x40, 0x4f, 0x21, 0x1b, 0x51, 0x1a, 0x6b, 0xcd, 0x1e, 0xce, 0x0e, 0x18, 0xf9, 0x07, 0xaf, 0x8e, - 0x22, 0x2c, 0x54, 0x87, 0xdc, 0x90, 0x4d, 0x9b, 0xd4, 0x76, 0xcb, 0x2c, 0xab, 0x00, 0x47, 0xa0, - 0xd9, 0x25, 0xf6, 0xa6, 0x03, 0x57, 0xd2, 0x4c, 0x52, 0xaa, 0x7b, 0xae, 0x6d, 0xef, 0x19, 0x83, - 0xe7, 0xb4, 0xbf, 0x8a, 0x4a, 0x75, 0x2e, 0x45, 0x5b, 0x24, 0x37, 0xf0, 0x13, 0xa4, 0x1d, 0xd3, - 0xe5, 0x74, 0x74, 0x91, 0x07, 0x6d, 0xcc, 0xe9, 0x31, 0x80, 0xea, 0xdf, 0x41, 0x8a, 0x9a, 0x88, - 0xb8, 0xf4, 0x4e, 0xfb, 0x71, 0xbb, 0xf3, 0x94, 0xb4, 0x4a, 0x25, 0xc8, 0x29, 0x6a, 0x4b, 0xed, - 0xa9, 0xfd, 0x4e, 0xbb, 0xf5, 0x4c, 0x16, 0xd0, 0x6d, 0xb8, 0xc9, 0x04, 0xf5, 0xb6, 0xd2, 0x7f, - 0xaa, 0x6b, 0x7c, 0x28, 0x51, 0x5d, 0x89, 0xc7, 0xcc, 0xa4, 0xf7, 0x27, 0xd1, 0xa3, 0x28, 0xb2, - 0x40, 0xa3, 0x47, 0xef, 0x6c, 0xcb, 0x89, 0x46, 0x1e, 0xc0, 0x8c, 0x0c, 0xba, 0x29, 0x4a, 0x69, - 0x39, 0x53, 0xfd, 0xc7, 0x3b, 0x50, 0xa2, 0xd5, 0xe2, 0x4c, 0xe9, 0x7a, 0x99, 0xa6, 0xeb, 0xb0, - 0xf4, 0x93, 0xa7, 0xd2, 0x75, 0x82, 0x65, 0xea, 0x87, 0x90, 0x1d, 0x19, 0x1e, 0x76, 0x02, 0x72, - 0x02, 0xe2, 0x54, 0xc5, 0x2f, 0x6d, 0xd3, 0x81, 0x68, 0xba, 0x14, 0x4e, 0xd4, 0x88, 0x52, 0xe6, - 0x08, 0x7b, 0xf4, 0xce, 0x2d, 0x3c, 0xb4, 0xdb, 0xac, 0xdd, 0x9f, 0x9f, 0xac, 0x6a, 0x37, 0x9c, - 0xa0, 0xf3, 0x99, 0x68, 0x1b, 0xe6, 0x87, 0xae, 0x69, 0xed, 0x5b, 0x83, 0xf0, 0xc4, 0x03, 0x6b, - 0x18, 0xf6, 0xc4, 0xb9, 0xb5, 0xb7, 0x63, 0xe7, 0x31, 0x0e, 0x2c, 0xbb, 0x76, 0x68, 0x0f, 0x6a, - 0x3d, 0x7e, 0x47, 0xc9, 0x76, 0x24, 0xc7, 0xb5, 0xc9, 0x20, 0x7a, 0x04, 0x19, 0x5e, 0x83, 0x86, - 0xf7, 0x5b, 0xb3, 0x46, 0x1a, 0x43, 0xe4, 0xda, 0x68, 0x1d, 0x8a, 0x0e, 0x3e, 0x8e, 0xf7, 0x19, - 0xd9, 0x29, 0x5f, 0xcc, 0xb7, 0xf1, 0xf1, 0xc5, 0x4d, 0x46, 0xde, 0x99, 0x8c, 0x98, 0xe8, 0x09, - 0x14, 0x46, 0x9e, 0x35, 0x34, 0xbc, 0x93, 0x7e, 0x18, 0xbe, 0x70, 0x9d, 0xf0, 0x8d, 0x88, 0x3a, - 0x84, 0xa0, 0xa3, 0x68, 0x1d, 0xc2, 0xb2, 0x1e, 0xfb, 0xe5, 0x1c, 0xdd, 0xe3, 0xf5, 0xc0, 0xb8, - 0x32, 0x6a, 0x40, 0x81, 0x6e, 0x31, 0xea, 0x27, 0xf2, 0x74, 0x87, 0x8b, 0x6c, 0x87, 0x39, 0xb2, - 0xc3, 0x0b, 0x7a, 0x8a, 0x9c, 0x13, 0xc9, 0x4d, 0xb4, 0x09, 0x10, 0xdd, 0x0d, 0x93, 0x1c, 0x79, - 0x55, 0x09, 0xb2, 0xcd, 0x27, 0x4e, 0x96, 0xa4, 0xc7, 0xb4, 0xd1, 0x16, 0x64, 0x79, 0x18, 0x87, - 0xc9, 0x31, 0x77, 0xe9, 0x7d, 0xcf, 0x79, 0x52, 0xe1, 0x54, 0x12, 0x21, 0xa0, 0x36, 0xa4, 0x6c, - 0x6c, 0xf8, 0x98, 0x65, 0xc8, 0x4f, 0x2f, 0x81, 0x3a, 0x13, 0x39, 0xb5, 0xee, 0xe0, 0x10, 0x0f, - 0x8d, 0xe6, 0x21, 0xa9, 0xb6, 0x5b, 0x44, 0x5f, 0x0f, 0x61, 0x50, 0x1b, 0x64, 0x6a, 0xae, 0x38, - 0x3f, 0xc9, 0xd4, 0x62, 0xef, 0x32, 0x8b, 0x15, 0x89, 0xc5, 0x2e, 0xe5, 0x28, 0xea, 0x4f, 0x5b, - 0x13, 0x9e, 0xfa, 0x5b, 0x28, 0xee, 0xbb, 0xde, 0xd0, 0x08, 0xfa, 0x3c, 0x70, 0xe6, 0x27, 0x35, - 0xf4, 0xaf, 0xaf, 0x96, 0x0a, 0xeb, 0x74, 0x94, 0x07, 0x4d, 0x61, 0x3f, 0xfe, 0x8a, 0x36, 0x38, - 0x9d, 0xdf, 0xa0, 0xec, 0xfb, 0xd1, 0xac, 0xbb, 0x3b, 0xcf, 0xe5, 0x6d, 0x48, 0x0f, 0x0e, 0xf1, - 0xe0, 0xb9, 0x5f, 0x5e, 0xa0, 0x36, 0xff, 0xeb, 0x19, 0xa1, 0x9a, 0x44, 0x69, 0x42, 0x8f, 0x3a, - 0x43, 0x41, 0x5f, 0x43, 0xd1, 0x24, 0x12, 0xcb, 0x39, 0x60, 0x35, 0xfa, 0x4d, 0x8a, 0xbb, 0x3a, - 0x23, 0x2e, 0xa9, 0xdf, 0x35, 0x67, 0xdf, 0xe5, 0xe5, 0x19, 0x07, 0x0b, 0xeb, 0xfa, 0x0e, 0x48, - 0xfb, 0xc6, 0xd0, 0xb2, 0x2d, 0xec, 0x97, 0x6f, 0x51, 0xdc, 0xab, 0xaf, 0xdc, 0xcf, 0x5e, 0x71, - 0xf0, 0x64, 0xc0, 0x41, 0xa2, 0x40, 0xa7, 0x82, 0x13, 0x72, 0xa8, 0x6f, 0x9d, 0x0f, 0x74, 0x7e, - 0xc5, 0x31, 0x75, 0xdd, 0x41, 0x03, 0x9d, 0xbd, 0x99, 0xe8, 0x1d, 0x80, 0x23, 0x0b, 0x7f, 0xdb, - 0x7f, 0x31, 0xc6, 0xde, 0x49, 0xb9, 0x1c, 0xe3, 0xdd, 0x2c, 0x91, 0x3f, 0x21, 0x62, 0xf4, 0x09, - 0x64, 0x4d, 0x3c, 0xc2, 0x8e, 0xe9, 0x77, 0x9c, 0xf2, 0x6d, 0x5a, 0xff, 0xdd, 0x20, 0x4d, 0x89, - 0xc2, 0x85, 0x8c, 0x57, 0x27, 0xb3, 0xd0, 0x37, 0x90, 0x0f, 0x5f, 0xb0, 0xd9, 0x71, 0x1a, 0x27, - 0xe5, 0x0a, 0xdd, 0xf4, 0x83, 0x19, 0x8d, 0x39, 0x29, 0x76, 0x17, 0xf8, 0x7e, 0x94, 0x18, 0x9a, - 0x3e, 0x85, 0x8d, 0xbe, 0x86, 0x3c, 0xf7, 0xee, 0x4d, 0x77, 0xcf, 0x2f, 0xdf, 0xb9, 0xb2, 0x4d, - 0x3f, 0xfb, 0xad, 0xad, 0x89, 0x2a, 0xe7, 0xad, 0x38, 0x1a, 0xfa, 0x12, 0x0a, 0xd1, 0xdd, 0x96, - 0x3b, 0x0a, 0xfc, 0xf2, 0x5d, 0x1a, 0x98, 0x0f, 0x67, 0x75, 0x5d, 0xa6, 0xdb, 0x19, 0x05, 0xbe, - 0x9e, 0xf7, 0x63, 0x6f, 0xe8, 0x1e, 0x64, 0x4d, 0xcf, 0x1d, 0x85, 0xf9, 0xe3, 0xed, 0x65, 0x61, - 0x25, 0xc9, 0x8f, 0x99, 0x88, 0x69, 0x62, 0xe8, 0x43, 0xd1, 0xc3, 0x23, 0xdb, 0x18, 0xe0, 0x21, - 0xc9, 0x6c, 0xee, 0x7e, 0x79, 0x91, 0x7e, 0x7d, 0x6d, 0x66, 0x43, 0x46, 0xca, 0xdc, 0x31, 0x63, - 0x78, 0x9d, 0x7d, 0xb4, 0x03, 0x60, 0x8c, 0x4d, 0x2b, 0xe8, 0x0f, 0x5d, 0x13, 0x97, 0x97, 0xae, - 0xbc, 0x86, 0x3d, 0x0b, 0x5e, 0x27, 0x8a, 0x5b, 0xae, 0x89, 0xa3, 0xeb, 0x22, 0x2e, 0x40, 0x9f, - 0x40, 0x8e, 0x6e, 0xed, 0x1b, 0x77, 0x8f, 0xf8, 0xe6, 0x32, 0xdd, 0xdc, 0x3c, 0x3b, 0xcb, 0xac, - 0xe2, 0xb9, 0xa3, 0x4d, 0x77, 0x8f, 0x7a, 0x0c, 0x7b, 0x34, 0x91, 0x0f, 0xf9, 0x83, 0x41, 0x7f, - 0x42, 0xa5, 0xf7, 0xe8, 0x29, 0x7e, 0x3e, 0xe3, 0x5a, 0x1e, 0x35, 0x2f, 0x20, 0xd7, 0x1b, 0x3c, - 0x27, 0x3c, 0x6a, 0x72, 0x99, 0xaf, 0xe7, 0x0e, 0x06, 0xd1, 0x4b, 0xe5, 0x47, 0x01, 0xe6, 0xcf, - 0x51, 0x27, 0xfa, 0x07, 0xc8, 0x38, 0xae, 0x19, 0xbb, 0xde, 0x52, 0x19, 0x50, 0xba, 0xed, 0x9a, - 0xe1, 0xed, 0xd6, 0xc3, 0x03, 0x2b, 0x38, 0x1c, 0xef, 0xd5, 0x06, 0xee, 0x70, 0x35, 0x5a, 0xa1, - 0xb9, 0x37, 0x79, 0x5e, 0x1d, 0x3d, 0x3f, 0x58, 0xa5, 0x4f, 0xa3, 0xbd, 0x5a, 0xa8, 0xa6, 0xa7, - 0x09, 0xaa, 0x66, 0xa2, 0x8f, 0xa1, 0x84, 0x8f, 0x47, 0x96, 0x17, 0x2b, 0x1f, 0x12, 0xb1, 0xe3, - 0x2f, 0x4e, 0x06, 0x89, 0x13, 0x54, 0x7e, 0x11, 0xa0, 0x74, 0x86, 0xb6, 0x48, 0xa5, 0x44, 0xaf, - 0x4e, 0xa7, 0x2a, 0x25, 0x22, 0x89, 0xb5, 0x00, 0x57, 0xfd, 0x98, 0x48, 0xbe, 0xe9, 0x8f, 0x89, - 0xe9, 0x9b, 0x8a, 0xd4, 0xec, 0x37, 0x15, 0x9b, 0xa2, 0x24, 0xca, 0xa9, 0xca, 0x33, 0x90, 0x38, - 0x65, 0x4e, 0x97, 0x6e, 0xc2, 0x8c, 0xa5, 0xdb, 0xa5, 0xfb, 0xac, 0x7c, 0x2f, 0x40, 0x36, 0xfe, - 0xc7, 0x27, 0x11, 0xa1, 0x5e, 0x5c, 0x39, 0xbe, 0xe6, 0xe5, 0xe4, 0xb4, 0x05, 0x92, 0xb3, 0x5b, - 0xa0, 0x72, 0x04, 0xb9, 0x18, 0xeb, 0x9c, 0xed, 0x1e, 0x84, 0xd7, 0xe8, 0x1e, 0xde, 0x85, 0x34, - 0x0b, 0xb5, 0xd0, 0x91, 0x0a, 0x4c, 0x3b, 0x15, 0x86, 0x59, 0xea, 0x1b, 0x12, 0x62, 0x95, 0xff, - 0x10, 0x20, 0x1f, 0xe7, 0x23, 0x54, 0x85, 0xac, 0xe5, 0x0c, 0x3c, 0x4a, 0x06, 0xf4, 0xbb, 0xdc, - 0x05, 0x27, 0x62, 0xc2, 0x52, 0x43, 0xcb, 0xe9, 0xd3, 0x0b, 0xc3, 0x29, 0x37, 0x95, 0x86, 0x96, - 0xb3, 0x4b, 0xa4, 0x74, 0x8a, 0x71, 0xcc, 0xa6, 0x24, 0xa7, 0xa6, 0x18, 0xc7, 0xe1, 0x94, 0x0a, - 0x4d, 0xfc, 0x5e, 0x40, 0x2b, 0xf3, 0x64, 0x2c, 0x95, 0x7b, 0x01, 0x5a, 0x84, 0xcc, 0x91, 0xe5, - 0x05, 0x63, 0xc3, 0xa6, 0x45, 0x38, 0xef, 0x7c, 0xb8, 0xb0, 0x72, 0x08, 0xb9, 0x18, 0x8f, 0xcd, - 0x70, 0xa0, 0x7f, 0x03, 0x62, 0x14, 0x54, 0x33, 0xd6, 0xe4, 0x54, 0xa1, 0xf2, 0x2f, 0x02, 0x2c, - 0x5c, 0xc4, 0x24, 0x53, 0x2e, 0x12, 0xda, 0x69, 0x26, 0x17, 0x99, 0x62, 0xf8, 0xc4, 0x85, 0x0c, - 0x3f, 0x39, 0xb9, 0xe4, 0xe5, 0x27, 0x57, 0x7d, 0x8f, 0x37, 0x6b, 0x00, 0xe9, 0xed, 0x9d, 0x46, - 0x4b, 0x6b, 0x5e, 0xd8, 0x68, 0x91, 0x96, 0x2c, 0x62, 0x65, 0x94, 0x07, 0x49, 0xd1, 0xba, 0xf5, - 0x46, 0x4b, 0x55, 0xe4, 0x39, 0x54, 0x80, 0xac, 0xae, 0xd6, 0x15, 0xda, 0xc1, 0xc9, 0xc2, 0x67, - 0xe2, 0x77, 0x3f, 0x2c, 0x09, 0x61, 0x2b, 0xb6, 0x29, 0x4a, 0x48, 0xbe, 0x51, 0xfd, 0x51, 0x00, - 0xa4, 0x18, 0x81, 0x41, 0x18, 0xe0, 0x1a, 0x3d, 0x59, 0xe2, 0x8a, 0x83, 0x98, 0xae, 0xb3, 0x93, - 0x6f, 0x52, 0x67, 0x87, 0x0b, 0xae, 0x7e, 0x2f, 0x00, 0xc4, 0x16, 0xf7, 0x45, 0xfc, 0x77, 0xee, - 0xe5, 0x2d, 0xc5, 0x99, 0x6c, 0xb1, 0x31, 0xc7, 0x7f, 0xf6, 0x3e, 0x02, 0xc9, 0x64, 0x5b, 0x66, - 0xde, 0x72, 0x69, 0xed, 0x7e, 0xce, 0x32, 0x1b, 0xe4, 0x18, 0x99, 0xb4, 0x91, 0x81, 0xd4, 0xd8, - 0xb1, 0x5c, 0xe7, 0x03, 0x05, 0xd0, 0x79, 0xf6, 0x24, 0xc6, 0xe7, 0x6d, 0xb8, 0x19, 0x76, 0xd9, - 0x3b, 0xce, 0x51, 0x24, 0x10, 0x50, 0x11, 0x80, 0x8d, 0x5b, 0xce, 0x81, 0x9c, 0x68, 0xdc, 0x7b, - 0xf9, 0x7f, 0x8b, 0x73, 0x2f, 0x4f, 0x17, 0x85, 0xff, 0x3a, 0x5d, 0x14, 0xfe, 0xfb, 0x74, 0x51, - 0xf8, 0xdf, 0xd3, 0x45, 0xe1, 0x9f, 0xfe, 0x7f, 0x71, 0xee, 0xab, 0x0c, 0x5b, 0xd0, 0x9f, 0x03, - 0x00, 0x00, 0xff, 0xff, 0x4b, 0x20, 0x83, 0xc3, 0x39, 0x23, 0x00, 0x00, + proto.RegisterFile("sql/sqlbase/structured.proto", fileDescriptor_structured_0d1c6fcaf41ee6c3) +} + +var fileDescriptor_structured_0d1c6fcaf41ee6c3 = []byte{ + // 3269 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x59, 0xcd, 0x73, 0xdb, 0xd6, + 0x76, 0x17, 0x48, 0x90, 0x04, 0x0f, 0xbf, 0xa0, 0x6b, 0xd9, 0xa1, 0x69, 0x47, 0x92, 0x99, 0x38, + 0x55, 0xbe, 0x28, 0x47, 0xee, 0x47, 0x26, 0xe9, 0x64, 0x4a, 0x12, 0x90, 0x05, 0x99, 0x22, 0x65, + 0x90, 0x92, 0xe3, 0x4c, 0x5a, 0x0e, 0x44, 0x5c, 0x49, 0x88, 0x41, 0x80, 0x06, 0x40, 0x45, 0xfa, + 0x0f, 0xb2, 0xea, 0x74, 0xba, 0x68, 0x77, 0x99, 0x4c, 0xa6, 0x8b, 0xcc, 0x74, 0xdb, 0x45, 0xfe, + 0x04, 0x77, 0xd7, 0xc9, 0xaa, 0x9b, 0x7a, 0x5a, 0x75, 0xde, 0xcc, 0xdb, 0xbe, 0x6d, 0xe6, 0xbd, + 0x99, 0x37, 0xf7, 0xe2, 0x5e, 0x10, 0xd4, 0x57, 0x28, 0x7b, 0x07, 0x9c, 0x7b, 0xcf, 0x0f, 0xf7, + 0x9e, 0x7b, 0xce, 0xef, 0x9c, 0x73, 0x01, 0x77, 0xfd, 0x17, 0xf6, 0xaa, 0xff, 0xc2, 0xde, 0x33, + 0x7c, 0xbc, 0xea, 0x07, 0xde, 0x78, 0x10, 0x8c, 0x3d, 0x6c, 0xd6, 0x46, 0x9e, 0x1b, 0xb8, 0xe8, + 0xe6, 0xc0, 0x1d, 0x3c, 0xf7, 0x5c, 0x63, 0x70, 0x58, 0xf3, 0x5f, 0xd8, 0x35, 0x36, 0xaf, 0x52, + 0x1e, 0x07, 0x96, 0xbd, 0x7a, 0x68, 0x0f, 0x56, 0x03, 0x6b, 0x88, 0xfd, 0xc0, 0x18, 0x8e, 0x42, + 0x85, 0xca, 0x9d, 0x38, 0xdc, 0xc8, 0xb3, 0x8e, 0x2c, 0x1b, 0x1f, 0x60, 0x36, 0xb8, 0x70, 0xe0, + 0x1e, 0xb8, 0xf4, 0x71, 0x95, 0x3c, 0x85, 0xd2, 0xea, 0x2f, 0x19, 0x80, 0xa6, 0x6b, 0x8f, 0x87, + 0x4e, 0xef, 0x64, 0x84, 0xd1, 0x33, 0x28, 0xf8, 0x78, 0x68, 0x38, 0x81, 0x35, 0xe8, 0x07, 0x27, + 0x23, 0x5c, 0x16, 0x96, 0x85, 0x95, 0xe2, 0x5a, 0xad, 0x76, 0xe1, 0x52, 0x6a, 0x13, 0xcd, 0x5a, + 0x97, 0xa9, 0x91, 0x97, 0x86, 0xf8, 0xf2, 0xd5, 0xd2, 0x9c, 0x9e, 0xf7, 0x63, 0x32, 0x54, 0x81, + 0xd4, 0xb7, 0x96, 0x19, 0x1c, 0x96, 0x13, 0xcb, 0xc2, 0x4a, 0x8a, 0x4d, 0x09, 0x45, 0xa8, 0x0a, + 0xd9, 0x91, 0x87, 0x07, 0x96, 0x6f, 0xb9, 0x4e, 0x39, 0x19, 0x1b, 0x9f, 0x88, 0xd1, 0xfb, 0x20, + 0x1b, 0x9e, 0x67, 0x9c, 0xf4, 0x4d, 0x6b, 0x88, 0x1d, 0x22, 0xf2, 0xcb, 0xe2, 0x72, 0x72, 0x25, + 0xa5, 0x97, 0xa8, 0x5c, 0x89, 0xc4, 0xe8, 0x16, 0xa4, 0x6d, 0x77, 0x60, 0xd8, 0xb8, 0x9c, 0x5a, + 0x16, 0x56, 0xb2, 0x3a, 0x7b, 0x43, 0xbb, 0x90, 0x3f, 0xb2, 0x7c, 0x6b, 0xcf, 0xc6, 0xe1, 0xe6, + 0xd2, 0x74, 0x73, 0x1f, 0xff, 0xf6, 0xe6, 0x76, 0x43, 0xad, 0xd8, 0xde, 0x72, 0x47, 0x13, 0x11, + 0xda, 0x81, 0x62, 0xb8, 0xb4, 0x81, 0xeb, 0x04, 0xd8, 0x09, 0xfc, 0x72, 0xe6, 0x75, 0xcc, 0xa6, + 0x17, 0x28, 0x4a, 0x93, 0x81, 0xa0, 0x36, 0x14, 0x83, 0xf1, 0xc8, 0xc6, 0x13, 0x58, 0x69, 0x39, + 0xb9, 0x92, 0x5b, 0xbb, 0xf7, 0x9b, 0xb0, 0x6c, 0x91, 0x05, 0xaa, 0x1e, 0xe1, 0xdd, 0x83, 0x7c, + 0x88, 0x67, 0x1b, 0x7b, 0xd8, 0xf6, 0xcb, 0xd9, 0xe5, 0xe4, 0x4a, 0x56, 0xcf, 0x51, 0x59, 0x8b, + 0x8a, 0xaa, 0x3f, 0x25, 0x20, 0x1f, 0x5f, 0x12, 0x92, 0x40, 0x6c, 0x74, 0x3a, 0x2d, 0x79, 0x0e, + 0x65, 0x20, 0xa9, 0xb5, 0x7b, 0xb2, 0x80, 0xb2, 0x90, 0x5a, 0x6f, 0x75, 0xea, 0x3d, 0x39, 0x81, + 0x72, 0x90, 0x51, 0xd4, 0xa6, 0xb6, 0x55, 0x6f, 0xc9, 0x49, 0x32, 0x55, 0xa9, 0xf7, 0x54, 0x59, + 0x44, 0x05, 0xc8, 0xf6, 0xb4, 0x2d, 0xb5, 0xdb, 0xab, 0x6f, 0x6d, 0xcb, 0x29, 0x94, 0x07, 0x49, + 0x6b, 0xf7, 0x54, 0x7d, 0xb7, 0xde, 0x92, 0xd3, 0x08, 0x20, 0xdd, 0xed, 0xe9, 0x5a, 0xfb, 0x91, + 0x9c, 0x21, 0x50, 0x8d, 0x67, 0x3d, 0xb5, 0x2b, 0x4b, 0xa8, 0x04, 0xb9, 0x48, 0xa7, 0xf7, 0x95, + 0x9c, 0x45, 0x08, 0x8a, 0xcd, 0x4e, 0xab, 0x55, 0xef, 0xa9, 0x0a, 0x9b, 0x0f, 0xe4, 0x13, 0xed, + 0xfa, 0x96, 0x2a, 0xe7, 0xc8, 0x6a, 0x3a, 0x9a, 0x22, 0xe7, 0xa9, 0x68, 0xa7, 0xd5, 0x92, 0x0b, + 0xe4, 0x69, 0x67, 0x47, 0x53, 0xe4, 0x22, 0x81, 0xad, 0xeb, 0x7a, 0xfd, 0x99, 0x5c, 0x22, 0x42, + 0xad, 0xad, 0xf6, 0x64, 0x99, 0x3c, 0x91, 0x0f, 0xc8, 0xf3, 0x64, 0x78, 0xb3, 0xdb, 0x69, 0x37, + 0x64, 0x44, 0x1e, 0x7b, 0x3b, 0xdb, 0x2d, 0x55, 0x5e, 0x20, 0x88, 0x0d, 0xad, 0x27, 0xdf, 0x44, + 0x25, 0x00, 0xad, 0xdd, 0x5b, 0xdb, 0x55, 0x9b, 0xbd, 0x8e, 0x2e, 0xbf, 0x14, 0x50, 0x11, 0xb2, + 0x1d, 0x4d, 0x61, 0xef, 0xff, 0x29, 0x54, 0x45, 0xe9, 0x86, 0x7c, 0xa3, 0xfa, 0xcf, 0x02, 0xe4, + 0x62, 0x7e, 0x41, 0x17, 0xd2, 0x69, 0xab, 0xf2, 0x1c, 0xb1, 0x0a, 0xd9, 0xef, 0x23, 0x55, 0x97, + 0x05, 0xb2, 0xf9, 0xee, 0x56, 0xbd, 0xd5, 0x22, 0xb6, 0x4b, 0x90, 0xcd, 0x37, 0xb4, 0x47, 0xe4, + 0x99, 0xda, 0x4b, 0x57, 0xeb, 0x2d, 0x39, 0x85, 0x16, 0x40, 0x56, 0x3a, 0x3b, 0x8d, 0x96, 0xda, + 0xdf, 0xd6, 0xd5, 0xa6, 0xd6, 0xd5, 0x3a, 0x6d, 0x39, 0x4d, 0x60, 0x76, 0xeb, 0x7a, 0x73, 0xa3, + 0xae, 0xcb, 0x19, 0x32, 0x99, 0x3e, 0x49, 0x64, 0xc9, 0x4f, 0xe8, 0x63, 0x96, 0xa0, 0xed, 0xd6, + 0x75, 0xb2, 0x6a, 0xa8, 0x8a, 0x92, 0x28, 0x8b, 0x9f, 0x89, 0xbf, 0xff, 0x61, 0x49, 0xa8, 0xfe, + 0x51, 0x84, 0x1b, 0xeb, 0xae, 0x87, 0xad, 0x03, 0xe7, 0x31, 0x3e, 0xd1, 0xf1, 0x3e, 0xf6, 0xb0, + 0x33, 0xc0, 0x68, 0x19, 0x52, 0x81, 0xb1, 0x67, 0x87, 0x51, 0x5d, 0x68, 0x00, 0x71, 0x92, 0x5f, + 0x5f, 0x2d, 0x25, 0x34, 0x45, 0x0f, 0x07, 0xd0, 0x7d, 0x48, 0x59, 0x8e, 0x89, 0x8f, 0x69, 0x90, + 0x16, 0x1a, 0x25, 0x36, 0x23, 0xa3, 0x11, 0x21, 0x99, 0x46, 0x47, 0x51, 0x19, 0x44, 0xc7, 0x18, + 0x62, 0x1a, 0xaa, 0x59, 0xe6, 0x6c, 0x54, 0x82, 0x1e, 0x83, 0x74, 0x64, 0xd8, 0x96, 0x69, 0x05, + 0x27, 0x65, 0x91, 0x06, 0xc1, 0xfb, 0x97, 0x7a, 0xab, 0xe3, 0x07, 0x9e, 0x61, 0x39, 0xc1, 0x2e, + 0x53, 0x60, 0x40, 0x11, 0x00, 0x7a, 0x00, 0xf3, 0xfe, 0xa1, 0xe1, 0x61, 0xb3, 0x3f, 0xf2, 0xf0, + 0xbe, 0x75, 0xdc, 0xb7, 0xb1, 0x43, 0x43, 0x9a, 0xd3, 0x43, 0x29, 0x1c, 0xde, 0xa6, 0xa3, 0x2d, + 0xec, 0xa0, 0x1e, 0x64, 0x5d, 0xa7, 0x6f, 0x62, 0x1b, 0x07, 0x3c, 0xbc, 0x3f, 0xb9, 0xe4, 0xfb, + 0x17, 0x18, 0xa8, 0x56, 0x1f, 0x04, 0x96, 0xeb, 0xf0, 0x75, 0xb8, 0x8e, 0x42, 0x81, 0x18, 0xea, + 0x78, 0x64, 0x1a, 0x01, 0x66, 0xa1, 0xfd, 0x26, 0xa8, 0x3b, 0x14, 0x08, 0xb5, 0x20, 0x35, 0x34, + 0x82, 0xc1, 0x61, 0x59, 0xa2, 0x88, 0x0f, 0xae, 0x81, 0xb8, 0x45, 0xf4, 0x38, 0x85, 0x52, 0x90, + 0xea, 0x53, 0x48, 0x87, 0xdf, 0x21, 0xd1, 0xd7, 0xee, 0xf4, 0xeb, 0xcd, 0x1e, 0x71, 0xa3, 0x39, + 0xe2, 0x80, 0xba, 0x4a, 0x22, 0xa8, 0xd9, 0x63, 0xee, 0xa8, 0xf6, 0xfa, 0x34, 0x64, 0x12, 0x24, + 0xe8, 0xc8, 0x9b, 0xa2, 0xae, 0xd7, 0x77, 0x5a, 0xc4, 0x27, 0x73, 0x90, 0x69, 0xd6, 0xbb, 0xcd, + 0xba, 0xa2, 0xca, 0x62, 0x45, 0xfc, 0xe9, 0xdf, 0x16, 0xe7, 0xaa, 0x0f, 0x20, 0x45, 0x3f, 0x47, + 0x03, 0x57, 0xdb, 0x22, 0xc1, 0x32, 0x47, 0xdc, 0x71, 0x9d, 0x40, 0x08, 0x44, 0x63, 0xbb, 0xae, + 0xf7, 0xb4, 0x7a, 0x4b, 0x4e, 0x30, 0x8d, 0xff, 0x49, 0x80, 0x1c, 0x72, 0x91, 0x82, 0xfd, 0x81, + 0x67, 0x8d, 0x02, 0xd7, 0x8b, 0x5c, 0x46, 0x38, 0xe7, 0x32, 0xef, 0x41, 0xc2, 0x32, 0x99, 0xc3, + 0xdd, 0x22, 0xf2, 0x53, 0xea, 0x92, 0xbf, 0xbe, 0x5a, 0x92, 0x42, 0x14, 0x4d, 0xd1, 0x13, 0x96, + 0x89, 0x3e, 0x07, 0x91, 0xb2, 0x36, 0x71, 0xba, 0x6b, 0x90, 0x20, 0x55, 0x42, 0xcb, 0x20, 0x39, + 0x63, 0xdb, 0xa6, 0xde, 0x4f, 0xfc, 0x52, 0xe2, 0xc7, 0xc1, 0xa5, 0x84, 0x1d, 0x4d, 0xbc, 0x6f, + 0x8c, 0xed, 0xa0, 0x8f, 0x8f, 0x47, 0x1e, 0x4b, 0x1d, 0x39, 0x26, 0x53, 0x8f, 0x47, 0x1e, 0xba, + 0x0b, 0xe9, 0x43, 0xcb, 0x34, 0xb1, 0x43, 0x5d, 0x8b, 0x43, 0x30, 0x19, 0x5a, 0x83, 0xf9, 0xb1, + 0x8f, 0xfd, 0xbe, 0x8f, 0x5f, 0x8c, 0xc9, 0x29, 0xf5, 0x2d, 0xd3, 0x2f, 0xc3, 0x72, 0x72, 0xa5, + 0xd0, 0x48, 0xb3, 0x28, 0x2b, 0x91, 0x09, 0x5d, 0x36, 0xae, 0x99, 0x94, 0x92, 0x07, 0xee, 0x70, + 0x34, 0x0e, 0x70, 0xf8, 0xd1, 0x5c, 0xf8, 0x51, 0x26, 0x23, 0x1f, 0xdd, 0x14, 0x25, 0x49, 0xce, + 0x6e, 0x8a, 0x52, 0x56, 0x86, 0x4d, 0x51, 0xca, 0xc8, 0x52, 0xf5, 0xbb, 0x04, 0xdc, 0x0a, 0xb7, + 0xb9, 0x6e, 0x0c, 0x2d, 0xfb, 0xe4, 0x4d, 0xad, 0x1c, 0xa2, 0x30, 0x2b, 0xd3, 0x15, 0x11, 0xec, + 0x3e, 0x51, 0xf3, 0xcb, 0xc9, 0x30, 0x49, 0x84, 0xb2, 0x36, 0x11, 0xa1, 0x4f, 0x01, 0xd8, 0x14, + 0xb2, 0x43, 0x91, 0xee, 0xf0, 0xf6, 0xe9, 0xab, 0xa5, 0x2c, 0x3f, 0x2e, 0x7f, 0xea, 0xec, 0xb2, + 0xe1, 0x64, 0xb2, 0xdd, 0x0e, 0xcc, 0x73, 0x1b, 0x47, 0x08, 0xd4, 0xd0, 0x85, 0xc6, 0x3b, 0x6c, + 0x4d, 0x25, 0x25, 0x9c, 0xc0, 0xd5, 0xa7, 0xa0, 0x4a, 0xe6, 0xd4, 0xa0, 0x59, 0xfd, 0xf7, 0x04, + 0x2c, 0x68, 0x4e, 0x80, 0x3d, 0x1b, 0x1b, 0x47, 0x38, 0x66, 0x88, 0x2f, 0x21, 0x6b, 0x38, 0x03, + 0xec, 0x07, 0xae, 0xe7, 0x97, 0x05, 0x9a, 0x36, 0xff, 0xf2, 0x12, 0x8f, 0xb9, 0x48, 0xbf, 0x56, + 0x67, 0xca, 0xbc, 0x0e, 0x89, 0xc0, 0x2a, 0x3f, 0x0b, 0x20, 0xf1, 0x51, 0xf4, 0x00, 0x24, 0x4a, + 0x9c, 0x64, 0x1f, 0x21, 0xa9, 0xde, 0x64, 0xfb, 0xc8, 0xf4, 0x88, 0x9c, 0xae, 0x9f, 0x9c, 0x7c, + 0x86, 0x4e, 0xd3, 0x4c, 0xf4, 0x57, 0x20, 0x51, 0x0e, 0xed, 0x47, 0xa7, 0x51, 0xe1, 0x1a, 0x8c, + 0x64, 0xe3, 0x7c, 0x9b, 0xa1, 0x73, 0x35, 0x13, 0x35, 0x2f, 0xa2, 0xc2, 0x24, 0xd5, 0x7f, 0x8b, + 0x5b, 0xae, 0x3b, 0x4d, 0x86, 0xe7, 0xd8, 0xb1, 0xfa, 0xbb, 0x24, 0xdc, 0xda, 0x36, 0xbc, 0xc0, + 0x22, 0x3c, 0x61, 0x39, 0x07, 0x31, 0x7b, 0xdd, 0x87, 0x9c, 0x33, 0x1e, 0xb2, 0x53, 0xf1, 0xd9, + 0x5e, 0xc2, 0xbd, 0x83, 0x33, 0x1e, 0x86, 0x06, 0xf7, 0x51, 0x0b, 0x44, 0xdb, 0xf2, 0x83, 0x72, + 0x82, 0x5a, 0x74, 0xed, 0x12, 0x8b, 0x5e, 0xfc, 0x8d, 0x5a, 0xcb, 0xf2, 0x03, 0xee, 0x93, 0x04, + 0x05, 0x75, 0x20, 0xe5, 0x19, 0xce, 0x01, 0xa6, 0x4e, 0x96, 0x5b, 0x7b, 0x78, 0x3d, 0x38, 0x9d, + 0xa8, 0x72, 0x12, 0xa4, 0x38, 0x95, 0x7f, 0x15, 0x40, 0x24, 0x5f, 0xb9, 0x22, 0x0e, 0x6e, 0x41, + 0xfa, 0xc8, 0xb0, 0xc7, 0xd8, 0xa7, 0x7b, 0xc8, 0xeb, 0xec, 0x0d, 0xfd, 0x3d, 0x94, 0xfc, 0xf1, + 0xde, 0x28, 0xf6, 0x29, 0x46, 0x34, 0x1f, 0x5f, 0x6b, 0x55, 0x51, 0x62, 0x9a, 0xc6, 0xaa, 0x3c, + 0x87, 0x14, 0x5d, 0xef, 0x15, 0x2b, 0x23, 0xe5, 0x99, 0xdb, 0xc7, 0xc7, 0x03, 0x7b, 0xec, 0x5b, + 0x47, 0x98, 0x7a, 0x47, 0x5e, 0xcf, 0x05, 0xae, 0xca, 0x45, 0xe8, 0x3e, 0x14, 0xf7, 0x3d, 0x77, + 0xd8, 0xb7, 0x1c, 0x3e, 0x29, 0x49, 0x27, 0x15, 0x88, 0x54, 0xe3, 0xc2, 0xea, 0x9f, 0x24, 0x28, + 0x51, 0x0f, 0x9a, 0x89, 0x19, 0xee, 0xc7, 0x98, 0xe1, 0xe6, 0x14, 0x33, 0x44, 0x6e, 0x48, 0x88, + 0xe1, 0x2e, 0xa4, 0xc7, 0x8e, 0xf5, 0x62, 0x1c, 0x7e, 0x33, 0x22, 0xbf, 0x50, 0x76, 0x8e, 0x36, + 0xc4, 0xf3, 0xb4, 0xf1, 0x11, 0x20, 0x12, 0x33, 0xb8, 0x3f, 0x35, 0x31, 0x45, 0x27, 0xca, 0x74, + 0xa4, 0x79, 0x29, 0xc9, 0xa4, 0xaf, 0x41, 0x32, 0x1b, 0x20, 0xe3, 0xe3, 0xc0, 0x33, 0xfa, 0x31, + 0xfd, 0x0c, 0xd5, 0x5f, 0x3c, 0x7d, 0xb5, 0x54, 0x54, 0xc9, 0xd8, 0xc5, 0x20, 0x45, 0x1c, 0x1b, + 0x33, 0x89, 0x4f, 0xcc, 0x33, 0x0c, 0xd3, 0xf2, 0x30, 0xcd, 0xae, 0x61, 0x0d, 0x7e, 0x79, 0xb6, + 0x3e, 0x63, 0xf6, 0x9a, 0xc2, 0x15, 0x75, 0x39, 0x84, 0x8a, 0x04, 0x3e, 0x7a, 0x02, 0xb9, 0xfd, + 0x30, 0xb9, 0xf7, 0x9f, 0xe3, 0x93, 0x72, 0x96, 0xba, 0xdb, 0x07, 0xb3, 0x97, 0x01, 0x3c, 0x3e, + 0xf7, 0xa3, 0x21, 0xb4, 0x03, 0x05, 0x8f, 0x0f, 0x9b, 0xfd, 0xbd, 0x13, 0x9a, 0x7f, 0x5e, 0x07, + 0x34, 0x3f, 0x81, 0x69, 0x9c, 0xa0, 0x27, 0x00, 0x56, 0xc4, 0x92, 0x34, 0x49, 0xe5, 0xd6, 0x3e, + 0xbc, 0x06, 0x9d, 0xf2, 0x95, 0x4e, 0x40, 0xd0, 0x53, 0x28, 0x4e, 0xde, 0xe8, 0x52, 0xf3, 0xaf, + 0xb9, 0xd4, 0x42, 0x0c, 0xa7, 0x71, 0x82, 0x7a, 0xb0, 0x40, 0xd2, 0xa7, 0xeb, 0x5b, 0x01, 0x8e, + 0xbb, 0x40, 0x81, 0xba, 0x40, 0xf5, 0xf4, 0xd5, 0x12, 0x6a, 0xf2, 0xf1, 0x8b, 0xdd, 0x00, 0x0d, + 0xce, 0x8c, 0x87, 0x4e, 0x35, 0xe5, 0xbc, 0x04, 0xb1, 0x38, 0x71, 0xaa, 0xee, 0xc4, 0x7d, 0xcf, + 0x39, 0x55, 0xcc, 0xb5, 0x09, 0xd2, 0x53, 0xc8, 0x4f, 0xb1, 0x4c, 0xe9, 0xf5, 0x59, 0x66, 0x0a, + 0x08, 0xa9, 0xac, 0x3e, 0x92, 0x69, 0x39, 0xf9, 0xe1, 0x8c, 0x0e, 0x7a, 0xb6, 0x52, 0xaa, 0x2e, + 0x42, 0x36, 0xf2, 0x51, 0xd2, 0x14, 0xd5, 0xbb, 0xcd, 0xb0, 0xe0, 0x53, 0xd4, 0x6e, 0x53, 0x16, + 0xaa, 0xf7, 0x40, 0xa4, 0xfd, 0x4e, 0x0e, 0x32, 0xeb, 0x1d, 0xfd, 0x69, 0x5d, 0x57, 0xc2, 0x22, + 0x53, 0x6b, 0xef, 0xaa, 0x7a, 0x4f, 0x55, 0x64, 0xa1, 0xfa, 0xb3, 0x00, 0x0b, 0x93, 0xf2, 0xbe, + 0xe7, 0xd2, 0x02, 0x9f, 0x94, 0xbc, 0x16, 0x94, 0x06, 0x91, 0x9c, 0x5f, 0x30, 0x24, 0x56, 0x8a, + 0x6b, 0x9f, 0xfd, 0x66, 0x93, 0x30, 0x41, 0x89, 0x0b, 0x27, 0x8b, 0x2f, 0x0e, 0xa6, 0xa4, 0x11, + 0xdf, 0x25, 0x96, 0x13, 0xd3, 0x7c, 0x57, 0xbd, 0x03, 0xc5, 0x69, 0x04, 0xd2, 0x52, 0x35, 0x37, + 0xd4, 0xe6, 0x63, 0x79, 0xae, 0xfa, 0x07, 0x11, 0xd0, 0xc4, 0x3a, 0x5b, 0xe3, 0xc0, 0xa0, 0x76, + 0xa8, 0x43, 0x3a, 0x3c, 0x78, 0xca, 0x9f, 0xb9, 0xb5, 0xbf, 0xb8, 0xb2, 0xfa, 0x9c, 0x00, 0x6c, + 0xcc, 0xe9, 0x4c, 0x11, 0x7d, 0x11, 0x6f, 0xad, 0x72, 0x6b, 0xef, 0xcd, 0x76, 0x3e, 0x1b, 0x73, + 0xbc, 0xe7, 0x7a, 0x0c, 0x29, 0x3f, 0x20, 0x0d, 0x48, 0x92, 0x9e, 0xef, 0xea, 0x25, 0xfa, 0xe7, + 0x17, 0x5f, 0xeb, 0x12, 0x35, 0x9e, 0x28, 0x29, 0x06, 0x7a, 0x0a, 0xd9, 0x88, 0xd2, 0x58, 0x9f, + 0xf6, 0x70, 0x76, 0xc0, 0xc8, 0x3f, 0x78, 0x75, 0x14, 0x61, 0xa1, 0x3a, 0xe4, 0x86, 0x6c, 0xda, + 0xa4, 0xb6, 0x5b, 0x66, 0x59, 0x05, 0x38, 0x02, 0xcd, 0x2e, 0xb1, 0x37, 0x1d, 0xb8, 0x92, 0x66, + 0x92, 0x52, 0xdd, 0x73, 0x6d, 0x7b, 0xcf, 0x18, 0x3c, 0xa7, 0xcd, 0x56, 0x54, 0xaa, 0x73, 0x29, + 0xda, 0x22, 0xb9, 0x81, 0x9f, 0x20, 0x6d, 0x9f, 0x2e, 0xa7, 0xa3, 0x8b, 0x3c, 0x68, 0x63, 0x4e, + 0x8f, 0x01, 0x54, 0xff, 0x0e, 0x52, 0xd4, 0x44, 0xc4, 0xa5, 0x77, 0xda, 0x8f, 0xdb, 0x9d, 0xa7, + 0xa4, 0x6f, 0x2a, 0x41, 0x4e, 0x51, 0x5b, 0x6a, 0x4f, 0xed, 0x77, 0xda, 0xad, 0x67, 0xb2, 0x80, + 0x6e, 0xc3, 0x4d, 0x26, 0xa8, 0xb7, 0x95, 0xfe, 0x53, 0x5d, 0xe3, 0x43, 0x89, 0xea, 0x4a, 0x3c, + 0x66, 0x26, 0x17, 0x01, 0x24, 0x7a, 0x14, 0x45, 0x16, 0x68, 0xf4, 0xe8, 0x9d, 0x6d, 0x39, 0xd1, + 0xc8, 0x03, 0x98, 0x91, 0x41, 0x37, 0x45, 0x29, 0x2d, 0x67, 0xaa, 0xff, 0x78, 0x07, 0x4a, 0xb4, + 0x5a, 0x9c, 0x29, 0x5d, 0x2f, 0xd3, 0x74, 0x1d, 0x96, 0x7e, 0xf2, 0x54, 0xba, 0x4e, 0xb0, 0x4c, + 0xfd, 0x10, 0xb2, 0x23, 0xc3, 0xc3, 0x4e, 0x40, 0x4e, 0x40, 0x9c, 0xaa, 0xf8, 0xa5, 0x6d, 0x3a, + 0x10, 0x4d, 0x97, 0xc2, 0x89, 0x1a, 0x51, 0xca, 0x1c, 0x61, 0x8f, 0x5e, 0xc0, 0x85, 0x87, 0x76, + 0x9b, 0xf5, 0xfe, 0xf3, 0x93, 0x55, 0xed, 0x86, 0x13, 0x74, 0x3e, 0x13, 0x6d, 0xc3, 0xfc, 0xd0, + 0x35, 0xad, 0x7d, 0x6b, 0x10, 0x9e, 0x78, 0x60, 0x0d, 0xc3, 0x06, 0x39, 0xb7, 0xf6, 0x76, 0xec, + 0x3c, 0xc6, 0x81, 0x65, 0xd7, 0x0e, 0xed, 0x41, 0xad, 0xc7, 0x2f, 0x2c, 0xd9, 0x8e, 0xe4, 0xb8, + 0x36, 0x19, 0x44, 0x8f, 0x20, 0xc3, 0x6b, 0xd0, 0xf0, 0xb2, 0x6b, 0xd6, 0x48, 0x63, 0x88, 0x5c, + 0x1b, 0xad, 0x43, 0xd1, 0xc1, 0xc7, 0xf1, 0x3e, 0x23, 0x3b, 0xe5, 0x8b, 0xf9, 0x36, 0x3e, 0xbe, + 0xb8, 0xc9, 0xc8, 0x3b, 0x93, 0x11, 0x13, 0x3d, 0x81, 0xc2, 0xc8, 0xb3, 0x86, 0x86, 0x77, 0xd2, + 0x0f, 0xc3, 0x17, 0xae, 0x13, 0xbe, 0x11, 0x51, 0x87, 0x10, 0x74, 0x14, 0xad, 0x43, 0x58, 0xd6, + 0x63, 0xbf, 0x9c, 0xa3, 0x7b, 0xbc, 0x1e, 0x18, 0x57, 0x46, 0x0d, 0x28, 0xd0, 0x2d, 0x46, 0xfd, + 0x44, 0x9e, 0xee, 0x70, 0x91, 0xed, 0x30, 0x47, 0x76, 0x78, 0x41, 0x4f, 0x91, 0x73, 0x22, 0xb9, + 0x89, 0x36, 0x01, 0xa2, 0x8b, 0x62, 0x92, 0x23, 0xaf, 0x2a, 0x41, 0xb6, 0xf9, 0xc4, 0xc9, 0x92, + 0xf4, 0x98, 0x36, 0xda, 0x82, 0x2c, 0x0f, 0xe3, 0x30, 0x39, 0xe6, 0x2e, 0xbd, 0xfc, 0x39, 0x4f, + 0x2a, 0x9c, 0x4a, 0x22, 0x04, 0xd4, 0x86, 0x94, 0x8d, 0x0d, 0x1f, 0xb3, 0x0c, 0xf9, 0xe9, 0x25, + 0x50, 0x67, 0x22, 0xa7, 0xd6, 0x1d, 0x1c, 0xe2, 0xa1, 0xd1, 0x3c, 0x24, 0xd5, 0x76, 0x8b, 0xe8, + 0xeb, 0x21, 0x0c, 0x6a, 0x83, 0x4c, 0xcd, 0x15, 0xe7, 0x27, 0x99, 0x5a, 0xec, 0x5d, 0x66, 0xb1, + 0x22, 0xb1, 0xd8, 0xa5, 0x1c, 0x45, 0xfd, 0x69, 0x6b, 0xc2, 0x53, 0x7f, 0x0b, 0xc5, 0x7d, 0xd7, + 0x1b, 0x1a, 0x41, 0x9f, 0x07, 0xce, 0xfc, 0xa4, 0x86, 0xfe, 0xf5, 0xd5, 0x52, 0x61, 0x9d, 0x8e, + 0xf2, 0xa0, 0x29, 0xec, 0xc7, 0x5f, 0xd1, 0x06, 0xa7, 0xf3, 0x1b, 0x94, 0x7d, 0x3f, 0x9a, 0x75, + 0x77, 0xe7, 0xb9, 0xbc, 0x0d, 0xe9, 0xc1, 0x21, 0x1e, 0x3c, 0xf7, 0xcb, 0x0b, 0xd4, 0xe6, 0x7f, + 0x3d, 0x23, 0x54, 0x93, 0x28, 0x4d, 0xe8, 0x51, 0x67, 0x28, 0xe8, 0x6b, 0x28, 0x9a, 0x44, 0x62, + 0x39, 0x07, 0xac, 0x46, 0xbf, 0x49, 0x71, 0x57, 0x67, 0xc4, 0x25, 0xf5, 0xbb, 0xe6, 0xec, 0xbb, + 0xbc, 0x3c, 0xe3, 0x60, 0x61, 0x5d, 0xdf, 0x01, 0x69, 0xdf, 0x18, 0x5a, 0xb6, 0x85, 0xfd, 0xf2, + 0x2d, 0x8a, 0x7b, 0xf5, 0xfd, 0xfb, 0xd9, 0x2b, 0x0e, 0x9e, 0x0c, 0x38, 0x48, 0x14, 0xe8, 0x54, + 0x70, 0x42, 0x0e, 0xf5, 0xad, 0xf3, 0x81, 0xce, 0xaf, 0x38, 0xa6, 0xae, 0x3b, 0x68, 0xa0, 0xb3, + 0x37, 0x13, 0xbd, 0x03, 0x70, 0x64, 0xe1, 0x6f, 0xfb, 0x2f, 0xc6, 0xd8, 0x3b, 0x29, 0x97, 0x63, + 0xbc, 0x9b, 0x25, 0xf2, 0x27, 0x44, 0x8c, 0x3e, 0x81, 0xac, 0x89, 0x47, 0xd8, 0x31, 0xfd, 0x8e, + 0x53, 0xbe, 0x4d, 0xeb, 0xbf, 0x1b, 0xa4, 0x29, 0x51, 0xb8, 0x90, 0xf1, 0xea, 0x64, 0x16, 0xfa, + 0x06, 0xf2, 0xe1, 0x0b, 0x36, 0x3b, 0x4e, 0xe3, 0xa4, 0x5c, 0xa1, 0x9b, 0x7e, 0x30, 0xa3, 0x31, + 0x27, 0xc5, 0xee, 0x02, 0xdf, 0x8f, 0x12, 0x43, 0xd3, 0xa7, 0xb0, 0xd1, 0xd7, 0x90, 0xe7, 0xde, + 0xbd, 0xe9, 0xee, 0xf9, 0xe5, 0x3b, 0x57, 0xb6, 0xe9, 0x67, 0xbf, 0xb5, 0x35, 0x51, 0xe5, 0xbc, + 0x15, 0x47, 0x43, 0x5f, 0x42, 0x21, 0xba, 0xdb, 0x72, 0x47, 0x81, 0x5f, 0xbe, 0x4b, 0x03, 0xf3, + 0xe1, 0xac, 0xae, 0xcb, 0x74, 0x3b, 0xa3, 0xc0, 0xd7, 0xf3, 0x7e, 0xec, 0x0d, 0xdd, 0x83, 0xac, + 0xe9, 0xb9, 0xa3, 0x30, 0x7f, 0xbc, 0xbd, 0x2c, 0xac, 0x24, 0xf9, 0x31, 0x13, 0x31, 0x4d, 0x0c, + 0x7d, 0x28, 0x7a, 0x78, 0x64, 0x1b, 0x03, 0x3c, 0x24, 0x99, 0xcd, 0xdd, 0x2f, 0x2f, 0xd2, 0xaf, + 0xaf, 0xcd, 0x6c, 0xc8, 0x48, 0x99, 0x3b, 0x66, 0x0c, 0xaf, 0xb3, 0x8f, 0x76, 0x00, 0x8c, 0xb1, + 0x69, 0x05, 0xfd, 0xa1, 0x6b, 0xe2, 0xf2, 0xd2, 0x95, 0x77, 0xb2, 0x67, 0xc1, 0xeb, 0x44, 0x71, + 0xcb, 0x35, 0x71, 0x74, 0x5d, 0xc4, 0x05, 0xe8, 0x13, 0xc8, 0xd1, 0xad, 0x7d, 0xe3, 0xee, 0x11, + 0xdf, 0x5c, 0xa6, 0x9b, 0x9b, 0x67, 0x67, 0x99, 0x55, 0x3c, 0x77, 0xb4, 0xe9, 0xee, 0x51, 0x8f, + 0x61, 0x8f, 0x26, 0xf2, 0x21, 0x7f, 0x30, 0xe8, 0x4f, 0xa8, 0xf4, 0x1e, 0x3d, 0xc5, 0xcf, 0x67, + 0x5c, 0xcb, 0xa3, 0xe6, 0x05, 0xe4, 0x7a, 0x83, 0xe7, 0x84, 0x47, 0x4d, 0x2e, 0xf3, 0xf5, 0xdc, + 0xc1, 0x20, 0x7a, 0xa9, 0xfc, 0x28, 0xc0, 0xfc, 0x39, 0xea, 0x44, 0xff, 0x00, 0x19, 0xc7, 0x35, + 0x63, 0xd7, 0x5b, 0x2a, 0x03, 0x4a, 0xb7, 0x5d, 0x33, 0xbc, 0xdd, 0x7a, 0x78, 0x60, 0x05, 0x87, + 0xe3, 0xbd, 0xda, 0xc0, 0x1d, 0xae, 0x46, 0x2b, 0x34, 0xf7, 0x26, 0xcf, 0xab, 0xa3, 0xe7, 0x07, + 0xab, 0xf4, 0x69, 0xb4, 0x57, 0x0b, 0xd5, 0xf4, 0x34, 0x41, 0xd5, 0x4c, 0xf4, 0x31, 0x94, 0xf0, + 0xf1, 0xc8, 0xf2, 0x62, 0xe5, 0x43, 0x22, 0x76, 0xfc, 0xc5, 0xc9, 0x20, 0x71, 0x82, 0xca, 0x2f, + 0x02, 0x94, 0xce, 0xd0, 0x16, 0xa9, 0x94, 0xe8, 0xd5, 0xe9, 0x54, 0xa5, 0x44, 0x24, 0xb1, 0x16, + 0xe0, 0xaa, 0xbf, 0x14, 0xc9, 0x37, 0xfd, 0x4b, 0x31, 0x7d, 0x53, 0x91, 0x9a, 0xfd, 0xa6, 0x62, + 0x53, 0x94, 0x44, 0x39, 0x55, 0x79, 0x06, 0x12, 0xa7, 0xcc, 0xe9, 0xd2, 0x4d, 0x98, 0xb1, 0x74, + 0xbb, 0x74, 0x9f, 0x95, 0xef, 0x05, 0xc8, 0xc6, 0x7f, 0xff, 0x24, 0x22, 0xd4, 0x8b, 0x2b, 0xc7, + 0xd7, 0xbc, 0x9c, 0x9c, 0xb6, 0x40, 0x72, 0x76, 0x0b, 0x54, 0x8e, 0x20, 0x17, 0x63, 0x9d, 0xb3, + 0xdd, 0x83, 0xf0, 0x1a, 0xdd, 0xc3, 0xbb, 0x90, 0x66, 0xa1, 0x16, 0x3a, 0x52, 0x81, 0x69, 0xa7, + 0xc2, 0x30, 0x4b, 0x7d, 0x43, 0x42, 0xac, 0xf2, 0x1f, 0x02, 0xe4, 0xe3, 0x7c, 0x84, 0xaa, 0x90, + 0xb5, 0x9c, 0x81, 0x47, 0xc9, 0x80, 0x7e, 0x97, 0xbb, 0xe0, 0x44, 0x4c, 0x58, 0x6a, 0x68, 0x39, + 0x7d, 0x7a, 0x61, 0x38, 0xe5, 0xa6, 0xd2, 0xd0, 0x72, 0x76, 0x89, 0x94, 0x4e, 0x31, 0x8e, 0xd9, + 0x94, 0xe4, 0xd4, 0x14, 0xe3, 0x38, 0x9c, 0x52, 0xa1, 0x89, 0xdf, 0x0b, 0x68, 0x65, 0x9e, 0x8c, + 0xa5, 0x72, 0x2f, 0x40, 0x8b, 0x90, 0x39, 0xb2, 0xbc, 0x60, 0x6c, 0xd8, 0xb4, 0x08, 0xe7, 0x9d, + 0x0f, 0x17, 0x56, 0x0e, 0x21, 0x17, 0xe3, 0xb1, 0x19, 0x0e, 0xf4, 0x6f, 0x40, 0x8c, 0x82, 0x6a, + 0xc6, 0x9a, 0x9c, 0x2a, 0x54, 0xfe, 0x45, 0x80, 0x85, 0x8b, 0x98, 0x64, 0xca, 0x45, 0x42, 0x3b, + 0xcd, 0xe4, 0x22, 0x53, 0x0c, 0x9f, 0xb8, 0x90, 0xe1, 0x27, 0x27, 0x97, 0xbc, 0xfc, 0xe4, 0xaa, + 0xef, 0xf1, 0x66, 0x0d, 0x20, 0xbd, 0xbd, 0xd3, 0x68, 0x69, 0xcd, 0x0b, 0x1b, 0x2d, 0xd2, 0x92, + 0x45, 0xac, 0x8c, 0xf2, 0x20, 0x29, 0x5a, 0xb7, 0xde, 0x68, 0xa9, 0x8a, 0x3c, 0x87, 0x0a, 0x90, + 0xd5, 0xd5, 0xba, 0x42, 0x3b, 0x38, 0x59, 0xf8, 0x4c, 0xfc, 0xee, 0x87, 0x25, 0x21, 0x6c, 0xc5, + 0x36, 0x45, 0x09, 0xc9, 0x37, 0xaa, 0x3f, 0x0a, 0x80, 0x14, 0x23, 0x30, 0x08, 0x03, 0x5c, 0xa3, + 0x27, 0x4b, 0x5c, 0x71, 0x10, 0xd3, 0x75, 0x76, 0xf2, 0x4d, 0xea, 0xec, 0x70, 0xc1, 0xd5, 0xef, + 0x05, 0x80, 0xd8, 0xe2, 0xbe, 0x88, 0xff, 0xdb, 0xbd, 0xbc, 0xa5, 0x38, 0x93, 0x2d, 0x36, 0xe6, + 0xf8, 0x9f, 0xdf, 0x47, 0x20, 0x99, 0x6c, 0xcb, 0xcc, 0x5b, 0x2e, 0xad, 0xdd, 0xcf, 0x59, 0x66, + 0x83, 0x1c, 0x23, 0x93, 0x36, 0x32, 0x90, 0x1a, 0x3b, 0x96, 0xeb, 0x7c, 0xa0, 0x00, 0x3a, 0xcf, + 0x9e, 0xc4, 0xf8, 0xbc, 0x0d, 0x37, 0xc3, 0x2e, 0x7b, 0xc7, 0x39, 0x8a, 0x04, 0x02, 0x2a, 0x02, + 0xb0, 0x71, 0xcb, 0x39, 0x90, 0x13, 0x8d, 0x7b, 0x2f, 0xff, 0x6f, 0x71, 0xee, 0xe5, 0xe9, 0xa2, + 0xf0, 0x5f, 0xa7, 0x8b, 0xc2, 0x7f, 0x9f, 0x2e, 0x0a, 0xff, 0x7b, 0xba, 0x28, 0xfc, 0xd3, 0xff, + 0x2f, 0xce, 0x7d, 0x95, 0x61, 0x0b, 0xfa, 0x73, 0x00, 0x00, 0x00, 0xff, 0xff, 0x8f, 0xef, 0xa3, + 0xd2, 0x46, 0x23, 0x00, 0x00, } diff --git a/pkg/sql/sqlbase/structured.proto b/pkg/sql/sqlbase/structured.proto index ae2129a5aad2..29a852d3dda9 100644 --- a/pkg/sql/sqlbase/structured.proto +++ b/pkg/sql/sqlbase/structured.proto @@ -216,6 +216,7 @@ message ForeignKeyReference { option (gogoproto.goproto_enum_stringer) = false; SIMPLE = 0; FULL = 1; + PARTIAL = 2; // Note: not actually supported, but we reserve the value for future use. } optional uint32 table = 1 [(gogoproto.nullable) = false, (gogoproto.casttype) = "ID"];