1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-16 06:01:02 +03:00

Add missing serial commas

Also update one place where the wal_level "logical" was not added to an
error message.
This commit is contained in:
Peter Eisentraut
2014-07-15 08:25:27 -04:00
parent a16bac36ec
commit d38228fe40
6 changed files with 12 additions and 12 deletions

View File

@ -1347,7 +1347,7 @@ datum_to_json(Datum val, bool is_null, StringInfo result,
tcategory == JSONTYPE_CAST))
ereport(ERROR,
(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
errmsg("key value must be scalar, not array, composite or json")));
errmsg("key value must be scalar, not array, composite, or json")));
switch (tcategory)
{