summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_expr.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2025-11-04 11:59:17 +0100
committerPeter Eisentraut <peter@eisentraut.org>2025-11-04 12:25:04 +0100
commitc09a06918dff9a1651ed12a24eb03712331b234b (patch)
treeeb6018e570097eb1ca456f9f58a49534a42f57ac /src/backend/parser/parse_expr.c
parent861af9261035cec7408040d646cba92959ba6f13 (diff)
Error message stylistic correction
Fixup for commit ef5e60a9d35: The inconsistent use of articles was a bit awkward.
Diffstat (limited to 'src/backend/parser/parse_expr.c')
-rw-r--r--src/backend/parser/parse_expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/parser/parse_expr.c b/src/backend/parser/parse_expr.c
index 12119f147fc..32d6ae918ca 100644
--- a/src/backend/parser/parse_expr.c
+++ b/src/backend/parser/parse_expr.c
@@ -4772,7 +4772,7 @@ transformJsonBehavior(ParseState *pstate, JsonExpr *jsexpr,
targetcoll != exprcoll)
ereport(ERROR,
errcode(ERRCODE_COLLATION_MISMATCH),
- errmsg("the collation of DEFAULT expression conflicts with RETURNING clause"),
+ errmsg("collation of DEFAULT expression conflicts with RETURNING clause"),
errdetail("\"%s\" versus \"%s\"",
get_collation_name(exprcoll),
get_collation_name(targetcoll)),