You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create table a (
b jsonb not null default 'null'
);
We expose this as "non-nullable", but it's possible to store a JSON 'null' (rather than an SQL null) in the column. PostGraphile doesn't differentiate these, and trusts you'll do the right thing. Otherwise all JSON/JSONB columns would have to be nullable, and that'd not be a pleasant experience.
The text was updated successfully, but these errors were encountered:
We expose this as "non-nullable", but it's possible to store a JSON 'null' (rather than an SQL null) in the column. PostGraphile doesn't differentiate these, and trusts you'll do the right thing. Otherwise all JSON/JSONB columns would have to be nullable, and that'd not be a pleasant experience.
The text was updated successfully, but these errors were encountered: