1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-14 18:42:34 +03:00

Allow ALTER TYPE .. ADD ATTRIBUTE .. CASCADE to recurse to descendants.

Without this, adding an attribute to a typed table with an inheritance
child fails, which is surprising.

Noah Misch, with minor changes by me.
This commit is contained in:
Robert Haas
2011-04-20 22:49:37 -04:00
parent 8ede427938
commit a0e8df527e
4 changed files with 23 additions and 3 deletions

View File

@ -122,7 +122,7 @@ ALTER TYPE <replaceable class="PARAMETER">name</replaceable> ADD VALUE <replacea
<listitem>
<para>
Automatically propagate the operation to typed tables of the
type being altered.
type being altered, and their descendants.
</para>
</listitem>
</varlistentry>