Re: jsonb_set() strictness considered harmful to data - Mailing list pgsql-general

From raf
Subject Re: jsonb_set() strictness considered harmful to data
Date
Msg-id 20191021221605.qrdthyxzmjxwm3r3@raf.org
Whole thread Raw
In response to Re: jsonb_set() strictness considered harmful to data  (Steven Pousty <steve.pousty@gmail.com>)
Responses Re: jsonb_set() strictness considered harmful to data
List pgsql-general
Steven Pousty wrote:

> On Sun, Oct 20, 2019 at 4:31 PM raf <raf@raf.org> wrote:
> 
> > Steven Pousty wrote:
> >
> > > I would think though that raising an exception is better than a
> > > default behavior which deletes data.
> >
> > I can't help but feel the need to make the point that
> > the function is not deleting anything. It is just
> > returning null. The deletion of data is being performed
> > by an update statement that uses the function's return
> > value to set a column value.
> >
> > I don't agree that raising an exception in the function
> > is a good idea (perhaps unless it's valid to assume
> > that this function will only ever be used in such a
> > context). Making the column not null (as already
> > suggested) and having the update statement itself raise
> > the exception seems more appropriate if an exception is
> > desirable. But that presumes an accurate understanding
> > of the behaviour of jsonb_set.
> >
> > Really, I think the best fix would be in the
> > documentation so that everyone who finds the function
> > in the documentation understands its behaviour
> > immediately.
> >
> Hey Raf
> 
> In a perfect world I would agree with you. But often users do not read ALL
> the documentation before they use the function in their code OR they are
> not sure that the condition applies to them (until it does).

I'm well aware of that, hence the statement that this
information needs to appear at the place in the
documentation where the user is first going to
encounter the function (i.e. in the table where its
examples are). Even putting it in a note box further
down the page might not be enough (but hopefully it
will be).

cheers,
raf




pgsql-general by date:

Previous
From: Adrian Klaver
Date:
Subject: Re: Calling jsonb_array_elements 4 times in the same query
Next
From: Julie Nishimura
Date:
Subject: existing dblinks