Commit 608ddb75 authored by Vadim B. Mikheev's avatar Vadim B. Mikheev

FixBTree flag still exists and may be used to turn

runtime recovery OFF.
parent c19dadbf
...@@ -4,7 +4,7 @@ ...@@ -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; ...@@ -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[] = ...@@ -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}
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment