Minor improvements for CHECK NO INHERIT documentation.

Fix typo spotted by Thom Brown, and improve wording in another area
where Thom spotted a typo.
This commit is contained in:
Robert Haas 2012-04-23 21:59:17 -04:00
parent 48658a1b81
commit 9d435d57e1
2 changed files with 3 additions and 4 deletions

View File

@ -906,9 +906,8 @@ ALTER TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable>
The <literal>TRIGGER</>, <literal>CLUSTER</>, <literal>OWNER</>,
and <literal>TABLESPACE</> actions never recurse to descendant tables;
that is, they always act as though <literal>ONLY</> were specified.
Adding a constraint can recurse only for <literal>CHECK</> constraints,
and is required to do so for such constraints, except those that are
explicitely marked <literal>NO INHERIT</>.
Adding a constraint recurses only for <literal>CHECK</> constraints
that are not marked <literal>NO INHERIT</>.
</para>
<para>

View File

@ -438,7 +438,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } | UNLOGGED ] TABLE [ IF NOT EXI
<para>
A constraint marked with <literal>NO INHERIT</> will not propagate to
children tables.
child tables.
</para>
</listitem>
</varlistentry>