File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -662,16 +662,11 @@ pub enum CastKind {
662
662
#[ cfg_attr( feature = "serde" , derive( Serialize , Deserialize ) ) ]
663
663
#[ cfg_attr( feature = "visitor" , derive( Visit , VisitMut ) ) ]
664
664
pub enum ConstraintReferenceMatchKind {
665
- /// `MATCH FULL` - Will not allow one column of a multicolumn foreign key to be null
666
- /// unless all foreign key columns are null; if they are all null, the row is not
667
- /// required to have a match in the referenced table.
665
+ /// `MATCH FULL`
668
666
Full ,
669
- /// `MATCH PARTIAL` - Not yet implemented by most databases (part of SQL standard).
670
- /// Would allow partial matches in multicolumn foreign keys.
667
+ /// `MATCH PARTIAL`
671
668
Partial ,
672
- /// `MATCH SIMPLE` - The default behavior. Allows any of the foreign key columns
673
- /// to be null; if any of them are null, the row is not required to have a match
674
- /// in the referenced table.
669
+ /// `MATCH SIMPLE`
675
670
Simple ,
676
671
}
677
672
You can’t perform that action at this time.
0 commit comments