10
10
* Written by Peter Eisentraut <peter_e@gmx.net>.
11
11
*
12
12
* IDENTIFICATION
13
- * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.293 2005/10/15 02:49:36 momjian Exp $
13
+ * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.294 2005/10/16 18:26:00 momjian Exp $
14
14
*
15
15
*--------------------------------------------------------------------
16
16
*/
@@ -502,7 +502,7 @@ static struct config_bool ConfigureNamesBool[] =
502
502
{"fsync" ,PGC_SIGHUP ,WAL_SETTINGS ,
503
503
gettext_noop ("Forces synchronization of updates to disk." ),
504
504
gettext_noop ("The server will use the fsync() system call in several places to make "
505
- "sure that updates are physically written to disk. This insures "
505
+ "sure that updates are physically written to disk. This insures "
506
506
"that a database cluster will recover to a consistent state after "
507
507
"an operating system or hardware crash." )
508
508
},
@@ -526,8 +526,8 @@ static struct config_bool ConfigureNamesBool[] =
526
526
{"full_page_writes" ,PGC_SIGHUP ,WAL_SETTINGS ,
527
527
gettext_noop ("Writes full pages to WAL when first modified after a checkpoint." ),
528
528
gettext_noop ("A page write in process during an operating system crash might be "
529
- "only partially written to disk. During recovery, the row changes"
530
- "stored in WAL are not enough to recover. This option writes "
529
+ "only partially written to disk. During recovery, the row changes "
530
+ "stored in WAL are not enough to recover. This option writes "
531
531
"pages when first modified after a checkpoint to WAL so full recovery "
532
532
"is possible." )
533
533
},