We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent2e67a67 commit5ba723eCopy full SHA for 5ba723e
src/backend/bootstrap/bootstrap.c
@@ -8,7 +8,7 @@
8
* Portions Copyright (c) 1994, Regents of the University of California
9
*
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.109 2001/06/12 22:54:05 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.110 2001/06/25 23:03:03 tgl Exp $
12
13
*-------------------------------------------------------------------------
14
*/
@@ -260,7 +260,7 @@ BootstrapMain(int argc, char *argv[])
260
* parsing */
261
break;
262
case'F':
263
-enableFsync=false;
+SetConfigOption("fsync","false",PGC_POSTMASTER, true);
264
265
case'x':
266
xlogop=atoi(optarg);
@@ -269,7 +269,7 @@ BootstrapMain(int argc, char *argv[])
269
/* indicates fork from postmaster */
270
271
case'B':
272
-NBuffers=atoi(optarg);
+SetConfigOption("shared_buffers",optarg,PGC_POSTMASTER, true);
273
274
default:
275
usage();