[COMMITTERS] pgsql: Process variadic arguments consistently in json functions - Mailing list pgsql-committers

From Andrew Dunstan
Subject [COMMITTERS] pgsql: Process variadic arguments consistently in json functions
Date
Msg-id E1e7KjB-0001oY-9U@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Process variadic arguments consistently in json functions

json_build_object and json_build_array and the jsonb equivalents did not
correctly process explicit VARIADIC arguments. They are modified to use
the new extract_variadic_args() utility function which abstracts away
the details of the call method.

Michael Paquier, reviewed by Tom Lane and Dmitry Dolgov.

Backpatch to 9.5 for the jsonb fixes and 9.4 for the json fixes, as
that's where they originated.

Branch
------
REL9_4_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/9cb28e98b818288b70f165d08ddd295b799466c2

Modified Files
--------------
src/backend/utils/adt/json.c       |  84 +++++++++--------------------
src/test/regress/expected/json.out | 107 +++++++++++++++++++++++++++++++++++++
src/test/regress/sql/json.sql      |  21 ++++++++
3 files changed, 152 insertions(+), 60 deletions(-)


--
Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-committers

pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: [COMMITTERS] pgsql: In the planner,delete joinaliasvars lists after we're done with
Next
From: Andrew Dunstan
Date:
Subject: [COMMITTERS] pgsql: Process variadic arguments consistently in json functions