File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.109 2001/06/12 22:54:05 tgl Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.110 2001/06/25 23:03:03 tgl Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -260,7 +260,7 @@ BootstrapMain(int argc, char *argv[])
260
260
* parsing */
261
261
break ;
262
262
case 'F' :
263
- enableFsync = false;
263
+ SetConfigOption ( "fsync" , " false" , PGC_POSTMASTER , true) ;
264
264
break ;
265
265
case 'x' :
266
266
xlogop = atoi (optarg );
@@ -269,7 +269,7 @@ BootstrapMain(int argc, char *argv[])
269
269
/* indicates fork from postmaster */
270
270
break ;
271
271
case 'B' :
272
- NBuffers = atoi ( optarg );
272
+ SetConfigOption ( "shared_buffers" , optarg , PGC_POSTMASTER , true );
273
273
break ;
274
274
default :
275
275
usage ();
You can’t perform that action at this time.
0 commit comments