Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
608ddb75
Commit
608ddb75
authored
Feb 07, 2001
by
Vadim B. Mikheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FixBTree flag still exists and may be used to turn
runtime recovery OFF.
parent
c19dadbf
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+5
-1
No files found.
src/backend/utils/misc/guc.c
View file @
608ddb75
...
@@ -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.2
8 2001/01/24 18:37:31 momjian
Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.2
9 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
}
};
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment