diff options
author | Peter Eisentraut | 2015-10-29 00:23:53 +0000 |
---|---|---|
committer | Peter Eisentraut | 2015-10-29 00:38:36 +0000 |
commit | a8d585c0915939a42acdb529d8e0eb832935d45f (patch) | |
tree | 4181e9e00ec2cdd0ddd4f56a2c12e48e2f58b2f2 /src/backend/parser | |
parent | d45565162494c75eae91481eda17dc0c8ecab5db (diff) |
Message style improvements
Message style, plurals, quoting, spelling, consistency with similar
messages
Diffstat (limited to 'src/backend/parser')
-rw-r--r-- | src/backend/parser/parse_clause.c | 4 |
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)))); |