aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/jsonpath_exec.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2022-04-09 16:15:01 +0200
committerPeter Eisentraut <peter@eisentraut.org>2022-04-09 16:15:01 +0200
commit38abc39c81f9d51cff0b4dccebd5bf73327f19e1 (patch)
treebeb67e0aa853299233df4302ece281a6986d5144 /src/backend/utils/adt/jsonpath_exec.c
parentfc5b83bb60a862a4a27372b255405df598455ff1 (diff)
downloadpostgresql-38abc39c81f9d51cff0b4dccebd5bf73327f19e1.tar.gz
postgresql-38abc39c81f9d51cff0b4dccebd5bf73327f19e1.zip
Add missing serial commas
Diffstat (limited to 'src/backend/utils/adt/jsonpath_exec.c')
-rw-r--r--src/backend/utils/adt/jsonpath_exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/adt/jsonpath_exec.c b/src/backend/utils/adt/jsonpath_exec.c
index ee9b5089b92..2544c6b1551 100644
--- a/src/backend/utils/adt/jsonpath_exec.c
+++ b/src/backend/utils/adt/jsonpath_exec.c
@@ -3134,7 +3134,7 @@ JsonItemFromDatum(Datum val, Oid typid, int32 typmod, JsonbValue *res)
default:
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
- errmsg("only bool, numeric and text types could be "
+ errmsg("only bool, numeric, and text types could be "
"casted to supported jsonpath types.")));
}
}