diff options
| author | Bruce Momjian | 2006-09-14 23:21:47 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2006-09-14 23:21:47 +0000 |
| commit | fa6f9ceab646c9b3f1c582eef7adbc0bce10e0e9 (patch) | |
| tree | 53a81b2f165afa4512a5e509d293c2ae96846a54 /src/bin/initdb | |
| parent | 65ab9f4f243df8817982191bce2804f1ec7ecfa6 (diff) | |
Make postgresql.conf.sample match the initdb defaults. This fixes
comment alignment on most systems.
Diffstat (limited to 'src/bin/initdb')
| -rw-r--r-- | src/bin/initdb/initdb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/initdb/initdb.c b/src/bin/initdb/initdb.c index 5275884e171..1c5989a4ef3 100644 --- a/src/bin/initdb/initdb.c +++ b/src/bin/initdb/initdb.c @@ -42,7 +42,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * Portions taken from FreeBSD. * - * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.121 2006/08/20 16:08:09 meskes Exp $ + * $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.122 2006/09/14 23:21:47 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -1214,10 +1214,10 @@ setup_config(void) conflines = replace_token(conflines, "#max_connections = 100", repltok); snprintf(repltok, sizeof(repltok), "shared_buffers = %dkB", n_buffers); - conflines = replace_token(conflines, "#shared_buffers = 1000", repltok); + conflines = replace_token(conflines, "#shared_buffers = 32000kB", repltok); snprintf(repltok, sizeof(repltok), "max_fsm_pages = %d", n_fsm_pages); - conflines = replace_token(conflines, "#max_fsm_pages = 20000", repltok); + conflines = replace_token(conflines, "#max_fsm_pages = 1600000", repltok); #if DEF_PGPORT != 5432 snprintf(repltok, sizeof(repltok), "#port = %d", DEF_PGPORT); |
