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
6b797c85
Commit
6b797c85
authored
Jun 30, 2008
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix recovery.conf boolean variables to take the same range of string
values as postgresql.conf.
parent
5ce521f6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
18 deletions
+13
-18
src/backend/access/transam/xlog.c
src/backend/access/transam/xlog.c
+9
-15
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+2
-2
src/include/utils/guc.h
src/include/utils/guc.h
+2
-1
No files found.
src/backend/access/transam/xlog.c
View file @
6b797c85
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.31
4 2008/06/12 09:12:30 heikki
Exp $
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.31
5 2008/06/30 22:10:43 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -4523,13 +4523,10 @@ readRecoveryCommandFile(void)
/*
* does nothing if a recovery_target is not also set
*/
if
(
strcmp
(
tok2
,
"true"
)
==
0
)
recoveryTargetInclusive
=
true
;
else
{
recoveryTargetInclusive
=
false
;
tok2
=
"false"
;
}
if
(
!
parse_bool
(
tok2
,
&
recoveryTargetInclusive
))
ereport
(
ERROR
,
(
errcode
(
ERRCODE_INVALID_PARAMETER_VALUE
),
errmsg
(
"parameter
\"
recovery_target_inclusive
\"
requires a Boolean value"
)));
ereport
(
LOG
,
(
errmsg
(
"recovery_target_inclusive = %s"
,
tok2
)));
}
...
...
@@ -4538,13 +4535,10 @@ readRecoveryCommandFile(void)
/*
* does nothing if a recovery_target is not also set
*/
if
(
strcmp
(
tok2
,
"true"
)
==
0
)
recoveryLogRestartpoints
=
true
;
else
{
recoveryLogRestartpoints
=
false
;
tok2
=
"false"
;
}
if
(
!
parse_bool
(
tok2
,
&
recoveryLogRestartpoints
))
ereport
(
ERROR
,
(
errcode
(
ERRCODE_INVALID_PARAMETER_VALUE
),
errmsg
(
"parameter
\"
log_restartpoints
\"
requires a Boolean value"
)));
ereport
(
LOG
,
(
errmsg
(
"log_restartpoints = %s"
,
tok2
)));
}
...
...
src/backend/utils/misc/guc.c
View file @
6b797c85
...
...
@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.45
7 2008/06/30 10:58:47 heikki
Exp $
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.45
8 2008/06/30 22:10:43 momjian
Exp $
*
*--------------------------------------------------------------------
*/
...
...
@@ -3991,7 +3991,7 @@ ReportGUCOption(struct config_generic * record)
* If the string parses okay, return true, else false.
* If okay and result is not NULL, return the value in *result.
*/
static
bool
bool
parse_bool
(
const
char
*
value
,
bool
*
result
)
{
size_t
len
=
strlen
(
value
);
...
...
src/include/utils/guc.h
View file @
6b797c85
...
...
@@ -7,7 +7,7 @@
* Copyright (c) 2000-2008, PostgreSQL Global Development Group
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
* $PostgreSQL: pgsql/src/include/utils/guc.h,v 1.9
6 2008/05/28 09:04:06 mha
Exp $
* $PostgreSQL: pgsql/src/include/utils/guc.h,v 1.9
7 2008/06/30 22:10:43 momjian
Exp $
*--------------------------------------------------------------------
*/
#ifndef GUC_H
...
...
@@ -223,6 +223,7 @@ extern int NewGUCNestLevel(void);
extern
void
AtEOXact_GUC
(
bool
isCommit
,
int
nestLevel
);
extern
void
BeginReportingGUCOptions
(
void
);
extern
void
ParseLongOption
(
const
char
*
string
,
char
**
name
,
char
**
value
);
extern
bool
parse_bool
(
const
char
*
value
,
bool
*
result
);
extern
bool
set_config_option
(
const
char
*
name
,
const
char
*
value
,
GucContext
context
,
GucSource
source
,
GucAction
action
,
bool
changeVal
);
...
...
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