pgsql: Rename jsonb_replace to jsonb_set and allow it to add new values - Mailing list pgsql-committers

From Andrew Dunstan
Subject pgsql: Rename jsonb_replace to jsonb_set and allow it to add new values
Date
Msg-id E1YzDpW-0005io-D5@gemulon.postgresql.org
Whole thread Raw
Responses Re: pgsql: Rename jsonb_replace to jsonb_set and allow it to add new values  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-committers
Rename jsonb_replace to jsonb_set and allow it to add new values

The function is given a fourth parameter, which defaults to true. When
this parameter is true, if the last element of the path is missing
in the original json, jsonb_set creates it in the result and assigns it
the new value. If it is false then the function does nothing unless all
elements of the path are present, including the last.

Based on some original code from Dmitry Dolgov, heavily modified by me.

Catalog version bumped.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/37def4224505f3a23a5eef000f0d05daea59c5b5

Modified Files
--------------
doc/src/sgml/func.sgml                |   51 +++++++++--
src/backend/catalog/system_views.sql  |    8 ++
src/backend/utils/adt/jsonfuncs.c     |  151 +++++++++++++++++++++++----------
src/include/catalog/catversion.h      |    2 +-
src/include/catalog/pg_proc.h         |    4 +-
src/include/utils/jsonb.h             |    2 +-
src/test/regress/expected/jsonb.out   |  124 +++++++++++++++++++++------
src/test/regress/expected/jsonb_1.out |  124 +++++++++++++++++++++------
src/test/regress/sql/jsonb.sql        |   46 +++++++---
9 files changed, 385 insertions(+), 127 deletions(-)


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: Make Python tests more portable
Next
From: Tom Lane
Date:
Subject: Re: pgsql: Rename jsonb_replace to jsonb_set and allow it to add new values