mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Add missing serial commas
This commit is contained in:
@ -4975,7 +4975,7 @@ parse_jsonb_index_flags(Jsonb *jb)
|
||||
ereport(ERROR,
|
||||
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
||||
errmsg("flag array element is not a string"),
|
||||
errhint("Possible values are: \"string\", \"numeric\", \"boolean\", \"key\" and \"all\"")));
|
||||
errhint("Possible values are: \"string\", \"numeric\", \"boolean\", \"key\", and \"all\"")));
|
||||
|
||||
if (v.val.string.len == 3 &&
|
||||
pg_strncasecmp(v.val.string.val, "all", 3) == 0)
|
||||
@ -4997,7 +4997,7 @@ parse_jsonb_index_flags(Jsonb *jb)
|
||||
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
|
||||
errmsg("wrong flag in flag array: \"%s\"",
|
||||
pnstrdup(v.val.string.val, v.val.string.len)),
|
||||
errhint("Possible values are: \"string\", \"numeric\", \"boolean\", \"key\" and \"all\"")));
|
||||
errhint("Possible values are: \"string\", \"numeric\", \"boolean\", \"key\", and \"all\"")));
|
||||
}
|
||||
|
||||
/* expect end of array now */
|
||||
|
Reference in New Issue
Block a user