diff options
author | Peter Eisentraut | 2001-08-24 14:07:50 +0000 |
---|---|---|
committer | Peter Eisentraut | 2001-08-24 14:07:50 +0000 |
commit | 968d7733a19cda3db16947024bd335d877b3d9c3 (patch) | |
tree | a39593b292dbfcaad45924e9a20ae90300167524 /doc | |
parent | 7326e78c4249393359edce09f555aaa049be2a80 (diff) |
Rename config.h to pg_config.h and os.h to pg_config_os.h, fix a number of
places that were including the wrong files.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/FAQ | 2 | ||||
-rw-r--r-- | doc/FAQ_german | 2 | ||||
-rw-r--r-- | doc/src/FAQ/FAQ.html | 2 | ||||
-rw-r--r-- | doc/src/FAQ/FAQ_german.html | 2 | ||||
-rw-r--r-- | doc/src/sgml/indices.sgml | 4 |
5 files changed, 6 insertions, 6 deletions
@@ -559,7 +559,7 @@ In PostgreSQL 6.5 and up, the default limit is 32 processes. You can increase it by restarting the postmaster with a suitable -N value. With the default configuration you can set -N as large as 1024. If you - need more, increase MAXBACKENDS in include/config.h and rebuild. You + need more, increase MAXBACKENDS in include/pg_config.h and rebuild. You can set the default value of -N at configuration time, if you like, using configure's --with-maxbackends switch. diff --git a/doc/FAQ_german b/doc/FAQ_german index 127ea98ecc9..9a7a7d50f60 100644 --- a/doc/FAQ_german +++ b/doc/FAQ_german @@ -682,7 +682,7 @@ Wert dadurch erhöhen, daß Du den postmaster mit einem entsprechenden -N Wert neu startest. In der Standardkonfiguration kannst Du -N auf maximal 1024 setzen. Falls Du mehr brauchst, erhöhe MAXBACKENDS in - include/config.h und kompiliere das Paket neu. Du kannst den + include/pg_config.h und kompiliere das Paket neu. Du kannst den Standardwert von -N während der Konfiguration setzen, indem Du --with-maxbackends angibst. Anmerkung: Falls Du -N größer als 32 einstellst, solltest Du -B auf einen Wert, höher als 64 setzen. Für diff --git a/doc/src/FAQ/FAQ.html b/doc/src/FAQ/FAQ.html index ef698e7ae90..83b121a00e4 100644 --- a/doc/src/FAQ/FAQ.html +++ b/doc/src/FAQ/FAQ.html @@ -725,7 +725,7 @@ can increase it by restarting the <I>postmaster</I> with a suitable <I>-N</I> value. With the default configuration you can set <I>-N</I> as large as 1024. If you need more, increase - <SMALL>MAXBACKENDS</SMALL> in <I>include/config.h</I> and rebuild. + <SMALL>MAXBACKENDS</SMALL> in <I>include/pg_config.h</I> and rebuild. You can set the default value of <I>-N</I> at configuration time, if you like, using <I>configure's</I> <I>--with-maxbackends</I> switch.</P> diff --git a/doc/src/FAQ/FAQ_german.html b/doc/src/FAQ/FAQ_german.html index e133ef361b5..6c40523afce 100644 --- a/doc/src/FAQ/FAQ_german.html +++ b/doc/src/FAQ/FAQ_german.html @@ -712,7 +712,7 @@ Du mußt die Grenze des postmasters, die festlegt, In Postgres 6.5 sind das normalerweise 32 Prozesse. Du kannst diesen Wert dadurch erhöhen, daß Du den postmaster mit einem entsprechenden <I>-N</I> Wert neu startest. In der Standardkonfiguration kannst Du <I>-N</I> auf maximal 1024 setzen. -Falls Du mehr brauchst, erhöhe <I>MAXBACKENDS</I> in <I>include/config.h</I> und +Falls Du mehr brauchst, erhöhe <I>MAXBACKENDS</I> in <I>include/pg_config.h</I> und kompiliere das Paket neu. Du kannst den Standardwert von <I>-N</I> während der Konfiguration setzen, indem Du <I>--with-maxbackends</I> angibst. diff --git a/doc/src/sgml/indices.sgml b/doc/src/sgml/indices.sgml index 9c5b805bb28..1f746aa8b09 100644 --- a/doc/src/sgml/indices.sgml +++ b/doc/src/sgml/indices.sgml @@ -1,4 +1,4 @@ -<!-- $Header: /cvsroot/pgsql/doc/src/sgml/indices.sgml,v 1.21 2001/08/21 16:35:59 tgl Exp $ --> +<!-- $Header: /cvsroot/pgsql/doc/src/sgml/indices.sgml,v 1.22 2001/08/24 14:07:48 petere Exp $ --> <chapter id="indexes"> <title id="indexes-title">Indexes</title> @@ -238,7 +238,7 @@ CREATE INDEX test2_mm_idx ON test2 (major, minor); Currently, only the B-tree implementation supports multi-column indexes. Up to 16 columns may be specified. (This limit can be altered when building <productname>Postgres</productname>; see the - file <filename>config.h</filename>.) + file <filename>pg_config.h</filename>.) </para> <para> |