Commit 3a1b51de authored by Alvaro Herrera's avatar Alvaro Herrera

Remove duplicate translatable phrase

parent db2d9c60
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.431 2010/07/29 22:27:27 sriggs Exp $ * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.432 2010/08/26 19:23:41 alvherre Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -5231,7 +5231,7 @@ readRecoveryCommandFile(void) ...@@ -5231,7 +5231,7 @@ readRecoveryCommandFile(void)
if (!parse_bool(tok2, &recoveryTargetInclusive)) if (!parse_bool(tok2, &recoveryTargetInclusive))
ereport(ERROR, ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE), (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("parameter \"recovery_target_inclusive\" requires a Boolean value"))); errmsg("parameter \"%s\" requires a Boolean value", "recovery_target_inclusive")));
ereport(DEBUG2, ereport(DEBUG2,
(errmsg("recovery_target_inclusive = %s", tok2))); (errmsg("recovery_target_inclusive = %s", tok2)));
} }
...@@ -5240,7 +5240,7 @@ readRecoveryCommandFile(void) ...@@ -5240,7 +5240,7 @@ readRecoveryCommandFile(void)
if (!parse_bool(tok2, &StandbyMode)) if (!parse_bool(tok2, &StandbyMode))
ereport(ERROR, ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE), (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("parameter \"standby_mode\" requires a Boolean value"))); errmsg("parameter \"%s\" requires a Boolean value", "standby_mode")));
ereport(DEBUG2, ereport(DEBUG2,
(errmsg("standby_mode = '%s'", tok2))); (errmsg("standby_mode = '%s'", tok2)));
} }
......
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