aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2010-02-22 23:51:40 +0000
committerBruce Momjian <bruce@momjian.us>2010-02-22 23:51:40 +0000
commit752672ced766e39f00375afca730db13b861d624 (patch)
tree761d79f3aacec94c9c790cd40ff11868fd5e621d /doc/src
parentc750cb4bd35d884b2a04bd8776fe0cee9b491760 (diff)
downloadpostgresql-752672ced766e39f00375afca730db13b861d624.tar.gz
postgresql-752672ced766e39f00375afca730db13b861d624.zip
Remove long-commented-out paragraph in documentation about function
inheritance in create table, per Andrew Dunstan.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ref/create_table.sgml15
1 files changed, 1 insertions, 14 deletions
diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml
index 7044e86685d..a68ce56f46c 100644
--- a/doc/src/sgml/ref/create_table.sgml
+++ b/doc/src/sgml/ref/create_table.sgml
@@ -1,5 +1,5 @@
<!--
-$PostgreSQL: pgsql/doc/src/sgml/ref/create_table.sgml,v 1.121 2010/01/28 23:21:11 petere Exp $
+$PostgreSQL: pgsql/doc/src/sgml/ref/create_table.sgml,v 1.122 2010/02/22 23:51:40 momjian Exp $
PostgreSQL documentation
-->
@@ -274,19 +274,6 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
Column <literal>STORAGE</> settings are also copied from parent tables.
</para>
-<!--
- <para>
- <productname>PostgreSQL</> automatically allows the
- created table to inherit
- functions on tables above it in the inheritance hierarchy; that
- is, if we create table <literal>foo</literal> inheriting from
- <literal>bar</literal>, then functions that accept the tuple
- type <literal>bar</literal> can also be applied to instances of
- <literal>foo</literal>. (Currently, this works reliably for
- functions on the first or only parent table, but not so well for
- functions on additional parents.)
- </para>
--->
</listitem>
</varlistentry>