1 defmodule Pleroma.Repo.Migrations.CreateSafeJsonbSet do
6 create or replace function safe_jsonb_set(target jsonb, path text[], new_value jsonb, create_missing boolean default true) returns jsonb as $$
10 result := jsonb_set(target, path, coalesce(new_value, 'null'::jsonb), create_missing);
11 if result is NULL then
12 raise 'jsonb_set tried to wipe the object, please report this incindent to Pleroma bug tracker. https://git.pleroma.social/pleroma/pleroma/issues/new';