FixBTree flag still exists and may be used to turn

runtime recovery OFF.
This commit is contained in:
Vadim B. Mikheev 2001-02-07 23:36:22 +00:00
parent c19dadbf08
commit 608ddb7503

View File

@ -4,7 +4,7 @@
* Support for grand unified configuration scheme, including SET * Support for grand unified configuration scheme, including SET
* command, configuration file, and command line options. * command, configuration file, and command line options.
* *
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.28 2001/01/24 18:37:31 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.29 2001/02/07 23:36:22 vadim Exp $
* *
* Copyright 2000 by PostgreSQL Global Development Group * Copyright 2000 by PostgreSQL Global Development Group
* Written by Peter Eisentraut <peter_e@gmx.net>. * Written by Peter Eisentraut <peter_e@gmx.net>.
@ -42,6 +42,8 @@ extern int XLOGfiles;
extern int XLOG_DEBUG; extern int XLOG_DEBUG;
extern int CommitDelay; extern int CommitDelay;
extern bool FixBTree;
#ifdef ENABLE_SYSLOG #ifdef ENABLE_SYSLOG
extern char *Syslog_facility; extern char *Syslog_facility;
extern char *Syslog_ident; extern char *Syslog_ident;
@ -218,6 +220,8 @@ ConfigureNamesBool[] =
{"sql_inheritance", PGC_USERSET, &SQL_inheritance, true}, {"sql_inheritance", PGC_USERSET, &SQL_inheritance, true},
{"fixbtree", PGC_POSTMASTER, &FixBTree, true},
{NULL, 0, NULL, false} {NULL, 0, NULL, false}
}; };