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

From Abelard Hoffman
Subject Re: jsonb_set() strictness considered harmful to data
Date
Msg-id CACEJHMjkOOSKw=4sG0EexjnG8RaBsO0qPfPF4FAujpGrVRgCgA@mail.gmail.com
Whole thread Raw
In response to jsonb_set() strictness considered harmful to data  (Ariadne Conill <ariadne@dereferenced.org>)
List pgsql-general

I would argue that only if the target parameter (the actual json value) is NULL should the result be NULL. The function is documented as returning the target, with modifications to a small part of its structure as specified by the other parameters. It is strange for the result to suddenly collapse down to NULL just because another parameter is NULL. Perhaps if the path is NULL, that can mean "don't update". And if create_missing is NULL, that should mean the same as not specifying it. I think. At a minimum, if we don't change it, the documentation needs to get one of those warning boxes alerting people that the functions will destroy their input entirely rather than slightly modifying it if any of the other parameters are NULL.

My only doubt about any of this is that by the same argument, functions like replace() should not return NULL if the 2nd or 3rd parameter is NULL. I'm guessing replace() is specified by SQL and also unchanged in many versions so therefore not eligible for re-thinking but it still gives me just a bit of pause.

That's the essential difference though, no? With jsonb, conceptually, we have a nested row. That's where we get confused. We think that the operation should affect the element within the nested structure, not the structure itself.

It would be equivalent to replace() nulling out the entire row on null.

I understand the logic behind it, but I also definitely see why it's not intuitive.

AH

pgsql-general by date:

Previous
From: rob stone
Date:
Subject: Re: jsonb_set() strictness considered harmful to data
Next
From: Pawan Sharma
Date:
Subject: CPU SPIKE