File tree Expand file tree Collapse file tree 3 files changed +24
-6
lines changed Expand file tree Collapse file tree 3 files changed +24
-6
lines changed Original file line number Diff line number Diff line change 1
1
<!--
2
- $Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.48 2002/08/02 18:15:04 tgl Exp $
2
+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.49 2002/08/15 02:59:18 momjian Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -60,7 +60,15 @@ ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
60
60
<term><replaceable class="PARAMETER"> table </replaceable></term>
61
61
<listitem>
62
62
<para>
63
- The name (possibly schema-qualified) of an existing table to alter.
63
+ The name (possibly schema-qualified) of an existing table to
64
+ alter. If <literal>ONLY</> is specified, only that table is
65
+ altered. If <literal>ONLY</> is not specified, the table and all
66
+ its descendant tables (if any) are updated. <literal>*</> can be
67
+ appended to the table name to indicate that descendant tables are
68
+ to be scanned, but in the current version, this is the default
69
+ behavior. (In releases before 7.1, <literal>ONLY</> was the
70
+ default behavior.) The default can be altered by changing the
71
+ <option>SQL_INHERITANCE</option> configuration option.
64
72
</para>
65
73
</listitem>
66
74
</varlistentry>
Original file line number Diff line number Diff line change 1
1
<!--
2
- $Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.55 2002/08/04 19:48:09 momjian Exp $
2
+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/select.sgml,v 1.56 2002/08/15 02:59:18 momjian Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -131,7 +131,9 @@ where <replaceable class="PARAMETER">from_item</replaceable> can be:
131
131
tables (if any) are scanned. <literal>*</> can be appended to the
132
132
table name to indicate that descendant tables are to be scanned, but
133
133
in the current version, this is the default behavior. (In releases
134
- before 7.1, <literal>ONLY</> was the default behavior.)
134
+ before 7.1, <literal>ONLY</> was the default behavior.) The
135
+ default behavior can be modified by changing the
136
+ <option>SQL_INHERITANCE</option> configuration option.
135
137
</para>
136
138
</listitem>
137
139
</varlistentry>
Original file line number Diff line number Diff line change 1
1
<!--
2
- $Header: /cvsroot/pgsql/doc/src/sgml/ref/update.sgml,v 1.19 2002/04/23 02:07:16 tgl Exp $
2
+ $Header: /cvsroot/pgsql/doc/src/sgml/ref/update.sgml,v 1.20 2002/08/15 02:59:18 momjian Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -40,7 +40,15 @@ UPDATE [ ONLY ] <replaceable class="PARAMETER">table</replaceable> SET <replacea
40
40
<term><replaceable class="PARAMETER">table</replaceable></term>
41
41
<listitem>
42
42
<para>
43
- The name (optionally schema-qualified) of an existing table.
43
+ The name (optionally schema-qualified) of an existing table. If
44
+ <literal>ONLY</> is specified, only that table is updated. If
45
+ <literal>ONLY</> is not specified, the table and all its
46
+ descendant tables (if any) are updated. <literal>*</> can be
47
+ appended to the table name to indicate that descendant tables are
48
+ to be scanned, but in the current version, this is the default
49
+ behavior. (In releases before 7.1, <literal>ONLY</> was the
50
+ default behavior.) The default can be altered by changing the
51
+ <option>SQL_INHERITANCE</option> configuration option.
44
52
</para>
45
53
</listitem>
46
54
</varlistentry>
You can’t perform that action at this time.
0 commit comments