aboutsummaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_clause.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2015-10-28 20:23:53 -0400
committerPeter Eisentraut <peter_e@gmx.net>2015-10-28 20:23:53 -0400
commit0bc3071796b33288cd912db196b90c76fa394c21 (patch)
tree259a31ba4ca03c0cde90340dae9457138785c165 /src/backend/parser/parse_clause.c
parentd17d5125f68da155e3a8e555c0699b7679b06e3b (diff)
downloadpostgresql-0bc3071796b33288cd912db196b90c76fa394c21.tar.gz
postgresql-0bc3071796b33288cd912db196b90c76fa394c21.zip
Message style improvements
Message style, plurals, quoting, spelling, consistency with similar messages
Diffstat (limited to 'src/backend/parser/parse_clause.c')
-rw-r--r--src/backend/parser/parse_clause.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/parser/parse_clause.c b/src/backend/parser/parse_clause.c
index 59808568a52..9c2846dc337 100644
--- a/src/backend/parser/parse_clause.c
+++ b/src/backend/parser/parse_clause.c
@@ -2867,7 +2867,7 @@ transformOnConflictArbiter(ParseState *pstate,
if (IsCatalogRelation(pstate->p_target_relation))
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
- errmsg("ON CONFLICT not supported with system catalog tables"),
+ errmsg("ON CONFLICT is not supported with system catalog tables"),
parser_errposition(pstate,
exprLocation((Node *) onConflictClause))));
@@ -2875,7 +2875,7 @@ transformOnConflictArbiter(ParseState *pstate,
if (RelationIsUsedAsCatalogTable(pstate->p_target_relation))
ereport(ERROR,
(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
- errmsg("ON CONFLICT not supported on table \"%s\" used as a catalog table",
+ errmsg("ON CONFLICT is not supported on table \"%s\" used as a catalog table",
RelationGetRelationName(pstate->p_target_relation)),
parser_errposition(pstate,
exprLocation((Node *) onConflictClause))));