Commit 74aa1a45 authored by Bruce Momjian's avatar Bruce Momjian

Remove mention of pre-7.1 inheritance behavior from /ref pages; keep

mentions in main documentation.
parent fa2afcfe
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.104 2009/02/11 21:11:15 tgl Exp $ $PostgreSQL: pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.105 2009/04/15 22:42:50 momjian Exp $
PostgreSQL documentation PostgreSQL documentation
--> -->
...@@ -450,13 +450,10 @@ where <replaceable class="PARAMETER">action</replaceable> is one of: ...@@ -450,13 +450,10 @@ where <replaceable class="PARAMETER">action</replaceable> is one of:
<para> <para>
The name (possibly schema-qualified) of an existing table to The name (possibly schema-qualified) of an existing table to
alter. If <literal>ONLY</> is specified, only that table is alter. If <literal>ONLY</> is specified, only that table is
altered. If <literal>ONLY</> is not specified, the table and all altered. If <literal>ONLY</> is not specified, the table and any
its descendant tables (if any) are updated. <literal>*</> can be descendant tables are altered. The default can be changed
appended to the table name to indicate that descendant tables are using the configuration parameter <xref
to be altered, but in the current version, this is the default linkend="guc-sql-inheritance">.
behavior. (In releases before 7.1, <literal>ONLY</> was the
default behavior. The default can be altered by changing the
configuration parameter <xref linkend="guc-sql-inheritance">.)
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
......
<!-- <!--
$PostgreSQL: pgsql/doc/src/sgml/ref/select.sgml,v 1.120 2009/02/02 20:42:57 tgl Exp $ $PostgreSQL: pgsql/doc/src/sgml/ref/select.sgml,v 1.121 2009/04/15 22:42:50 momjian Exp $
PostgreSQL documentation PostgreSQL documentation
--> -->
...@@ -271,12 +271,8 @@ TABLE { [ ONLY ] <replaceable class="parameter">table_name</replaceable> [ * ] | ...@@ -271,12 +271,8 @@ TABLE { [ ONLY ] <replaceable class="parameter">table_name</replaceable> [ * ] |
The name (optionally schema-qualified) of an existing table or The name (optionally schema-qualified) of an existing table or
view. If <literal>ONLY</> is specified, only that table is view. If <literal>ONLY</> is specified, only that table is
scanned. If <literal>ONLY</> is not specified, the table and scanned. If <literal>ONLY</> is not specified, the table and
all its descendant tables (if any) are scanned. <literal>*</> any descendant tables are scanned. The default
can be appended to the table name to indicate that descendant behavior can be changed using the <xref
tables are to be scanned, but in the current version, this is
the default behavior. (In releases before 7.1,
<literal>ONLY</> was the default behavior.) The default
behavior can be modified by changing the <xref
linkend="guc-sql-inheritance"> configuration option. linkend="guc-sql-inheritance"> configuration option.
</para> </para>
</listitem> </listitem>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment