From 32e1265dd97e8321ad67418b781f3d0cf8a9282c Mon Sep 17 00:00:00 2001 From: Andrew Dunstan Date: Fri, 9 Jan 2009 01:53:10 +0000 Subject: [PATCH] Document values for pg_constraint confupdtype, confdeltype and confmatchtype columns. --- doc/src/sgml/catalogs.sgml | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index a25d2356da..a4006f3e20 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) +