pgsql: Convert json_in and jsonb_in to report errors softly.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Convert json_in and jsonb_in to report errors softly.
Дата
Msg-id E1p4PBf-003329-Ec@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Convert json_in and jsonb_in to report errors softly.

This requires a bit of further infrastructure-extension to allow
trapping errors reported by numeric_in and pg_unicode_to_server,
but otherwise it's pretty straightforward.

In the case of jsonb_in, we are only capturing errors reported
during the initial "parse" phase.  The value-construction phase
(JsonbValueToJsonb) can also throw errors if assorted implementation
limits are exceeded.  We should improve that, but it seems like a
separable project.

Andrew Dunstan and Tom Lane

Discussion: https://postgr.es/m/3bac9841-fe07-713d-fa42-606c225567d6@dunslane.net

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/c60c9badba9b4db3155eef081ae0b923f983168c

Modified Files
--------------
src/backend/utils/adt/json.c                  |  7 ++--
src/backend/utils/adt/jsonb.c                 | 51 ++++++++++++++++--------
src/backend/utils/adt/jsonfuncs.c             | 35 ++++++++++++----
src/backend/utils/fmgr/fmgr.c                 | 45 +++++++++++++++++++++
src/backend/utils/mb/mbutils.c                | 57 +++++++++++++++++++++++++++
src/common/jsonapi.c                          | 17 ++++----
src/include/common/jsonapi.h                  |  1 +
src/include/fmgr.h                            |  4 ++
src/include/mb/pg_wchar.h                     |  1 +
src/include/utils/jsonfuncs.h                 | 13 ++++--
src/test/regress/expected/json.out            | 19 +++++++++
src/test/regress/expected/json_encoding.out   |  7 ++++
src/test/regress/expected/json_encoding_1.out | 31 ++++++++++++---
src/test/regress/expected/jsonb.out           | 25 ++++++++++++
src/test/regress/sql/json.sql                 |  5 +++
src/test/regress/sql/json_encoding.sql        |  4 ++
src/test/regress/sql/jsonb.sql                |  6 +++
17 files changed, 282 insertions(+), 46 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Standardize error reports in unimplemented I/O functions.
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Convert domain_in to report errors softly.