From 8deee75cba2897144c916992624e93e6b2716681 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 | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index e34a2f9f02..f12d402d2c 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -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) + -- 2.39.5