From 9d435d57e1f8ec7e51d40722854252875d8cc6eb Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Mon, 23 Apr 2012 21:59:17 -0400 Subject: [PATCH] Minor improvements for CHECK NO INHERIT documentation. Fix typo spotted by Thom Brown, and improve wording in another area where Thom spotted a typo. --- doc/src/sgml/ref/alter_table.sgml | 5 ++--- doc/src/sgml/ref/create_table.sgml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml index 3af65accea..a39cb8fc0f 100644 --- a/doc/src/sgml/ref/alter_table.sgml +++ b/doc/src/sgml/ref/alter_table.sgml @@ -906,9 +906,8 @@ ALTER TABLE [ IF EXISTS ] name The TRIGGER, CLUSTER, OWNER, and TABLESPACE actions never recurse to descendant tables; that is, they always act as though ONLY were specified. - Adding a constraint can recurse only for CHECK constraints, - and is required to do so for such constraints, except those that are - explicitely marked NO INHERIT. + Adding a constraint recurses only for CHECK constraints + that are not marked NO INHERIT. diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 4da6eea758..a52bfad2f3 100644 --- a/doc/src/sgml/ref/create_table.sgml +++ b/doc/src/sgml/ref/create_table.sgml @@ -438,7 +438,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXI A constraint marked with NO INHERIT will not propagate to - children tables. + child tables.