pgsql: common/jsonapi: support libpq as a client

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: common/jsonapi: support libpq as a client
Date: 2024-09-11 07:05:14
Message-ID: E1soHPe-000YBc-KY@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

common/jsonapi: support libpq as a client

Based on a patch by Michael Paquier.

For libpq, use PQExpBuffer instead of StringInfo. This requires us to
track allocation failures so that we can return JSON_OUT_OF_MEMORY as
needed rather than exit()ing.

Author: Jacob Champion <jacob(dot)champion(at)enterprisedb(dot)com>
Co-authored-by: Michael Paquier <michael(at)paquier(dot)xyz>
Co-authored-by: Daniel Gustafsson <daniel(at)yesql(dot)se>
Reviewed-by: Peter Eisentraut <peter(at)eisentraut(dot)org>
Discussion: https://www.postgresql.org/message-id/flat/d1b467a78e0e36ed85a09adf979d04cf124a9d4b(dot)camel(at)vmware(dot)com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/0785d1b8b2fa27074eeb18a3ac1f2a0e76cb8339

Modified Files
--------------
src/common/Makefile | 23 +-
src/common/jsonapi.c | 473 +++++++++++++++------
src/common/meson.build | 35 +-
src/include/common/jsonapi.h | 18 +-
src/test/modules/test_json_parser/Makefile | 7 +-
src/test/modules/test_json_parser/meson.build | 12 +
.../t/001_test_json_parser_incremental.pl | 25 +-
src/test/modules/test_json_parser/t/002_inline.pl | 177 ++++----
.../test_json_parser/t/003_test_semantic.pl | 31 +-
9 files changed, 558 insertions(+), 243 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2024-09-11 07:26:54 pgsql: Update .gitignore
Previous Message Amit Kapila 2024-09-11 04:02:40 pgsql: Improve assertion in FindReplTupleInLocalRel().