|
1 | 1 | <!--
|
2 |
| -$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.35 2005/11/04 23:13:59 petere Exp $ |
| 2 | +$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.36 2005/11/04 23:53:18 tgl Exp $ |
3 | 3 | -->
|
4 | 4 | <chapter Id="runtime-config">
|
5 | 5 | <title>Server Configuration</title>
|
@@ -1970,13 +1970,13 @@ archive_command = 'copy "%p" /mnt/server/archivedir/"%f"' # Windows
|
1970 | 1970 | <listitem>
|
1971 | 1971 | <para>
|
1972 | 1972 | Enables or disables the query planner's use of table constraints to
|
1973 |
| -limit table access. The default is <literal>off</>. |
| 1973 | +optimize queries. The default is <literal>off</>. |
1974 | 1974 | </para>
|
1975 | 1975 |
|
1976 | 1976 | <para>
|
1977 | 1977 | When this parameter is <literal>on</>, the planner compares
|
1978 | 1978 | query conditions with table <literal>CHECK</> constraints, and
|
1979 |
| - omits scanning tableswhere the conditions contradict the |
| 1979 | + omits scanning tablesfor which the conditions contradict the |
1980 | 1980 | constraints. (Presently this is done only for child tables of
|
1981 | 1981 | inheritance scans.) For example:
|
1982 | 1982 |
|
@@ -2010,7 +2010,7 @@ SELECT * FROM parent WHERE key = 2400;
|
2010 | 2010 | </para>
|
2011 | 2011 |
|
2012 | 2012 | <para>
|
2013 |
| - Refer to <xref linkend="ce-partitioning"> for more information |
| 2013 | + Refer to <xref linkend="ddl-partitioning"> for more information |
2014 | 2014 | on using constraint exclusion and partitioning.
|
2015 | 2015 | </para>
|
2016 | 2016 | </listitem>
|
|