From: Andrew Dunstan Date: Fri, 9 Jan 2009 01:53:10 +0000 (+0000) Subject: Document values for pg_constraint confupdtype, confdeltype and confmatchtype columns. X-Git-Tag: REL8_4_BETA1~424 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=32e1265dd97e8321ad67418b781f3d0cf8a9282c;p=thirdparty%2Fpostgresql.git Document values for pg_constraint confupdtype, confdeltype and confmatchtype columns. --- diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index a25d2356da3..a4006f3e20e 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -1,4 +1,4 @@ - + @@ -1909,21 +1909,37 @@ confupdtype char - Foreign key update action code + Foreign key update action code: + a = no action, + r = restrict, + c = cascade, + n = set null, + d = set default + confdeltype char - Foreign key deletion action code + Foreign key deletion action code: + a = no action, + r = restrict, + c = cascade, + n = set null, + d = set default + confmatchtype char - Foreign key match type + Foreign key match type: + f = full, + p = partial, + u = simple (unspecified) +