diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-04-20 22:49:37 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-04-20 22:49:37 -0400 |
commit | a0e8df527ec24e8dba98f295c0e2ab6ccf3e5d2c (patch) | |
tree | 6fe1c2eb71bab3251bdece75b22bd009aaa46577 /doc/src | |
parent | 8ede427938e9676d0e497406c213f098303a93f3 (diff) | |
download | postgresql-a0e8df527ec24e8dba98f295c0e2ab6ccf3e5d2c.tar.gz postgresql-a0e8df527ec24e8dba98f295c0e2ab6ccf3e5d2c.zip |
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.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/alter_type.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/alter_type.sgml b/doc/src/sgml/ref/alter_type.sgml index e889ffbc352..a417c0d01b3 100644 --- a/doc/src/sgml/ref/alter_type.sgml +++ b/doc/src/sgml/ref/alter_type.sgml @@ -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> |